Review for Conditionals, Variables and Functions

Review for Conditionals, Variables and Functions

9th - 12th Grade

9 Qs

quiz-placeholder

Similar activities

Computer Science Principles: Intro to Programming

Computer Science Principles: Intro to Programming

10th - 12th Grade

14 Qs

Writing Class AP Computer Science

Writing Class AP Computer Science

10th - 12th Grade

14 Qs

Apple Swift Coding 1 - Lesson 6 - 7

Apple Swift Coding 1 - Lesson 6 - 7

9th - 12th Grade

10 Qs

Code.org APCSP Unit 7 Assessment

Code.org APCSP Unit 7 Assessment

9th - 12th Grade

13 Qs

Python Programming: Functions and Procedures

Python Programming: Functions and Procedures

9th - 11th Grade

12 Qs

Functions and Procedures

Functions and Procedures

9th - 11th Grade

8 Qs

Code.org Unit 3

Code.org Unit 3

9th - 12th Grade

14 Qs

AP Computer Science Principles Unit 3

AP Computer Science Principles Unit 3

10th - 12th Grade

14 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.