TodoApp1

TodoApp1

Professional Development

8 Qs

quiz-placeholder

Similar activities

Minecraft Mob quiz

Minecraft Mob quiz

KG - Professional Development

10 Qs

Keyboard & Mouse Parts & Functions

Keyboard & Mouse Parts & Functions

Professional Development

10 Qs

The keyboard and mouse

The keyboard and mouse

4th Grade - Professional Development

11 Qs

Microsoft Word

Microsoft Word

Professional Development

10 Qs

Microsoft Office Word

Microsoft Office Word

Professional Development

9 Qs

ILT #1 Web Basic

ILT #1 Web Basic

Professional Development

10 Qs

Paint เบื้องต้น

Paint เบื้องต้น

Professional Development

10 Qs

css2_Background

css2_Background

Professional Development

9 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'