First Semester
MIT - 101
MIT - 102
MIT - 103
MIT - 104
MIT - 105
MIT - 106
MIT - 107
MIT - 108
Second Semester
MIT - 201
MIT - 202
MIT - 203
MIT - 204
MIT - 205
MIT - 206
MIT - 207
Third Semester
MIT - 301
MIT - 302
MIT - 303
MIT - 304
MIT - 305
MIT - 306
MIT - 307
MIT - 308
Fourth Semester
|
Time: 3hrs Max. Marks: 75 Attempt any two questions one from each Section. All questions carry equal marks
SECTION A
- Write a C++ program to draw a polygon and fill it using flood and boundary fill.
- Write a C++ program to draw a fan, which rotates with different speeds.
- Write a C++ program to perfom the following 2-D transformations:
- Translation
- Scalling
- Rotation
- Reflection
- Shearing
- Menu driven with full formatting
- Write a menu driven C++ program to show a clipping using Cohen-Sutherland line clipping algorithm
- Write a C++ program to draw an analog clock with full formating. (The clock mus show system time).
- Write a C++ program to show Sutherland-Hodgeman polygon clipping Algorithm. (Use DDA algorithm to draw polygon sides).
- Write a C++ program to show a continuously rotating wheel. (Use midpoint circle algorithm & any line algorithm).
- Write a menu driven C++ program ro draw the following: -
- Various line styles (dashed, dotted, dash-dotted) using Bresenham algorithm.
- Circle using midpoint algorithm
- Write a C++ program to draw a circle using:
- Polar Co-ordinates
- Cartesian Co-ordinates
- Mid-point Algorithm
- Write a C++ program to draw an ellipse using:
- Polar Co-ordinates
- Cartesian Co-ordinates
- Mid-point Algorithm
- Write a C++ program to draw a hut usig line algorithm and also fill it using polygon-filling algorithm.
- Write a menu driven C++ program to make the following charts:
- 3-D bar (filled) graph
- Frequency Polygon Chart
- Write a C++ program to show a continuously moving pendulum.
SECTION B
- Write a Java Program to draw a hut on applet.
- Write a Java Program to implement stack.
- Write a Java Program to implement queue
- Write a Java Program to sort series of numbers using bubble sort.
- Write a Java Program to draw a face on the applet along with a Welcome Message.
- Write a Java Program to perform the following strig manipulations:
- Extract a substring
- Change case of a string
- Replace a particular character in a string with a specified character.
- Write a Program to carry out an online exam evaluation taking any random 5 questions. Evaluate it and display the result as "Pass" or "Fail". (Use ASP).
- Design a form for employee with the fields 'EID', 'ENAME', 'ESAL'. Submit the data in the database. (Use ASP).
- Write a Program to implement seacrh engine. (Use ASP).
- Write a Java Program to print the following pattern on the applet:
- Write a Program to perform the following operations: (Use ASP).
- Addition.
- Prime number generation.
- Factorial
- Write a Java Program to print the Fibonacci sries with and without Recursion.
- Write suitable queries for the following questions 1 to 10.
- Create a table STUDENT with the following fields:
Class, Rollno(Primary Key), Name, Total, Spec.
- Insert the following values into it:
| CLASS | ROLLNO | NAME | TOTAL | SPEC |
| MCA | 111 | Abdul | 585 | AI |
| MCA | 231 | Fazal | 600 | Graphics |
| MIT | 141 | Meera | 782 | AI |
| MCA | 151 | Radha | 881 | SAP |
| MIT | 232 | Ajay | 761 | AI |
| MIT | 161 | Gayatri | 400 | SAP |
- Create a table STAT with fields Class, Avg and Sum. Populate it with the average marks and total marks obtained in each class.
- Display all MIT students whose total is greater than 300 and the second letter of whose names is 'a'.
- Display all records whose totals are greater than 600 but less than 900, and their specialization is 'AI' or 'Graphics'; in the decreasing order of their totals.
- Create a table STUD and populate it with all records from the STUDENT table whose totals are greater than 600.
Now display all records from the tables STUDENT and STUD. (Allow Duplicates).
- Change all records with 'AI' specialization to 'Bioinformatics'.
- Delete all records with total less than the total of the student with Rollno 111.
- Add the following fields in the STUDENT table:
Pass(Boolean), DOB(Date), Remark(Memo). Now remove the 'Class' field from the STUDENT table.
- Remove the table STAT.
|