Posts

Showing posts from September, 2016

Assignment on Looping Constructs

Assignment on control structures Q. 1 Identify the following in the loops:          I.                           Loop control variable        II.                        Initialization expression      III.                      Update expression      IV.                        Test expression a.              a.    for (int p=4; p<9; p++)          cout<<p; b.        b .    int  x=9; do {  cout<<x++; }while(x<15); c.         C.      int m=6; while(m<15) { cout<< m; m++; ...

Assignment for Half Yearly Examination

Assignment for half yearly preparation Class XI Q.1.a) What is the difference between automatic type conversion and type casting ?Give example to explain both.                                                                                                                                           ...