TodoApp1

TodoApp1

Professional Development

8 Qs

quiz-placeholder

Similar activities

Responsive Web Design

Responsive Web Design

Professional Development

11 Qs

Excel Workshop MCQs

Excel Workshop MCQs

Professional Development

10 Qs

Flutter III

Flutter III

Professional Development

8 Qs

Parts and function of a Mouse

Parts and function of a Mouse

Professional Development

11 Qs

FinTech 06-1 PyViz

FinTech 06-1 PyViz

Professional Development

11 Qs

Microsoft Powerpoint 2010 Quiz

Microsoft Powerpoint 2010 Quiz

University - Professional Development

10 Qs

F. Challenging Callers

F. Challenging Callers

Professional Development

10 Qs

Video 1,2,3

Video 1,2,3

Professional Development

10 Qs

TodoApp1

TodoApp1

Assessment

Quiz

Computers

Professional Development

Hard

Created by

Yunesh Shrestha

Used 1+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of SingleChildScrollView in Flutter?

To create a horizontal layout

To scroll multiple widgets simultaneously

To allow a single widget to scroll when it overflows

To scroll rows and columns together

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In a Row, what does mainAxisAlignment control?

Vertical alignment

Horizontal alignment of children

Padding

Scroll direction

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What happens if crossAxisAlignment is set to CrossAxisAlignment.start in a Row?

Widgets align to the right

Widgets align to the top

Widgets align to the bottom

Widgets align to the left

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the following code print? List names = ['Alex', 'Brian']; names.add('Cathy'); print(names);

[Alex, Brian, Cathy]

[Cathy, Brian, Alex]

[Alex, Cathy]

['Alex', 'Brian', 'Cathy']

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will this code output? List nums = [1, 2, 3, 4]; nums.remove(2); print(nums);

[1, 3, 4]

[1, 2, 3, 4]

[1, 2, 3]

[1, 3, 4, 2]

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the removeWhere() method do?

Removes items by index

Removes items randomly

Removes all elements that satisfy a condition

Removes duplicates from a list

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you declare a Map with String keys and int values?

Map<String, int> scores = {};

Map<int, String> scores = {};

var scores = new List();

Map scores={};

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will this code output? Map marks = {'Math': 90, 'Science': 80}; print(marks['Math']);

80

null

90

'Math'