Flutter_Q4

Flutter_Q4

Professional Development

6 Qs

quiz-placeholder

Similar activities

C++Quiz#1

C++Quiz#1

Professional Development

10 Qs

Python Session 5

Python Session 5

Professional Development

10 Qs

Python

Python

University - Professional Development

10 Qs

Flutter_Q5

Flutter_Q5

Professional Development

10 Qs

Python Quiz

Python Quiz

Professional Development

10 Qs

Quiz on Sample Code - JavaScript

Quiz on Sample Code - JavaScript

Professional Development

6 Qs

Chapter 2 - FSW

Chapter 2 - FSW

Professional Development

10 Qs

CS - Introduction to React Native

CS - Introduction to React Native

Professional Development

10 Qs

Flutter_Q4

Flutter_Q4

Assessment

Quiz

Computers, Professional Development, Instructional Technology

Professional Development

Hard

Created by

Mina Romany

Used 2+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

var stud={"ID":1521};

print(user.contiansKey("id"));

what is the output of this code?

True

False

1521

Error

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

var employee={"Name":"Ali"};

print(employee.clear());

what is the output of this code?

{}

Error

True

False

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

var user={33 : "ahmed"}; user["Name"]="33";

print(user.contiansKey("33"));

True

False

Error

ahmed

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

var car ={id="2525"};

print(car.contiansKey(id));

True

2525

False

Error

5.

FILL IN THE BLANK QUESTION

45 sec • 1 pt

const x; x=10;

print(x);

what is the output of this code?

6.

FILL IN THE BLANK QUESTION

45 sec • 1 pt

final x; x=10;

print(x);

what is the output of this code?