Swift Playgrounds

Swift Playgrounds

9th Grade

9 Qs

quiz-placeholder

Similar activities

while loop

while loop

9th Grade

10 Qs

For Loops HW

For Loops HW

9th - 12th Grade

12 Qs

CodeHS While Loops

CodeHS While Loops

9th - 12th Grade

11 Qs

while loop

while loop

9th Grade

10 Qs

Python Programming - Iteration

Python Programming - Iteration

9th Grade

12 Qs

Programming - Iteration, Basic Programming Constructs & Loop

Programming - Iteration, Basic Programming Constructs & Loop

2nd - 12th Grade

10 Qs

FOR Loops Python

FOR Loops Python

9th - 12th Grade

12 Qs

Pseudocode - Iteration

Pseudocode - Iteration

7th - 11th Grade

10 Qs

Swift Playgrounds

Swift Playgrounds

Assessment

Quiz

Computers

9th Grade

Hard

Created by

Katherine McCoy

Used 1+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a variable in Swift Playgrounds?

Named storage for values of a particular type

A type of playground equipment

A type of data structure in Swift

A function in Swift programming

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you declare a variable in Swift Playgrounds?

let variableName: Type

variableName = Type

int variableName

var variableName: Type

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What are conditional statements used for in Swift Playgrounds?

Conditional statements are used for creating loops in Swift Playgrounds

Conditional statements are used to make decisions in Swift Playgrounds based on certain conditions.

Conditional statements are used for defining classes in Swift Playgrounds

Conditional statements are used for printing text in Swift Playgrounds

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What are the different types of loops in Swift Playgrounds?

switch loop

do-while loop

if-else loop

for-in loop, while loop, repeat-while loop

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you use 'if-else' statement in Swift Playgrounds?

By not using any condition inside the 'if-else' statement.

By writing the condition inside the 'if' block and the alternative condition inside the 'else' block.

By writing the condition inside the 'else' block and the alternative condition inside the 'if' block.

By using 'if' statement for both conditions and not using 'else' at all.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of 'for-in' loop in Swift Playgrounds?

To iterate over a sequence

To cook a meal

To play a video game

To send an email

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Explain the concept of 'while' loop in Swift Playgrounds.

The 'while' loop in Swift Playgrounds is used to execute the code based on a random condition

The 'while' loop in Swift Playgrounds is used to repeatedly execute a block of code as long as a specified condition is true.

The 'while' loop in Swift Playgrounds is used to execute the code only once

The 'while' loop in Swift Playgrounds is used to execute the code only if a specified condition is false

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the difference between 'while' and 'repeat-while' loop in Swift Playgrounds?

The 'while' loop and 'repeat-while' loop are the same and can be used interchangeably

The 'while' loop executes the code inside the loop first and then checks the condition

The 'while' loop checks the condition before executing the code inside the loop, while the 'repeat-while' loop executes the code inside the loop first and then checks the condition.

The 'repeat-while' loop checks the condition before executing the code inside the loop

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you use 'switch' statement in Swift Playgrounds?

You can use 'switch' statement in Swift Playgrounds to evaluate a value against multiple possible matching patterns.

You can use 'switch' statement in Swift Playgrounds to perform arithmetic operations

You can use 'switch' statement in Swift Playgrounds to create a loop

You can use 'switch' statement in Swift Playgrounds to define a class