CodeHS 4.9 Local Variables and Scope

CodeHS 4.9 Local Variables and Scope

9th - 12th Grade

7 Qs

quiz-placeholder

Similar activities

Code.org Vocabulary

Code.org Vocabulary

11th Grade

11 Qs

Code.org Unit 4

Code.org Unit 4

11th Grade

11 Qs

Unit 4 Code.org

Unit 4 Code.org

11th Grade

11 Qs

TLE Q3 M4

TLE Q3 M4

10th Grade

10 Qs

CMU CS Academy Unit 2 Part 6 Global Variables and Scope

CMU CS Academy Unit 2 Part 6 Global Variables and Scope

9th Grade

11 Qs

TLEQ3M1-5

TLEQ3M1-5

10th Grade

10 Qs

Code.org Unit 5 Vocab Quiz 1

Code.org Unit 5 Vocab Quiz 1

9th - 12th Grade

10 Qs

Grade 9 - User Defined Methods

Grade 9 - User Defined Methods

9th Grade

10 Qs

CodeHS 4.9 Local Variables and Scope

CodeHS 4.9 Local Variables and Scope

Assessment

Quiz

Computers

9th - 12th Grade

Medium

Created by

Aaron Pavao

Used 21+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the term for a variable declared inside a method?

method variable

local variable

global variable

private variable

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Where does a variable that is declared inside a method exist?

only in that method

only in the class the method is in

only in methods that declare the variable

as long as the program is running

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is scope?

the part of a program where the variable exists

a minty mouthwash

a device used to aim a projectile

a device in a submarine that is used to view the surface

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What characters denote a block?

< >

[ ]

{ }

( )

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Where does a variable exist?

from when it's declared to the end of the block it's in

from when it's declared to the end of the method it's in

from when it's declared to the end of the class it's in

from when it's declared to the end of the program it's in

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

When two variables have the same name, which one does Java use?

the one with the most specific scope

the one with the most general scope

the one with the most private scope

the one with the lowest memory address

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What happens when a variable is given the same name as a variable with a different scope?

shadowing

RepeatedNamingException

syntax error

infinite loop