3. Flutter Basic: Widgets & Debugging

3. Flutter Basic: Widgets & Debugging

Professional Development

8 Qs

quiz-placeholder

Similar activities

Widget, Widget Tree and Layouts

Widget, Widget Tree and Layouts

Professional Development

10 Qs

Flutter Basics

Flutter Basics

Professional Development

12 Qs

Drools Module 04 Quiz

Drools Module 04 Quiz

Professional Development

6 Qs

Flutter III

Flutter III

Professional Development

8 Qs

Flutter Quiz

Flutter Quiz

Professional Development

9 Qs

Flutter Maps

Flutter Maps

Professional Development

7 Qs

Provider Shared Preferences

Provider Shared Preferences

Professional Development

10 Qs

Pre Test IT Mobile Programmer

Pre Test IT Mobile Programmer

Professional Development

10 Qs

3. Flutter Basic: Widgets & Debugging

3. Flutter Basic: Widgets & Debugging

Assessment

Quiz

Computers

Professional Development

Medium

Created by

M T

Used 8+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the role of a Widget?

Widgets are used to build the User Interface of the app.

A widget always draws something visible onto the screen.

Widgets are the only type of Dart objects you can use in Flutter apps.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is not true about Stateless widgets?

Stateless widgets are not state-sensitive and remain static throughout its lifecycle.

Stateless widgets can't keep track of changes and update the UI based on these changes.

Stateless widgets can never show updated content.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

One of the following is not a Flutter widget

SwitchButton

TextButton

OutlinedButton

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

One of the following is the right definition for TextField Widget

A widget to select between 2 options; on or off.

A widget that acts as a holder of other widgets.

A widget that enables text inputs, it displays the keyboard when touched.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What's the core characteristic of both a Row and a Column?

Both can hold more than one child.

Both are scrollable.

Both can be styled in great details.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What's the difference between Column and ListView?

ListView can hold more than one child.

ListView is scrollable by default.

ListView can hold more items.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which statement is not true about debugging?

It does not help in avoiding dreadful and expensive consequences.

It is the process of finding and resolving existing or potential bugs.

It is an important phase in the lifecycle of software development.

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a Widget?

It's an alternative name for a Flutter app.

Widgets are the core building blocks of the Flutter User Interface.

Widgets are a core Dart feature.