Git Prototype Paper 1
Git Prototype Paper 1
3. Which of the following was conceived by Charles Babbage that embodies the key
features of modem computers
(1) analytic engine (2) analytic computer
(3) difference engine (4) tabulating machine
7. A network which has a host computer that is responsible for managing the LAN is
called
(1) a bus network. (2) a ring network.
(3) a star network. (4) a peer-to-peer network.
10. What is the MSB and LSB of the binary equivalent of 127?
(1) l and l (2) l and O (3) O and l (4) O and O
18. What is the next phase after the system analysis phase in the SDLC in linear
model?
(1) feasibility study (2) system development
(3) system design (4) testing
19. Out of the following which methods would be used for gathering information /
Data to develop an informatior system?
A. on site observation B. by questionnaires
C. interviews D. feasibility study
(1) A, B and C (2) B, C and D (3) C, D and A (4) B, D and A
21. The type of information system focused at the operational level of a business
organization is called
(1) Management Information System (2) Expert System
(3) Decision Support System (4) Transaction Processing
System
25. Write a Pascal statement to display the text string “Valve open”, if the variable
waterflow is equal to 1, AND the variable oiitpuh’alue is equal to 0.
(1) if (waterflow = 1) AND (outputvalue = 0) then writeln (‘Valve open’);
(2) if (waterflow = 1) OR (outputvalue = 0) then writeln (‘Valve open’);
(3) if (waterflow = 0) AND (outputvalue = 1) then writeln (‘Valve open’);
(4) if (waterflow = 1) AND (outputvalue = 0) then writeln (‘Valve closed’);
26. Write a Pascal statement which declares a constant called MAXSIZE with a value
of 80.
(1) constant MAXSIZE — 80; (2) constant MAXSIZE - 80
(3) const MAXSIZE =W; (4) const MAXSIZE 80;
28. Write a Pascal statement which compares the integer variable sum to the constant
value 10, and if it is the sami prints the string “Good guess”
(1) if sum = 10 then writeln (“Good guess”);
(2) if (sum = = 10) then wnteln (‘Good guess’);
(3) if (sum = = 10) writeln (‘Good guess’);
(4) if sum =10 then writeln (‘Good guess’);
30. Define an enumerated data type called chair, which has the set of values lounge,
deck, executive
(1) chair = (lounge, deck, executive);
(2) type chair = (lounge, deck, executive);
(3) var chair = (lounge, deck, executive);
(4) type chair := (lounge, deck, executive);
31. Write a Pascal statement to define an array called numbers, which is an integral
array with elements ranging from 1 to 20.
(1) type numbers = ARRAY [l..20] of int;
(2) type numbers = ARRAY [1..20] of integer;
(3) type numbers = ARRAY [l..20] of integer;
(4) var numbers = ARRAY [0..19] of int;
33. When you make changes to the content or words on a word processed page, it is
called
(1) inserting (2) formatting (3) editing (4) spell
checking
• Answer the questions 34 and 35 using a spread sheet package familiar to you.
34. Cell D6 contains a
(1) label. (2) value. (3) formula. (4) heading
36. A database is a
(1) collection of records either on paper or on computer.
(2) program for drawing pictures.
(3) program for playing music.
(4) program to edit pictures.