wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Flutter Basics

Total questions: 15

Worksheet time: 6mins

Name
Class
Date
1.

SDK stands for

a)

Standard Development Kit

b)

Software Dependent Kit

c)

Standard Dependent Kit

d)

Software Development Kit

2.

Flutter allows you to instantly reflect small changes in the app as you edit the code base. This is called -

a)

Hot Restart

b)

Hot Reload

c)

Hot Quickstart

d)

Hot Rerun

3.

Flutter uses which programming language?

a)

Dart

b)

Python

c)

Java

d)

Kotlin

4.

Is Dart Object-Oriented?

a)

Yes

b)

No

5.

What are the building blocks of a Flutter Application?

a)

Widgets

b)

Containers

c)

Buttons

d)

Text

6.

Flutter Apps can run on

a)

Windows

b)

Linux

c)

Android

d)

All of these

7.

What is the Widget used to call an App bar?

a)

AppBar()

b)

App()

c)

TopBar()

d)

Header()

8.

The backbone widget of a Flutter App is -

a)

Scaffold()

b)

Container()

c)

Child()

d)

Header()

9.

How do you add an external package to your Flutter project?

a)

Import the package directly into the dart file

b)

Add package name and version in pubspec.yaml

c)

Use the package's function in the code.

d)

Add package name to dart file.

10.

Where can you find external packages?

a)

pub.dev

b)

pub.packages

c)

pub.help

d)

packages.pub

11.

Which package helps you to get the User's location?

a)

Geolocator

b)

GpsLocator

c)

GoogleGPS

d)

LocateLocation

12.

Which Flutter command integrates external packages to your Flutter project?

a)

flutter pub get

b)

flutter pub

c)

flutter get packages

d)

flutter run

13.

Which one is correct?

a)

void foo1() async{

int x = await foo2();

}

b)

void foo1() await{

int x = async foo2();

}

c)

void foo1() async{

int x = async foo2();

}

d)

void foo1() await{

int x = await foo2();

}

14.

What do you need to fetch results from an API ?

a)

API Key

b)

API link

c)

http connection

d)

All of these

15.

What kind of response does an API return ?

a)

{ "Ans" : "this" }

b)

{ Ans : "this" }

c)

{ "Ans" : this }

d)

{ "Ans" = "this" }