Answer:
Index page.
Explanation:
The index page is the URL or local file that automatically loads when a web browser starts and when the browser's 'home' button is pressed. The term is also used to refer to the front page, web server directory index, or main web page of a website of a group, company, organization, or individual.
Regardless of which version of Windows you have, you can also open the browser from the start menu. Select the start button and type in Chrome. If the Chrome browser is on your computer, it will be displayed in the menu, where you can now see the icon and select it to open.
<3
The answer is true.
Explanation:
The scanner class's methods are the methods in java.util, which allows the user to read values of various types. If the nextLine is issued after a numeric read and the numeric value is at the end of the line, nextLine returns the empty string.
The problem occurs when you click the enter key which is a new line \n character. nextInt() has only the integer but skips the new line \n.
To solve this problem, you have to add the input.nextLine() after reading the int it will consume the \n.
Hence, make input.nextLine(); call after input.nextint(); which reads till end of life.