Java nested if program

Java nested if program

10th - 11th Grade

9 Qs

quiz-placeholder

Similar activities

Logic Gates KS3

Logic Gates KS3

10th Grade

9 Qs

Boolean Logic and Logic Gates

Boolean Logic and Logic Gates

10th Grade

10 Qs

Flowchart Symbols

Flowchart Symbols

10th Grade

10 Qs

 Computing Revision JCG

Computing Revision JCG

KG - University

14 Qs

Flowchart

Flowchart

6th - 10th Grade

10 Qs

GCSE - Flowcharts

GCSE - Flowcharts

11th Grade

10 Qs

Python Programming Basics

Python Programming Basics

7th - 11th Grade

12 Qs

Computer Hardware - Logic Gates

Computer Hardware - Logic Gates

5th - 12th 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: " + ____ );