FLUT-TERRIFIC -  A flutterful quizathon

FLUT-TERRIFIC - A flutterful quizathon

University

16 Qs

quiz-placeholder

Similar activities

Flutter 1

Flutter 1

University

17 Qs

หลักการพัฒนาโปรแกรมบนอุปกรณ์พกพา

หลักการพัฒนาโปรแกรมบนอุปกรณ์พกพา

10th Grade - University

20 Qs

AI 900 - pt 13

AI 900 - pt 13

University

12 Qs

Kuiz Frog Vle Guru

Kuiz Frog Vle Guru

KG - University

15 Qs

FLUTTER

FLUTTER

University - Professional Development

20 Qs

Flutter Basic - Fundamental

Flutter Basic - Fundamental

University

20 Qs

Mobile App Develpoment

Mobile App Develpoment

University

15 Qs

Programación de apps móviles

Programación de apps móviles

University

15 Qs

FLUT-TERRIFIC -  A flutterful quizathon

FLUT-TERRIFIC - A flutterful quizathon

Assessment

Quiz

Computers

University

Hard

Created by

Alnas Kabeer

Used 2+ times

FREE Resource

16 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these is true about Flutter?

Flutter is a JavaScript Library created by Meta for creating cross platform applications

Flutter is a proprietary dart framework developed and maintained by Google solely for creating Android applications.

FLUTTER stand for "Framework for Lightweight and Ultrafast Transformation, Testing, and Easy Refactoring"

Flutter is an open-source framework developed by the creators of Stadia that is used for developing cross-platform apps from a single codebase.

Answer explanation

Flutter is an open-source dart framework that can be used to create applications for Android, iOS, Windows, Linux, etc. from a single codebase, making it a cross-platform development framework. It was developed by Google (all hail Google!) and has a large community of developers who make libraries to expand the capabilities of flutter. And the word flutter doesn't stand for anything.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What are the two type of widgets in Flutter?

Stateless and Stateful

Mutable and Immutable

Useful and Useless

Classes and Functions

Answer explanation

A Stateless widget is a type of widget that represents parts of the user interface that don't change dynamically, such as text, images, and icons. They don't have mutable state and are lightweight and easy to understand, making them ideal for representing static UI elements.

A Stateful widget is a type of widget that represents parts of the user interface that change dynamically, such as forms and animations. It has mutable state and can be updated independently using a separate State object. They are more complex than stateless widgets but are also more versatile and used for interactive UI elements.

(and there might be some useless flutter widgets, but they aren't officially classified. soooo....)

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following commands is used to check the Flutter installation status and whether the Flutter development environment is working properly?

flutter run

flutter debug

flutter diagnose

flutter doctor

Answer explanation

Flutter doctor is a command-line tool that helps to diagnose and fix issues with the Flutter installation and configuration. When executed, the "flutter doctor" command checks the Flutter installation and provides a report of the status of the Flutter environment. It checks whether all the necessary dependencies and tools are installed, the Android and iOS development environments are properly configured, and it also gives suggestions on how to fix any issues that are detected. The "flutter doctor" command is an essential tool for any Flutter developer, as it helps to ensure that the Flutter environment is set up correctly and ready for app development.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these is false about a widget in Flutter?

A widget is a fundamental building block of the Flutter framework which is implemented using a dart class extending either a Stateless or Stateful Widget

Every element in a Flutter app is a widget, including layout elements and user interface components.

All widgets in Flutter can be dragged into the homescreen from the main app.

Widgets are organized in a tree structure called the widget tree, which determines the layout and appearance of the app.

Answer explanation

In Flutter, a widget is a fundamental building block that represents a visual element on the screen such as a button, text, image, or a layout container. Widgets can be thought of as the basic UI components of a Flutter application. They are designed to be modular, composable, and reusable, making it easy to build complex user interfaces.

Widgets in Flutter are also structured in a tree-like hierarchy, known as the widget tree. This tree represents the visual structure of the user interface, where each widget is a node in the tree, and the relationships between widgets determine the layout and appearance of the application. Each widget has its own set of properties and attributes that define its behavior and appearance.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these is a widget that can hold another widget?

BoxDecoration

Container

Text

Box

Answer explanation

Container is a widget that holds another widget. It can be used to style, position and align its child element.

BoxDecoration is used to add decoration to a Container.

Text can display a string in the app with TextStyles that can stylize the text.

Box... doesn't exist...

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is false about stateless widgets in Flutter?

hey are used to represent parts of the UI that don't change dynamically

They are immutable and lightweight

They can change their properties over time

They don't have mutable state

Answer explanation

Stateless widgets cannot change their properties over time, as they are immutable and their properties are set when the widget is created.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these widgets can be used to arrange its children widgets horizontally?

Column

Positioned

Stack

Row

Answer explanation

Row widget is used to arrange its children widgets horizontally in a linear manner.

The Column widget is used to arrange its children widgets vertically in a linear manner. The children are placed one after the other in the vertical direction.

A widget used to place children widgets on top of each other in a stack.

The Positioned widget in Flutter is used to specify the position of a child widget within a Stack widget. It's typically used in combination with the Stack widget to control the precise position of child widgets.

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?