Flutter_Q2 G4

Flutter_Q2 G4

Professional Development

7 Qs

quiz-placeholder

Similar activities

Arduino Coding

Arduino Coding

10th Grade - Professional Development

6 Qs

Arduino Tema 4

Arduino Tema 4

Professional Development

10 Qs

Coding Fundamentals in C

Coding Fundamentals in C

6th Grade - Professional Development

12 Qs

Programming

Programming

University - Professional Development

12 Qs

Day 4 C Programming Quiz

Day 4 C Programming Quiz

Professional Development

10 Qs

DECI - Week 5 - round

DECI - Week 5 - round

Professional Development

10 Qs

C - Programming ( Output based - Loop )

C - Programming ( Output based - Loop )

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