Day2

Day2

Professional Development

9 Qs

quiz-placeholder

Similar activities

RPA KKEM Session 01

RPA KKEM Session 01

Professional Development

10 Qs

Popular IDE & Companies

Popular IDE & Companies

Professional Development

6 Qs

Mastering KineMaster

Mastering KineMaster

Professional Development

10 Qs

Google Flutter 1 - Introduction

Google Flutter 1 - Introduction

Professional Development

7 Qs

Dart e Flutter

Dart e Flutter

Professional Development

9 Qs

Android y sus generalidades

Android y sus generalidades

University - Professional Development

10 Qs

Quiz Webinar Flutter 29-04-2021

Quiz Webinar Flutter 29-04-2021

Professional Development

10 Qs

Flutter III

Flutter III

Professional Development

8 Qs

Day2

Day2

Assessment

Quiz

Computers

Professional Development

Medium

Created by

Keerthan S

Used 1+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The MaterialApp widget serves as a single top-level container for material apps.

True

False

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Flutter projects can be created in :

Visual Studio

Command Line Interface (CLI)

Android Studio

All of the above

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt


Which file is responsible for managing dependencies in the Flutter project ?


pubspec.yaml

pubspec.xml

AndroidManifest.xml

All of the above

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Center widget is responsible for:

Aligning its child to end

Aligning its child in the middle of the screen

Aligns text in the middle of the screen

None

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt


Which Flutter widget is used to render text data ?

MaterialWidget widget

Center widget

Text widget

AppBar widget

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt


Flutter projects can only be created using Android Studio.

True

False

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt


Flutter projects can only be created using Android Studio.

True

False

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Pick the correct code snippet to turn off the debug banner in MaterialApp

MaterialApp(
    debugShowCheckedModeBanner: false,
);

MaterialApp(
    debugBanner: false,
);

MaterialApp(
    debugShowMaterialGrid: false,
);

Any of the above

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How does the Column widget display its children ?

Displays its children in a vertical array.

Displays its children in a horizontal array.

Both

None