SWE++ Review

SWE++ Review

6th - 8th Grade

30 Qs

quiz-placeholder

Similar activities

Basic Power Train

Basic Power Train

KG - Professional Development

30 Qs

Multi-disciplinary

Multi-disciplinary

3rd Grade - University

31 Qs

Fun Activity (4)

Fun Activity (4)

3rd - 6th Grade

25 Qs

Pre Test Pneumatic

Pre Test Pneumatic

KG - Professional Development

25 Qs

ICT QUIZ

ICT QUIZ

3rd - 10th Grade

25 Qs

7-րդ դասարան ամփոփիչ 2-րդ կիսամյակ Excel

7-րդ դասարան ամփոփիչ 2-րդ կիսամյակ Excel

6th - 8th Grade

30 Qs

FROG VLE/ ICT

FROG VLE/ ICT

1st - 6th Grade

25 Qs

Mechanisms Quiz 2

Mechanisms Quiz 2

6th - 9th Grade

35 Qs

SWE++ Review

SWE++ Review

Assessment

Quiz

Other

6th - 8th Grade

Hard

Created by

Pitt SWE

Used 1+ times

FREE Resource

30 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is NOT a valid variable name?

cookies_left = 0

cookiesLeft = 0

cookies left = 0

COOKIESLEFT = 0

2.

MATCH QUESTION

1 min • 1 pt

Match the variables to their correct data types!

Boolean

result = True

integer

x = 5

float

name = "Sarah"

string

y = 5.87

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

x = 5.5

y = 1.0

Result of x += (2 * y) is:

7.5

2.0

6.5

None of these

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

age = 11

What will happen if we write:

print("I am " + age + " years old!")

The code will output: I am 11 years old!

There will be an error because we forgot to convert the age variable to a string

There will be an error because you can't print variables

The code will output:

Iam11yearsold!

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will happen if we write:

number = input("Enter a number: ")

result = number - 2

print(result)

We will print out the result of number - 2

Nothing will happen

There will be an error because we forgot to convert number to an integer or a float

There will be an error because we can't print variables

6.

MATCH QUESTION

1 min • 1 pt

Match the following

We know how many times to run code

While loops are used when:

for i in range():

For loops are written like:

We don't know how many times to run code

While loops are written like:

a variable

While loops are controlled by:

while some_condition == True:

For loops are used when:

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of:

for i in range(3):

print(i)

0

1

2

1

2

3

0

1

2

3

0

0

0

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?