Java Increment & Decrement Operators and assignment statements

Java Increment & Decrement Operators and assignment statements

Assessment

Quiz

Computers

Professional Development

Hard

Created by

Kim Bowman

Used 13+ times

FREE Resource

Student preview

quiz-placeholder

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

++ increases the value of a variable by 1

assignment operator

decrement operator

increment operator

sentinel

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

--; decreases the value of a variable by 1

assignment operator

decrement operator

increment operator

sentinel

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What would the new value of A be?

A=1;

a++;

1

2

3

4

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What would the new value of A be?

A=1;

A--;

0

1

2

-1

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What value will print to the screen for i?


int i=5;

System.out.println(i++);

System.out.println(i);

System.out.println(++i);

5

6

7

6

6

7

6

7

8

5

5

6

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

++i and i++ cannot be used anywhere for the same purpose

true

false

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What does the following code output?

int x = 1;

System.out.println(x++);

1

2

compilation error

runtime error

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?