Throughout This Course You Will Be Learning About Object Oriented Pro Download and install Java JDK and NetBeans IDE using the default installation options. Run the IDE and take a screenshot. Create a console program that prompts the user to enter these three pieces of information: the name of their favorite restaurant, the address of the restaurant, and their favorite meal at the restaurant. Store each piece of information in a separate variable. Display this information on the screen, showing each input on a separate line. Run your program and take a screenshot. Create a Word document with a title page that includes the Course Number, Course Section, Course Name, Project Name (Unit 1 IP), Student Name, and Date. Add the screenshots showing the IDE running and the program executing. Compile your project folder and Word document into a zip file and upload it to the portal.
Paper For Above instruction Object-oriented programming (OOP) is a foundational paradigm in modern software development, emphasizing the organization of code into objects that encapsulate data and behaviors. This approach enhances code reusability, scalability, and maintainability. The initial step in learning OOP, particularly in Java, involves installing an integrated development environment (IDE) such as NetBeans and ensuring Java Development Kit (JDK) is correctly configured. These tools provide a user-friendly platform for coding, testing, and debugging Java applications. The first practical assignment typically involves creating a simple console application that interacts with the user. This program prompts the user to enter three specific pieces of information: the name of their favorite restaurant, the restaurant’s address, and their favorite meal at that restaurant. Storing these inputs in individual variables illustrates basic data handling in Java. Displaying this information on the console confirms that the program correctly captures and processes user input. Developing such a program helps learners understand key concepts such as variable declaration, user input handling, and output formatting in Java. Using the Scanner class for input reading and System.out.println for output are fundamental skills. These exercises serve as building blocks for more complex object-oriented designs, where data and methods will be encapsulated within classes and objects. Moreover, documenting the process through screenshots of the IDE and program execution demonstrates proficiency in developing and testing Java applications. Creating a structured Word document with all relevant information, including a title page and visual evidence, emphasizes good project documentation practices—essential for academic and professional environments. Finally, packaging the project files and