Flutter_Q3

Flutter_Q3

Professional Development

29 Qs

quiz-placeholder

Similar activities

Programming Fundamentals 12th june

Programming Fundamentals 12th june

Professional Development

30 Qs

Session 1LNMIIT

Session 1LNMIIT

Professional Development

30 Qs

CodeHS Basic Data Structures in Python

CodeHS Basic Data Structures in Python

University - Professional Development

26 Qs

java Programming1

java Programming1

Professional Development

28 Qs

Front End Final Assessment

Front End Final Assessment

Professional Development

25 Qs

PG Code Breaker Challenge Round-1

PG Code Breaker Challenge Round-1

Professional Development

30 Qs

Blind Coding Round 1

Blind Coding Round 1

Professional Development

30 Qs

C Programming

C Programming

University - Professional Development

30 Qs

Flutter_Q3

Flutter_Q3

Assessment

Quiz

Computers, Instructional Technology, Professional Development

Professional Development

Hard

Created by

Mina Romany

Used 2+ times

FREE Resource

29 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

which one is wrong?

var l =[2,4];

List l=[2,4];

List l=new List(2);

list l =[2,4];

no one is wrong

2.

FILL IN THE BLANK QUESTION

45 sec • 1 pt

var l = [2,4,6,8];

print(l[2]);

what is the output of this code?

3.

FILL IN THE BLANK QUESTION

45 sec • 1 pt

var l = [2,4,6,8];

print(l.index of (2));

what is the output of this code?

4.

FILL IN THE BLANK QUESTION

45 sec • 1 pt

var l = [2,4,6,8];

print(l.elementAt(2));

what is the output of this code?

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

var l = [2,4,6,8];

print(l.reversed);

what is the output of this code?

(4,2,8,6)

(6,4,2,8)

(8,6,4,2)

(8,2,6,4)

6.

FILL IN THE BLANK QUESTION

45 sec • 1 pt

var l = [2,4,6,8]; l[0]=100

print(l[0]);

what is the output of this code?

7.

FILL IN THE BLANK QUESTION

45 sec • 1 pt

var l = [2,4,6,8]; l.add(200);

what is the index of 200?

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?