Looks like no one added any tags here yet for you.
what does IDE stand for
integrated development enviornment
which of the following is called a console application
an interactive program that only uses text input and output, but no GUI
programs errors can be caused by
bad syntax
code that compiles fine but is interpreted differently from what the programmer intended
code that compiles fine and behaves just as the programmer intended
what is a class constructors
a special procedure for creating objects of a class
for which of the following is OOP especially helpful
coordinating team projects
code to memorize
import java.util.Scanner;
public class Greeting {
public static void main(String [] args) {
Scanner kboard = new Scanner (System.in);
System.out.print(“Enter your first name: “);
String firstName= kboard.nextLine();
System.out.print(“Enter your last name: “);
String lastName= kboard.nextLine();
System.out.println(“Hello, “ + firstName + “ “ + lastName);
System.out.println(“Welcome to java!”);
}
}
what is “scanner”
a library class in the java.util package that helps to read user input from the keyboard