Flutter_Q2 G4

Flutter_Q2 G4

Professional Development

7 Qs

quiz-placeholder

Similar activities

Las nuevas tecnologías en el aula

Las nuevas tecnologías en el aula

Professional Development

10 Qs

CSS Quiz 2

CSS Quiz 2

University - Professional Development

10 Qs

เก็บคะแนนหน่วยที่ 1 ความรู้พื้นฐานเกี่ยวกับการสร้างเว็บไซต์

เก็บคะแนนหน่วยที่ 1 ความรู้พื้นฐานเกี่ยวกับการสร้างเว็บไซต์

Professional Development

10 Qs

Repaso Tiempos de Experiencia Abril

Repaso Tiempos de Experiencia Abril

KG - Professional Development

11 Qs

rappers

rappers

7th Grade - Professional Development

6 Qs

Creating a document

Creating a document

1st Grade - Professional Development

9 Qs

Simulation - ICT

Simulation - ICT

KG - Professional Development

10 Qs

Python8

Python8

Professional Development

12 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