Java 1

Java 1

6th - 8th Grade

11 Qs

quiz-placeholder

Similar activities

JAVA: Level-1

JAVA: Level-1

5th - 12th Grade

15 Qs

Java 4

Java 4

7th - 12th Grade

9 Qs

Classes in C++

Classes in C++

6th - 9th Grade

14 Qs

C# and Python

C# and Python

4th Grade - University

7 Qs

C++ Functions

C++ Functions

6th - 8th Grade

11 Qs

PBD SK T4 - 1.2 Algoritma

PBD SK T4 - 1.2 Algoritma

1st Grade - Professional Development

6 Qs

C# lesson10

C# lesson10

1st - 10th Grade

10 Qs

Programming in Java

Programming in Java

8th Grade

10 Qs

Java 1

Java 1

Assessment

Quiz

Computers

6th - 8th Grade

Medium

Created by

TAYLOR WAYNE HALLMAN

Used 2+ times

FREE Resource

11 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

1. What happens here?

public class Main

{

public static void main(String[] args) {

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

}

}

Prints out the number 1

Error

Prints out hello world

Prints out Hello World

2.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

Which Data type stores a decimal?

Integer

String

double

char

3.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

Which Data type stores a Word?

Integer

String

double

char

4.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

Which Data type stores a whole number?

Integer

String

double

char

5.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

Which Data type stores a single 'letter'?

Integer

String

double

char

6.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

What happens in this code ?

public class Main

{

public static void main(String[] args) {

int x = 20;

int y = 18;

if (x > y) {

System.out.println("x is greater than y");

}

else

System.out.println("y is greater than x");

}

}

Error

Prints out

x is greater than y

Prints out

y is greater than x

nothing at all

7.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

What does this code do??

public class Main

{

public void Gas(){

System.out.println("Coach Hallman");

}

public void Car(){

}

public static void main(String[] args) {

Main x = new Main();

x.Car();

}

}

error

nothing at all

Prints out

Coach Hallman

Prints out

Fast cars

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?