Variables and their Data Types in JAVA

Variables and their Data Types in JAVA

9th Grade

8 Qs

quiz-placeholder

Similar activities

Individuals and Variables of Data

Individuals and Variables of Data

6th - 12th Grade

10 Qs

Module 10 Vocabulary

Module 10 Vocabulary

9th Grade

12 Qs

Project STEM AP CS A Unit 1 Quiz Review

Project STEM AP CS A Unit 1 Quiz Review

9th - 12th Grade

11 Qs

Review multiple choice Quiz

Review multiple choice Quiz

KG - Professional Development

10 Qs

Orange Belt Quiz

Orange Belt Quiz

KG - 12th Grade

10 Qs

Using Simple string Methods

Using Simple string Methods

9th - 12th Grade

10 Qs

Intro to JavaScript

Intro to JavaScript

9th - 12th Grade

12 Qs

Interactive Animations and Games Quiz

Interactive Animations and Games Quiz

9th Grade

10 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";