FLUTTER Widgets MCQ
Flutter MCQ(1) Which of the following widget is used to accept user data?
A) TextField
B) Text
C) Input
D) Receiver
Explanation
TextField is the user input and visible widget this is to accept user data. We can also apply different styles using other widget to make it attractive and for better user experience.
(2) To design the layout of flutter application which type of widgets are used?
A) Visible
B) Invisible
C) Grouped
D) Coupled
Explanation
Invisible widgets are the layout widgets that are sometime used for grouping other widgets or apply some kind of layout formats on other widgets such as padding, alignments and transformations?
(3) Which one of the following is a multi child widget?
A) Padding
B) Align
C) Row
D) Center
Explanation
Row widget is used to group multiple widgets in a row form, This can take array of other widgets as its children property.
(4) Which of the following type of widget is used to receive and display the user data?
A) Visible
B) Invisible
C) Both
D) Typed
Explanation
The visible widgets are used for the acceptance and display of data in flutter application.
(5) Which one of the following is an example of visible widget in flutter?
A) Row
B) Icon
C) Column
D) Padding
Explanation
Icon is the visible widget of flutter application as it contains the icon data.
(6) How many type of flutter widgets with respect to visibilty?
A) 2
B) 3
C) 8
D) 4
Explanation
There are only two types of widgets in flutter according to the visibility feature. These are visible and invisible widgets.