wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Java Programming RBVRRIT

Total questions: 10

Worksheet time: 5mins

Name
Class
Date
1.

Which of the following is not a Java features?

a)

Dynamic

b)

Architecture Neutral

c)

Use of pointers

d)

Object-oriented

2.

He was the developer of Java Language.

a)

James Gowsling

b)

Jackie Gosling

c)

James Gosling

d)

Jackie Gosling

3.

According to you, what is Java? Choose two applicable answers.

a)

A mediator between you and your computer

b)

A programming language

c)

An island

d)

A video game console

4.

Which of this command is the correct way of printing in Java?

a)

System.Out.print

b)

System.out.Print

c)

System.out.print

d)

system.out.print

5.

Which of this command has errors? Select multiple

a)

System.out.print("Hello World")

b)

System.out.print(Hello World);

c)

System.out.Print("Hello World);

d)

System.out.print("Hello World");

6.

Which of the followings is Java code that starts from the main() method as a mandatory part of every program

a)

public void static main(String args [])

b)

public void main static (args[] String)

c)

public static void main (String args[])

d)

public static void main [String [] Args]

7.

It is an optional statement used to describe what a program or a line of program is doing.

a)

tag

b)

command

c)

code

d)

comment

8.

A data type which is typical in form and make use of digits and a decimal point

a)

integer

b)

float

c)

char

d)

boolean

9.

What data type is classified as a sequenced of characters with double quotes.

a)

Char

b)

String

c)

boolean

d)

Float

10.

True or False : Java is case sensitive, which means identifier Hello and hello would have different meaning in Java

a)

True

b)

False