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 ❖❖

Pratical -206 paper solution -3

Full course of c++ programming language Click here > C++ programming language Q-1 [A] Write a c program to create structure of employee with members Empid, EmpName, Qualification and EmpSalary by taking input of 5 employees display the employee whose qualification is "MBA" and salary greater than 20000 . #include <stdio.h> #include <conio.h> #include <string.h> struct Employee {     int Empid, EmpSalary;     char EmpName[50];     char Qualification[50]; }; Void main() {     struct Employee emp[5];     int i;     for (i = 0; i < 5; i++)     {         printf("Enter employee ID: ");         scanf("%d", &emp[i].Empid);         printf("Enter employee name: ");         scanf("%s", emp[i].EmpName);         printf("Enter employee qualification: ");         scanf("%s", emp[i].Quali...

9. Jumps Statement in c++

➢ Jumps in Loops:- ➢ C++ break and continue Statement:-                     There are two statements (break; and continue ;) built in C++ programming to alter the normal flow of program.                     Loops are used to perform repetitive task until test expression is false but sometimes it is desirable to skip some statement/s inside loop or terminate the loop immediately with checking test condition. On these type of scenarios, continue; statement and break; statement is used respectively. The break; statement is also used to terminate switch statement. 1) break Statement :-                       The break; statement terminates the loop(for, while and do..while loop) and switch statement immediately when it appears . Syntax of break :- break;              ...