Flutter_Q2 G4

Flutter_Q2 G4

Professional Development

7 Qs

quiz-placeholder

Similar activities

Java Strings and lops

Java Strings and lops

Professional Development

10 Qs

Day 3 C Programming quiz

Day 3 C Programming quiz

Professional Development

10 Qs

Java Programming Quiz #1

Java Programming Quiz #1

Professional Development

10 Qs

Intermediate HTML/CSS Class 1

Intermediate HTML/CSS Class 1

KG - Professional Development

12 Qs

AppsLab_Q2

AppsLab_Q2

10th Grade - Professional Development

10 Qs

Skill Development - Debugging Practice1

Skill Development - Debugging Practice1

10th Grade - Professional Development

10 Qs

Day 5 C Programming Quiz

Day 5 C Programming Quiz

Professional Development

10 Qs

C# Quiz

C# Quiz

Professional Development

10 Qs

Flutter_Q2 G4

Flutter_Q2 G4

Assessment

Quiz

Instructional Technology, Computers

Professional Development

Hard

Created by

Mina Romany

Used 1+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

where can we use break?

if statement

ternary condition

while loop

for loop

switch statement

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

what does continue do?

go out of loop

skip iteration

go to a function

call a method

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

from what we can read input from user?

cin>>;

console.readline();

readlinesync();

stdin.readlinesync();

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

what library is used to read from user?

dart:math

dart:html

dart:io

dart:isolate

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

print(new Random().nextInt(15));

what is the range of the output?

from 1 to 15

from 1 to 14

from 0 to 15

from 0 to 14

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you start writing a while loop?

while (x > y)

while x > y:

x > y while {

while x > y {

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

int x=12;int y =4;

int z= x/y;

print(z);

what is the output of this code?

3

3.0

no output

error