AP CSP code.org Unit 4 Review Flashcard

AP CSP code.org Unit 4 Review Flashcard

Assessment

Flashcard

Computers

12th Grade

Medium

Created by

Quizizz Content

Used 1+ times

FREE Resource

Student preview

quiz-placeholder

9 questions

Show all answers

1.

FLASHCARD QUESTION

Front

What are variables used for in programming?

Back

To store and manipulate data

2.

FLASHCARD QUESTION

Front

Which of the following is NOT a valid data type in programming? number, boolean, string, person

Back

person

3.

FLASHCARD QUESTION

Front

What is debugging in programming?

Back

Identifying and fixing errors or bugs in a program

4.

FLASHCARD QUESTION

Front

Which of the following is NOT a common debugging technique? Adding console log statements, Reviewing error logs, Using a watcher

Back

Randomly adding semi-colons

5.

FLASHCARD QUESTION

Front

What is the purpose of comments in programming?

Back

To provide explanations or notes within the code

6.

FLASHCARD QUESTION

Front

What is the correct syntax for declaring a variable to show that the current number of dogs is 2? Options: var numOfDogs = 2, numOfDogs = 2, VAR numOfDogs = 2, numOfDogs is 2

Back

var numOfDogs = 2

7.

FLASHCARD QUESTION

Front

What is displayed by the console.log statement after the following code segment executes? Options: value is: 2, value is: 2.3333333, value is: 3, value is: 4, value is: c

Back

value is: 4

8.

FLASHCARD QUESTION

Front

What is the output of the following JavaScript code segment?

Back

5hello

9.

FLASHCARD QUESTION

Front

A Boolean expression is an expression that evaluates to which of the following? Yes/Maybe/No, Any Integer, Integers between 1 and 10, Any single character

Back

True/False