Programming Basics & Variables

Programming Basics & Variables

11th Grade

5 Qs

quiz-placeholder

Similar activities

Sintaxe Básica do JavaScript

Sintaxe Básica do JavaScript

11th Grade

7 Qs

Увлекательный мир Python

Увлекательный мир Python

6th Grade - University

9 Qs

pengenalan pemprograman prosedural1

pengenalan pemprograman prosedural1

8th Grade - University

5 Qs

Js variables data type arithmetic expression

Js variables data type arithmetic expression

11th Grade

10 Qs

Asesmen Algoritma dan Pemogramanan

Asesmen Algoritma dan Pemogramanan

11th Grade

10 Qs

LOGICAL

LOGICAL

11th Grade

6 Qs

BÀI 18. THỰC HÀNH XÁC ĐỊNH CẤU TRÚC BẢNG VÀ CÁC TRƯỜNG KHÓA

BÀI 18. THỰC HÀNH XÁC ĐỊNH CẤU TRÚC BẢNG VÀ CÁC TRƯỜNG KHÓA

11th Grade

10 Qs

Python Mod 2 Sec 6

Python Mod 2 Sec 6

11th Grade

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