Font size
WorksheetsJava Programming RBVRRIT
Total questions: 10
Worksheet time: 5mins
Which of the following is not a Java features?
Dynamic
Architecture Neutral
Use of pointers
Object-oriented
He was the developer of Java Language.
James Gowsling
Jackie Gosling
James Gosling
Jackie Gosling
According to you, what is Java? Choose two applicable answers.
A mediator between you and your computer
A programming language
An island
A video game console
Which of this command is the correct way of printing in Java?
System.Out.print
System.out.Print
System.out.print
system.out.print
Which of this command has errors? Select multiple
System.out.print("Hello World")
System.out.print(Hello World);
System.out.Print("Hello World);
System.out.print("Hello World");
Which of the followings is Java code that starts from the main() method as a mandatory part of every program
public void static main(String args [])
public void main static (args[] String)
public static void main (String args[])
public static void main [String [] Args]
It is an optional statement used to describe what a program or a line of program is doing.
tag
command
code
comment
A data type which is typical in form and make use of digits and a decimal point
integer
float
char
boolean
What data type is classified as a sequenced of characters with double quotes.
Char
String
boolean
Float
True or False : Java is case sensitive, which means identifier Hello and hello would have different meaning in Java
True
False
