Computer Exam Paper Board
Computer Exam Paper Board
Page 1
(A) : (B) ; (C) , (D) /
Ans : ,
10. _____value of valign attribute aligns the content with the bottom of the cell. 49.
(A) down (B) ground (C) bottom (D) dn
Ans : bottom
11. ________menu contains the commands to operate the entire document such as
creating a new document, saving file, printing, print preview, etc.
(A) File (B) Edit (C) Window (D) Help
Ans : File
12. Which of the following menu is used for adding or removing elements of the
user interface, page break preview, etc.?
(A) Edit (B) Insert (C) Format (D) View
Ans : View
13. Which of the following display content of an active cell ?
(A) Title bar (B) Status bar (C) Menu bar (D) Formula bar
Ans : 3
16. Which of the following menu is used to save and close Calic document and ope
an extating Calc document ?
(A) file (B) Window (C) Data (D) View
Ans : file
17. _________ presents facilities for entering and editing formula within a cell.
(A) Formulatoolbar (B) Formatting toolbar
(C) Standard toolbar (D) All of the given
Ans : Formulatoolbar
18. ______bar shows name of the program.
(A) Formatting (B) Title (C) Tool (D) Formula
Ans : Title
Page 2
19. If we move a cell containing a formula having reference to another cell in the
worksheet, what will happen to the cell numbers used in formula ?
(A) The cell row and column sare changed at destination.
(B) The cell row numbers are changed at destination.
(C) The cell column numbers are changed at destination.
(D) Nothing will be changed.
Ans : The cell row and column sare changed at destination.
20. Which menu and options are used to open Calc program ?
(A) Applications → Calc
(B) Applications→ Office OpenOffice.org spreadsheet
(C) Applications→ OpenOffice.org Calc
(D) Applications→ Office →→ Calc
Ans : Format
23. Which of the following is/are relative cell address ?
(A) =B2*C2 (B) B2 C 2 (C) AI + 1
B (D) Both B and C
Ans : =B2*C2
24. The output of =ROUNDUP (45.345: 1) will be______.
(A) 45 (B) 45.4 (C) 45.5 (D) 46
Ans : 45.4
25. The _______returns the value of natural logarithm
(A) LN ( ) (B) LOG10( ) (C) EXP ( ) (D) ABS ( )
Ans : LN ( )
26. Which of the following function / s takes two argments ?
(A) TRUNCY ( ) (B) ROUND ( )
(C) ROUNDDOWN ( ), ROUNDUP ( ) (D) All of the given
Page 3
(C) Evaluate the situation (D) All of the given
Ans : All of the given
28. To fix the column or row in a data range to make it absolute which symbol is
used ?
(A) # (B) $ (C) & (D) %
Ans : $
29. _________ of the following shows the chart and its elements.
(A) Chart area (B) Chart wall (C) Chart floor (D) Data area as
Ans : Edit
32. An arrow symbol in flow chart is used to show _______.
(A) the flow of an action (B) the sequence of action
(C) the start of actions (D) the completion of an action
Ans : h
35. C language has been standardized by_______.
(A) ASCII (B) ANSI (C) ANCI (D) All of the given
Ans : ANSI
36. Which of the following value cannot be stored in an integer identifier?
(A) A-99 (B) 99 (C) 999 (D) 99.99
Ans : 99.99
37. The data type that cannot store any value is defined using _______keyword.
Page 4
(A) A null (B) void (C) blank (D) empty
Ans : void
38. In how many ways a variable can be given an input?
(A) 2 (B) 3 (C) 4 (D) 5
Ans : 2
39. When _______function is encountered, the program will wait for the user to press
enter key after giving the required character as input.
(A) getc ( ) (B) getchar ( ) (C) gets ( ) (D) getch ( )
Ans : getchar ( )
40. Each string in C ends with
(A) . (B) \0 (C) \t (D) \n
Ans : \0
41. The ______sign in C is known as address of operator.
(A) & (B) ! (C) # (D) >
Ans : &
42. In scanf ( ) statement each formal must be preceded by_______ sign.
(A) / (B) % (C) ! (D) % s
Ans : %
43. When the statement of if statement are enclosed in ________ they are know
compound statements
(A) ( ) (B) { } (C) [ ] (D) < >
Ans : [ ]
44. The argument that are to be used with switch should be….
(A) vartable of type integer or (B) an expression of type Integer or
character character
(C) A or B (D) none of the given
Ans : A or B
45. ________is used to perform some process when test expression is evaluated to
true and some other process if test expression is evaluated to false.
(A) if... else (B) Neste If (C) If (D) else... If ladder
Ans : if... else
46. In switch statement. switch. case and ______words are used.
(A) A break (B) default (C) both A and B (D) If... else
Ans : both A and B
47. After each statement block in switch_______ statement signals the end of case
causing the exit from switch statement.
(A) default (B) break (C) } (D) :
Ans : break
48. There is no need to use braces around the statement block of_______ statements.
(A) switch (B) if (C) cise (D) Nested If
Ans : switch
49. In _______loop, the test expression is checked after executing body of loop.
(A) for (B) while (C) do... while (D) both B and C
Ans : do... while
50. All programming languages offer _______ structure allowing programmers to
execute a statement or group of statements multiple times.
(A) loop control (B) switch (C) decision making (D) A or B