Flutter_Q4

Flutter_Q4

Professional Development

6 Qs

quiz-placeholder

Similar activities

Basics of python

Basics of python

10th Grade - Professional Development

11 Qs

CIT JULY 2022

CIT JULY 2022

Professional Development

10 Qs

Python

Python

University - Professional Development

10 Qs

JavaScript

JavaScript

Professional Development

10 Qs

Chapter 2 - FSW

Chapter 2 - FSW

Professional Development

10 Qs

Linux Essentials Quiz 2

Linux Essentials Quiz 2

Professional Development

11 Qs

for loops & while loops

for loops & while loops

University - Professional Development

10 Qs

System Logging Linux

System Logging Linux

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?