Review for Conditionals, Variables and Functions

Review for Conditionals, Variables and Functions

9th - 12th Grade

9 Qs

quiz-placeholder

Similar activities

PM Tech Quiz - Missed Questions

PM Tech Quiz - Missed Questions

4th Grade - University

13 Qs

AP CSP Unit 3

AP CSP Unit 3

10th - 12th Grade

14 Qs

AP Computer Science Principles

AP Computer Science Principles

10th - 12th Grade

14 Qs

BELL RINGER: Functions

BELL RINGER: Functions

10th Grade

7 Qs

CODE.ORG VOCAB

CODE.ORG VOCAB

5th - 9th Grade

10 Qs

Lesson 7: Boogie Bot Exit Slip

Lesson 7: Boogie Bot Exit Slip

10th Grade

10 Qs

IP: JavaScript & jQuery

IP: JavaScript & jQuery

9th - 12th Grade

9 Qs

CSF 2.4

CSF 2.4

9th Grade - University

10 Qs

Review for Conditionals, Variables and Functions

Review for Conditionals, Variables and Functions

Assessment

Quiz

Computers

9th - 12th Grade

Medium

Created by

R M

Used 23+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

10

100

20

200

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

10

11

12

13

16

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

10

25

30

35

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

a b c

a b c b c b c

a b c b c

a b c a

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

CheckWin();

checkWin();

checkwin();

checkWin()

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which one of the following statements about functions is TRUE

A function can change names over the course of a program.

Code can be added or removed dynamically from a function while the program is running.

Functions can be called using different names depending on where in the program they are called.

Two functions can be given identical names as long as their code is identical.

Two functions in a single program can have different names but contain identical code.

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following is NOT true about functions in programming?

Functions are reusable programming abstractions.

Functions help reduce the complexity of writing and maintaining programs.

Functions cannot make calls to other functions within the same program.

Functions help break a problem into logical chunks.

Once defined, a function can be called many times from different parts of a program.

8.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is one important naming convention of functions?

A function name should indicate how long the function takes to run.

Two functions with similar behavior should be given identical names to indicate the relationship between them.

A function name should be as descriptive as possible to indicate what the function does.

Function names should be organized alphabetically.

The function name should begin with a number that indicates the order in which it should be executed.

9.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

When programmers work together, what is an example of how abstraction in programming can promote collaboration?

Team members can rely on one another to explain their code.

Programmers can write functions without needing to know what they do or how they should work.

Programmers can use functions created by their partners, relying on the functionality without needing to know the specific details of how the function is implemented.

In order for programmers to work together, they must work in the same room.

Abstraction allows programmers to brainstorm more creative solutions to problems.