CodeHS 4.9 Local Variables and Scope

CodeHS 4.9 Local Variables and Scope

9th - 12th Grade

7 Qs

quiz-placeholder

Similar activities

JavaScript Fundamentals

JavaScript Fundamentals

9th Grade - Professional Development

10 Qs

Unit 9 AP CSA Inheritance

Unit 9 AP CSA Inheritance

10th - 12th Grade

8 Qs

APCSA Inheritance, Superclass, Subclass

APCSA Inheritance, Superclass, Subclass

10th - 12th Grade

8 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

Variables in Python Quiz

Variables in Python Quiz

11th Grade

8 Qs

XII Csc Unit I Challenge

XII Csc Unit I Challenge

12th Grade

10 Qs

H466 - Global and Local Variables

H466 - Global and Local Variables

12th Grade - University

10 Qs

Topic 1 C++ Programming

Topic 1 C++ Programming

12th Grade

12 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