Variables and their Data Types in JAVA

Variables and their Data Types in JAVA

9th Grade

8 Qs

quiz-placeholder

Similar activities

Pemrograman berorientasi objek

Pemrograman berorientasi objek

1st - 10th Grade

13 Qs

Java Quiz 1: Introduction

Java Quiz 1: Introduction

6th - 12th Grade

10 Qs

JavaScript Variables

JavaScript Variables

3rd Grade - University

13 Qs

Unit 1 Day 7 - Variables & Data Types

Unit 1 Day 7 - Variables & Data Types

9th - 12th Grade

10 Qs

Python Basics (Y9)

Python Basics (Y9)

8th - 10th Grade

13 Qs

Java

Java

9th Grade

11 Qs

For Loops HW

For Loops HW

9th - 12th Grade

12 Qs

basics of javascript

basics of javascript

9th - 12th Grade

11 Qs

Variables and their Data Types in JAVA

Variables and their Data Types in JAVA

Assessment

Quiz

Computers

9th Grade

Easy

Created by

Cleon Barrett

Used 1+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

1. How is a variable in programming different from a variable in math?

A. In programming, a variable is always a letter that represents an unknown value.

B. In programming, a variable is a fixed number.

C. In programming, a variable stores a value and has a name, and the value can change. 

D. There is no difference — they are the same in both math and programming.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

2. What is a variable and why do we use it in programming?

A. A variable is a command that makes the program repeat.

B. A variable is a reserved word used to start a method.

C. A variable is a name used to store data in a program so it can be reused or changed. 

D. A variable is used only for doing math in a program.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

3. Match the following values to the correct Java data types.

a) "Hello"

A. int

B. string 

C. Double 

D. boolean

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

4. Match the following values to the correct Java data types.

b) true

A. char

B. String

C. boolean 

D. int

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

5. Match the following values to the correct Java data types.

c) 75.5

A. boolean

B. double 

C. int

D. float

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

6. Match the following values to the correct Java data types.

d) 25

A. int 

B. double

C. String

D. char

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

7. Is this a valid variable name in Java? Why or why not?

int 2hot = 100;

A. Yes, it’s valid because numbers can be part of variable names.

B. No, because variable names can’t start with a digit. 

C. Yes, because Java automatically converts numbers.

D. No, because you can't use the number 100 in Java.

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

8. Which of the following is the correct way to declare a variable to store a student’s GPA (as a decimal)?

A. int GPA = "3.7";

B. String GPA = 3.7;

C. double GPA = 3.7; 

D. boolean GPA = "3.7f";