Java Fundamentals

Java Fundamentals

12th Grade

24 Qs

quiz-placeholder

Similar activities

Python Basics & Syntax

Python Basics & Syntax

10th - 12th Grade

20 Qs

Java OOP Connections

Java OOP Connections

10th - 12th Grade

20 Qs

iGCSE Computer Science: Programming Languages

iGCSE Computer Science: Programming Languages

9th - 12th Grade

20 Qs

4thQuarter Review Comprog 2

4thQuarter Review Comprog 2

11th Grade - University

20 Qs

OOP Java

OOP Java

12th Grade

20 Qs

Computer Science: Chapter 1 Test Review

Computer Science: Chapter 1 Test Review

9th - 12th Grade

20 Qs

Programming Paradigm

Programming Paradigm

12th Grade

19 Qs

uCertify Chapter 1 Test

uCertify Chapter 1 Test

9th - 12th Grade

20 Qs

Java Fundamentals

Java Fundamentals

Assessment

Quiz

Computers

12th Grade

Easy

Created by

Marlowe Marquez

Used 26+ times

FREE Resource

24 questions

Show all answers

1.

REORDER QUESTION

1 min • 5 pts

Reorder the following Java program structure

package helloworld;

public class HelloWorld{

public static void main (String [ ] args) {

System.out.println("Hello World from Java");

}

}

2.

CLASSIFICATION QUESTION

3 mins • 20 pts

Organize these options into the right categories

Groups:

(a) Arithmetic Operators

,

(b) Assignment Operators

,

(c) Comparison Operators

,

(d) Logical Operators

*=

%

-

*

<=

/

>

++

>=

==

||

-=

!

%=

<

+=

+

/=

&&

!=

3.

DRAG AND DROP QUESTION

1 min • 5 pts

Drag the following missing parts of for loop to its correct place in order to display numbers from 1 to 10. for ( ​ (a)   x<=10;​ (b)   ){

System.​ (c)   println(​ (d)   )​ (e)  

out.
x
;
int x=1;
x++;

4.

MATCH QUESTION

1 min • 5 pts

Match the following

"abc"

String

'a'

int

5

boolean

5.2

char

true

float

5.

DRAG AND DROP QUESTION

1 min • 5 pts

Print "Hello World" if x is greater than y.

​ (a)   x​ (b)   50 ​ (c)   y = 10;

​ (d)   (x​ (e)   y) {

System.out.println("Hello World");

}

,
int
=
if
>

6.

DRAG AND DROP QUESTION

1 min • 5 pts

Insert the missing parts to complete the following switch statement. (a)   day = 2;

switch (​ (b)   ) {

​ (c)   1: System.out.println("Saturday");

​ (d)  

case ​ (e)   : System.out.println("Sunday");

break;

}

case
2
break;
day
int

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Who invented Java Programming?

Steve Jobs
Mark Zuckerberg
Bill Gates
James Gosling

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?