Java nested if program

Java nested if program

10th - 11th Grade

9 Qs

quiz-placeholder

Similar activities

E-Safety Quiz

E-Safety Quiz

KG - 11th Grade

8 Qs

Sims 4 Game

Sims 4 Game

5th Grade - Professional Development

11 Qs

Flowol

Flowol

KG - University

10 Qs

Computer programming for 2nd chap.

Computer programming for 2nd chap.

10th Grade - Professional Development

12 Qs

Data types and representing images - Chapter 1

Data types and representing images - Chapter 1

10th Grade

12 Qs

Python Selection

Python Selection

9th - 10th Grade

10 Qs

IT Quiz

IT Quiz

11th - 12th Grade

10 Qs

M6 TLE

M6 TLE

10th Grade

10 Qs

Java nested if program

Java nested if program

Assessment

Quiz

Computers

10th - 11th Grade

Hard

Created by

Claire Firman

Used 12+ times

FREE Resource

9 questions

Show all answers

1.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Media Image

You are going to fill in the blanks.

You will complete the MarkSymbol class:

Code a program which will input a mark, then display a symbol for this mark according to this table.

public class _____

2.

FILL IN THE BLANK QUESTION

2 mins • 1 pt

To input a mark (fill in missing code):

int mark = ______(JOptionPane.showInputDialog("Input number));

3.

FILL IN THE BLANK QUESTION

45 sec • 1 pt

We need to declare a variable to store the symbol:

____ symbol = ' ';

4.

FILL IN THE BLANK QUESTION

30 sec • 1 pt

Complete the if:

if (mark __ 80)

{

symbol = 'A';

}

5.

FILL IN THE BLANK QUESTION

30 sec • 1 pt

The next part of the laddered if:

else if (mark >= __ )

{

symbol = 'B';

}

6.

FILL IN THE BLANK QUESTION

30 sec • 1 pt

The next part of the laddered if:

else if (mark >= 60 )

{

symbol = ___;

}

7.

FILL IN THE BLANK QUESTION

30 sec • 1 pt

The next part of the laddered if:

else if (_____ >= 50 )

{

symbol = 'D';

}

8.

FILL IN THE BLANK QUESTION

1 min • 1 pt

To end off the laddered if,

(all other marks get an 'E'):

____

{

symbol = 'E';

}

9.

FILL IN THE BLANK QUESTION

1 min • 1 pt

The Output at the end of the class:

System.out.println("Your symbol: " + ____ );