Skip to main content

MAD Imp Question

MAD Imp Question - KTC


CH 1 >


3] Explain Android manifest in detail. 

1] Explain spinner in detail. 

1] Explain alterdialog boxs of Android. 

1] How to create dynamic radio button in Android? Explain with example. 

1] Explain alertdialog box of android in detail. 

1] Explain dalvik virtual machine in detail. 


CH 2 >


1] Explain listview in detail. 

1] Explain progressbar and spinner in Android. 

1] Explain imageslider in detail. 

2] Explain datepicker and timepicker in detail. 

2] Explain Autocompletetextview and textwatcher in detail. 

1] Explain searchview using listview. 


CH 3 >


1] Explain dart function in detail. 

1] Explain feature of dart in detail. 

2] Explain datatype of dart. 

1] Explain decision making statement of dart. 

1] Explain iterative Statment in dart. 

1] Explain operators in dart. 


CH 4 >


2] Explain features of flutter in detail. 

1] Explain stateful and stateless widget in detail. 

2] Explain visible and invisible widget of flutter. 

2] Explain architecture of flutter in detail. 

1] Explain any two multichild widget in detail. 


CH 5 >


1] Explain flutter charts in detail. 

2] Explain any three flutter widget in detail. 

1] Write a short note on flutter form. 

Comments

Popular posts from this blog

C++ programming language

                c++ is a general programming language and is widely used nowadays for competitive programming. It has imperative, object-oriented and generic programming features.C++ runs on lots of platforms like Windows, Linux, Unix, Mac etc.   ❖❖  C++ with oops ❖❖

7. Switch Statement in c++

 ❖ C++ switch Statement :-                Consider a situation in which, only one block of code needs to be executed among many blocks. This type of situation can be handled using nested if...else statement but, the better way of handling this type of problem is using switch...case statement.  Syntax of switch:-      Switch(expression) {            Case value1 : statement1;                       Break;             Case value2 : statement2;                      Break;             Default : default statements;  }               The expression is either an integer or a character in above syntax. If the expression matches constant in case, the relevant codes a...

3. Input /output in c++

  ➢   Input/ Output in C++ :-        C++ comes with libraries which provides us many ways for performing input and output. In C++.        input and output is performed in the form of sequence of bytes or more commonly known as  streams. ● Input Stream: If the direction of flow of bytes is from device(for example: Keyboard) to the main memory then this process is called input. ● Output Stream: If the direction of flow of bytes is opposite, i.e. from main memory to device(display screen ) then this process is called output. ● Header files available in C++ for Input – Output operation are: • iostream: iostream stands for standard input output stream. This header file contains definitions to objects like cin, cout, cerr etc. • fstream: This header file mainly describes the file stream. This header file is used to handle the data being read from a file as input or data being written into the file as output.       ...