CS402 T02b

CS402 T02b

Professional Development

10 Qs

quiz-placeholder

Similar activities

Java OOP

Java OOP

Professional Development

10 Qs

C# - I

C# - I

Professional Development

10 Qs

Kotlin Quiz 4

Kotlin Quiz 4

Professional Development

12 Qs

C Code Master lvl 2 A

C Code Master lvl 2 A

Professional Development

10 Qs

Java Lesson 2

Java Lesson 2

KG - Professional Development

7 Qs

Java Programming Quiz #1

Java Programming Quiz #1

Professional Development

10 Qs

Java SE: Programming I

Java SE: Programming I

Professional Development

10 Qs

Computación básica - Conceptos básicos

Computación básica - Conceptos básicos

Professional Development

15 Qs

CS402 T02b

CS402 T02b

Assessment

Quiz

Computers

Professional Development

Hard

Created by

Mike Wong

Used 3+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

1. What would happen if you attempt to store a value of 1000 in a byte variable?

It will store successfully.

A compilation error occurs.

A runtime error occurs.

It will store the value as 127.

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

2. What is the correct way to represent a floating-point literal in Java?

100.5L

100

100.5f

100.5

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

3. What is the default type for a floating-point literal in Java?

float

double

long

byte

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

4. Which of the following is true about implicit casting in Java?

It converts a double to int.

It automatically widens a smaller type to a larger type.

It truncates decimal places.

It only works for int and byte types.

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

5. Which operator is used for incrementing a variable by 1 in Java?

++

--

+=

==

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

6. What is the output of the following code?

int i = (int) 3.9;

System.out.println(i);

4

3.9

3

Compilation error

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

7. What will be the output of the following code?

int x = 10;

System.out.println(++x + x++);

11

20

21

22

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?