Wednesday, November 13, 2019


2004
1.      A.  True or false:-
1.      The part of the computer that executes program instruction known as memory.- False
2.       Daisywheel  printers can prit graphics.- False
3.      Trackball is another pointing device.- True
4.      Word is the product of microprocessor.- false
5.      Spreadsheet package have capabilities to create graphics & charts.- True
        B.     Fill in the blanks:-
1.      The 2nd generation computer contained transistors in place of vaccum tubes.
2.      Super computers aim  to highly complex problems which required reasonable intellingence & expertise when solved by people.
3.      CPU stands for Central Processing Unit.
4.      MICR stands for Magnetic Ink Character Recogination.
5.      ROM is a memory chip on which program can stored.
6.      The input device that enables you to enter drawing & sketches into a computer is Digitizing Tablet.
7.      An example of non-impact printer is Laser Printer
8.      Translator is a program that translates sources code into object code.
9.      Viruses that attach themselves to other programs known as file infector.
10.   To create form letter , envelope & labels you can use the Mail Mrge feature.
2005
1.      A. State true or false:-
1.      The two parts of CPU are control unit and memory unit.-True
2.      Magnetic tapes are example of  Random Access Media.- False
3.      Light pen is an input device.- True
4.      Assembly language is machine dependent .- True
5.      Assembly language is machine dependent.- True
6.      A worm is a program that replicates itself.-True
B. Fill in the blanks:-
1. The name of 1st digital computer is UNIVAC 1 computer.
2. A device that controls the movement of the cursor or pointer is mouse.
3. An example of impact printer is Dot Matrix.
4. Indent is the feature that causes the word processor to force all text to get within the defined margin.
5. In the spreadsheet instersection of row & column is called a Cell.
6. The RISC architecture has become the standard for modern computer system.
7. All formula in MS-Excel begins with =sign.
8. EPROM stands for Erasable Programmable Read Only Memory.
9. Power point is an application  software .
10. Pascal and COBOL are high level languages.



Objective question with solution of previous years
PAPER-I
2003
1.    A. State true or false:-
1.     Internal  commands are stored  on the disk in the form of files.   False
2.     The CLS command in DOS is used to clear the contents of a data base file.            False
3.     Dialog box is a tool to store files.                             False
4.     The term used to reverse last action is called as undo in windows.                      True
5.     In order to close document in MS-word click on the menu & click on close button.           True
            B. Fill in the blanks:-
1.     A file is a collection of related records treated as a unit in DOS.
2.     One who designs , writes, tests, & and maintains computer program is called as programmer
3.     A list of options displayed on screen from which you can select a particular function or command is called menu.
4.     Versatility  is a capability  of a computer to perform multiple operations at the same time.
5.     You can delete text one character at a time using del key in MS-word.
C.  Matching columns:-
1.     To find the current  date use the command –C:\> DATE
2.     The command to clear  screen in DOS is – C:\>CLS.
3.     The  screen background and main areas of windows where you can open and manage files and programs-Desktop
4.     A symbol that designates the positions on the screen where the text will be inserted or deleted in windows-Cursor



T.D.C.Part-I(Practical)
Time:4 Hrs.                                                                                                                 Full Marks:50
The practical examination will be held on the basic of question papers set and supplied by the university.
The student will maintain a regular record of practical carried out during the academic sessions which should be verified and checked regularly by the Prof-in-charge of the computer Lab. This record will be presented at the time of university Examination  and will be evaluated by the external examiners. It will carry 10 marks.
 The external examiner will conduct the viva-voce examination of the students and it will also carry 10 marks. The student will be assigned one practical question to be carried out in the laboratory  in the allotted time. This practical work  will be evaluated by the external examiners and this part will carry 30 marks.
The practical examinations will be related to the following topics:
1.     DOS and Advanced DOS.
2.     MS-Office
3.     Programming in C

Thursday, November 7, 2019

Write a program to print the fibonacci series for given "N" value.
#include<stdio.h>
#include<conio.h>
void main()
{
int n,t1=0,t2=1,next;
clrscr();
printf("enterthe no");
scanf("%d",&n);
printf("\n\n7%d%d",t1,t2);
 next=t1+t2;
 while(next<=n){
 printf("\n%d",next);

t1=t2;
t2=next;
next=t1+t2;

}
getch();

}

Monday, November 4, 2019

Write a program to print different data types in "C"  and their ranges.
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
printf("size of int = %d",sizeof(int));
printf("\nsize of float=%d",sizeof(float));
printf("\nsize of char=%d",sizeof(char));
getch();
}

Thursday, October 31, 2019

What is c?

- C is a programming language developed at AT & T's Bell Laboratories of USA in 1972 by Dennis Ritchie.
- Any programming language can be divided into two categories
 * Problem oriented (High Level Language)
* Machine oriented (Low Level Language )
- But  C is considered as Middle Level Language 

2004 1.       A.   True or false:- 1.       The part of the computer that executes program instruction known as memory.- False 2.  ...