Day2

Day2

Professional Development

9 Qs

quiz-placeholder

Similar activities

Comprehension Activity_Android App Development

Comprehension Activity_Android App Development

Professional Development

8 Qs

Android Fundamentals - Day 2 : Android Basics

Android Fundamentals - Day 2 : Android Basics

University - Professional Development

10 Qs

Mastering KineMaster

Mastering KineMaster

Professional Development

10 Qs

Dart e Flutter

Dart e Flutter

Professional Development

9 Qs

Hybrid Web Quiz

Hybrid Web Quiz

University - Professional Development

12 Qs

Flutter II

Flutter II

Professional Development

5 Qs

Mit App invertor

Mit App invertor

Professional Development

12 Qs

DECI - Week 11 - round

DECI - Week 11 - round

Professional Development

10 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