NEW
Font size
WorksheetsReview
Total questions: 15
Worksheet time: 8mins
The Java programming language initiative started in what year?
1992
1991
1993
1994
Object-oriented programming was conceived to model real-world objects.
True
False
This version of Java is meant to have a large number of users.
Java Standard Edition
Java Micro Edition
Java Enterprise Edition
Java Run-time Environment
The first name of Java is Green Team
True
False
Who led the Green Team in initiating the Java Programming Language?
John Gosling
Ryan Gosling
Jack Gosling
James Gosling
Which of the following symbol is used to terminate a line of instruction?
{
;
}
( )
Which of the following syntax indicates single-line comment?
/* This program will print two words */
Public class Basic Calculator {
System.out.println("Hello World")
//This program will add two numbers
In this image, what is the use of line number 4?
class declaration
Start of method definition
calling a method
object instantiation
A java program can consist of one or more classes.
True
False
Which of the following is an example of access modifier?
public
void
new
static
IDE stands for Integrated Department Environment
True
False
A software that executes Java codes.
Java Enterprise Edition
Java Virtual Machine
Architecture Neutral
Java Standard Edition
In what line number caused this program to malfunction?
1
2
3
4
In this image, what is the use of line number 2?
calling a method
start of method definition
object instantiation
class declaration
What is the name of the class in this program?
public
PrintWelcome
Welcome
void
