Programming Basics & Variables

Programming Basics & Variables

11th Grade

5 Qs

quiz-placeholder

Similar activities

CODING CLUB PRE TEST

CODING CLUB PRE TEST

11th Grade

10 Qs

Programming Basics Quiz

Programming Basics Quiz

11th Grade

10 Qs

Understanding Arrays and Loops in JavaScript

Understanding Arrays and Loops in JavaScript

11th Grade - University

7 Qs

ICT Problem Solving

ICT Problem Solving

9th - 12th Grade

8 Qs

Logic Gates and Boolean Functions Quiz

Logic Gates and Boolean Functions Quiz

11th Grade

10 Qs

Unity Scripting Basics Quiz

Unity Scripting Basics Quiz

9th - 12th Grade

5 Qs

Python Mod 2 Sec 5

Python Mod 2 Sec 5

11th Grade

10 Qs

Pemrograman Web dan Perangkat Bergerak

Pemrograman Web dan Perangkat Bergerak

11th Grade

10 Qs

Programming Basics & Variables

Programming Basics & Variables

Assessment

Quiz

Information Technology (IT)

11th Grade

Medium

Created by

Tarra Jackson

Used 1+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 20 pts

Which of the following is NOT a valid variable name?

user_name

2nd_place

favoriteColor

total_amount

2.

MULTIPLE CHOICE QUESTION

30 sec • 20 pts

Which data type would be used for a person’s full name?

Integer

Boolean

String

Float

3.

MULTIPLE CHOICE QUESTION

30 sec • 20 pts

What does the following code output? python CopyEdit x = 10 y = 5.5 print(x + y)

105.5

15.5

"10 + 5.5"

Error

4.

MULTIPLE CHOICE QUESTION

30 sec • 20 pts

Which symbol is used to assign a value to a variable?

a) :

b) ==

c) =

d) =>

5.

MULTIPLE CHOICE QUESTION

30 sec • 20 pts

What will happen if you try to store the number 100 in a variable meant for a boolean?

The program will crash.

It will store the number 100.

It will convert 100 into True.

Nothing will happen.