Flutter full quiz

Flutter full quiz

Professional Development

23 Qs

quiz-placeholder

Similar activities

CodeHS - Intro to Python - Basics and Console Interaction

CodeHS - Intro to Python - Basics and Console Interaction

9th Grade - Professional Development

20 Qs

Python - CDT

Python - CDT

Professional Development

20 Qs

WCF Training Test II

WCF Training Test II

Professional Development

20 Qs

15 days of code quiz 2

15 days of code quiz 2

11th Grade - Professional Development

22 Qs

Python Programming Fundamental

Python Programming Fundamental

Professional Development

20 Qs

first round quiz

first round quiz

Professional Development

20 Qs

Season 4 #Spaic Python Weekly Quiz

Season 4 #Spaic Python Weekly Quiz

KG - Professional Development

20 Qs

Flutter Online Quiz

Flutter Online Quiz

Professional Development

18 Qs

Flutter full quiz

Flutter full quiz

Assessment

Quiz

Computers

Professional Development

Medium

Created by

Mina Romany

Used 9+ times

FREE Resource

23 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

what is the output of this code?

int x =5.2;

print(x);

5

5.2

5.0

Error

2.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

var x = 14.9;

what is the type of variable x?

int

var

double

float

3.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Fill the gaps.

___Declaring an integer

and printing it___

int x = 42;

print(x);

//......//

<..............>

/*.....*/

?...........?

4.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

 

what is the output of this code?

const R = 3.1;

R=5;

print(R);

Error

5

3.1

null

5.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

which one print 10?

int num =9;

print ("the number is $num + 1");

int num =9;

print ("the number is ${num + 1}");

int num =9;

print ("the number is num +1")

int num =9;

print ("the number is " + (num +1));

6.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

 

var a ="4";

var b ="2";

print(a+b);

what is the output of this code?

Error

Null

42

6

7.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

 

Which operator is used to determine the remainder?

/

*

-

%

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?