Understanding Swift Variables and Scope

Understanding Swift Variables and Scope

9th Grade

9 Qs

quiz-placeholder

Similar activities

Repaso Teórico Conceptos Pascal

Repaso Teórico Conceptos Pascal

8th - 12th Grade

14 Qs

INTRODUCTION TO PYTHON GRADE 9

INTRODUCTION TO PYTHON GRADE 9

9th Grade

10 Qs

HTML & Java

HTML & Java

9th Grade

12 Qs

CS Conditionals

CS Conditionals

9th - 12th Grade

13 Qs

AP CSP Review on Lists, Loops, and Groups

AP CSP Review on Lists, Loops, and Groups

9th - 12th Grade

9 Qs

JavaScript: Coerción y Tipos de Datos

JavaScript: Coerción y Tipos de Datos

1st - 10th Grade

10 Qs

Variables in Swift Playground Quiz

Variables in Swift Playground Quiz

9th Grade - University

10 Qs

[Hall] Unit 8 JS Variables & Animation

[Hall] Unit 8 JS Variables & Animation

9th - 12th Grade

13 Qs

Understanding Swift Variables and Scope

Understanding Swift Variables and Scope

Assessment

Quiz

Computers

9th Grade

Medium

Created by

Iman Meg

Used 4+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a variable in Swift?

A constant value that cannot be changed

A named storage that can hold a value

A function that performs a specific task

A type of loop used in programming

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a correct way to declare a variable in Swift?

`let age = 25`

`var name = "John"`

`int height = 180`

`string city = "New York"`

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the difference between `let` and `var` in Swift?

`let` is used for loops, `var` is used for functions

`let` declares a constant, `var` declares a variable

`let` is used for strings, `var` is used for integers

`let` is used for global scope, `var` is used for local scope

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a global variable?

A variable declared inside a function

A variable declared outside all functions

A variable declared inside a loop

A variable declared inside a conditional statement

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the scope of a local variable?

It can be accessed from anywhere in the program

It can only be accessed within the block where it is declared

It can be accessed by all functions in the program

It can be accessed by all classes in the program

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a correct data type in Swift?

`integer`

`float`

`Int`

`double`

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following Swift code? ```swift var x = 10 x = 20 print(x) ```

10

20

30

Error

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following statements about variable state is true?

A variable's state cannot change during program execution

A variable's state is its current value at any point in time

A variable's state is determined by its data type

A variable's state is always initialized to zero

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the result of the following Swift code? ```swift let pi = 3.14 pi = 3.14159 ```

3.14

3.14159

Error

0