Java Fundamentals

Java Fundamentals

12th Grade

9 Qs

quiz-placeholder

Similar activities

Arduino Programming

Arduino Programming

7th - 12th Grade

12 Qs

Persamaan Garis Lurus

Persamaan Garis Lurus

7th Grade - University

10 Qs

Trinomio cuadrado perfecto

Trinomio cuadrado perfecto

12th Grade

10 Qs

Bab 3.1.2 ASK T2

Bab 3.1.2 ASK T2

1st - 12th Grade

10 Qs

Quis Transformasi Fungsi

Quis Transformasi Fungsi

12th Grade

10 Qs

Câu hỏi ôn tập Python lần 1

Câu hỏi ôn tập Python lần 1

KG - 12th Grade

14 Qs

Tipuri de date și variabile în C++

Tipuri de date și variabile în C++

9th Grade - University

6 Qs

Nirmala School quiz

Nirmala School quiz

9th - 12th Grade

12 Qs

Java Fundamentals

Java Fundamentals

Assessment

Quiz

Education

12th Grade

Medium

Created by

prathibha priyadarshini

Used 21+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Command Line Arguments are passed to ----

Variable

String

String[ ] args

class

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

int x=4;

int y=6;

int res=(x>y)?x:y;

find the value of res?

4

6

1

0

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

int a;

byte b=45;   

a=b;

the type conversion is...........

manual

explicit

error

implicit

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

An integer array of 10 cells is declared as.................

int a[ ]

int[ ]=a

a=new int[10]

int[5][5] a =new int[10]

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

The size of float data type in bits is______

4

32

2

16

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Identify the unary operator among the following.............

a++;

a=b+c;

a=b>c;

a=(b==c)

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

x=10;

y=15;

d=(--x)+(--y);

25

23

24

26

8.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

boolean a=false;

boolean b=true;

boolean c=(a&&b);

find out the value of c ............

True

Error

False

1

9.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

int x=7,y=9;

int z=x&y;

find the value of z ........

4

0

1

9