Vous êtes sur la page 1sur 3

CN: ____ NAME: ______________________________ 9 - _________________ SCORE:_______________

Directions: Choose the best answer.


1. A user-friendly programming Language.
A. Photoshop B. Visual Basic Studio C. Turbo Pascal D. Java
2. Words, which have special meanings in PASCAL that can never be used as identifiers
A. Reserved Word B. Real Variables C. Identifiers D. Real
3. Consist of a letter or an underscore followed by any combination of letters, digit or underscores.
A. Real B. Identifiers C. Letters D. Unary Minus
4. Symbols, which represents an operation to be performed.
A. Expression B. Assign. Operator C. Operators D. Real Variables
5. Used to create Boolean expressions, which are true or false.
A. Logical Operator B. Identifiers C. Real D. Reserved Opt.
6. Use symbols (: =) and assigns to the variables on the left the value on the right
A. Real Variables B. Logical Operator C. Expression D. Assignment Operator
7. Sequence of terms separated by operators.
A. Real B. Expression C. Reserved Words D. Identifiers
8. Constant that will be written in standard decimal form.
A. Logical Oprt. B. Reserved Numbers C. Real D. Standard No. Function
9. Accepts either a real value or an integer value.
A. Real Variables B. Standard Number C. Variables D. Identifiers
10. Rules that compute a number based on another number.
A. Reserved No. B. Assignment Oprt. C. Real No. D. Standard No. Function
11. The set of the rules for constructing a valid Pascal.
A. Turbo Pascal mode C. Turbo Pascal Syntax
B. Turbo Pascal Program D. All of the above
12. It consists of a program heading, the data section and the code section.
A. Turbo Pascal mode C. Turbo Pascal Syntax
B. Turbo Pascal Program D. All of the above
13. The processor is composed of the following compoents:
A. Control Unit, Locators, Memory Registers B. Stored Program, Expression, Bus Registers
C. Output, Input, Memory D. Control Unit, Arithmentic Unit, Register
14. It consists of user-defined label names that are separated by commas and terminate with a semicolon.
A. Label B. Label Declaration C. Label Part D. All of the above
15. Part where you can see the reserved word Var. followed by the user-defined var identifiers.
A. Variables B. Memory C. Var. Declaration Part D. All of the above
16. The lowest level in the program and the foundation upon which you can build more layers.
A. Program block B. Turbo Pascal C. Program D. Basic
17. Set of the values together with a set of operations defines on these values.
A. Variables B. Program C. Data Types D. All of the above
18. Largest Positive integer
A. Maxint B. Integer C. Shortint D. Byte
19. The maximum length of a byte.
A. 265 B. 255 C. 245 D. 275
20. Which of the following are part(s) of a computer system?
A. User B. Performer C. Software D. Manager
21. Identify the statement that characterized secondary memory.
A. It provides the tool for debugging a program.
B. It is external to the main body of the computer.
C. It compiles a program.
D. Programs and data can be stored for long term.
22. Which of the following describe a character user interface (CHUI)?
A. Such interfaces are easy to use because they are graphical in nature.
B. CHUI typically consumes more computer resources.
C. Its interfaces greatly reduces erroneous input in the system.
D. CHUI programs are relatively faster because they are smaller.
23. Select the phases or stages that are part of SDLC.
A. System Study B. Feasibility Study C. Testing D. System Design
24. Identify the statements that represent the sequence of SDLC stages.
A. System Study, System Design, Coding, Testing, Maintenance
B. System Design, Coding, Implementation. Testing
C. Coding, Testing, Implementation, Maintenance
D. System Analysis, System Study, System Design
25. This phase helps in correcting errors in the system as well as incorporating changes and suggestions collected
through use feedback.
A. System Study B. Implementation C. Maintenance D. System Analysis
26. A detailed list of user requirement is an example of what SDLC phase?
A. System Study B .System Design C. System Analysis D. System Software
27. Which of the following is not a valid data type in C?
A. int B. float C. char D. string
28. This logical operation result to True only when both conditions are true.
A. AND B. NOT C. OR D. MOD
29. Which of the following is not numeric data?
A. 123.45 B. -25 C. 456 D. 34##
30. Which of the following is a keyword in C
A. White B. float C. main D. integer
31. The ______ menu displays the ten different submenus commonly used in C in creating programs.
A. Run B. Compile C. Options D. File
32. This menu is used to execute the program. A.
Project B. Run C. Debug D. Break/Watch
33. When you execute a line of code or a block of code multiple times it is an example of __. A.
Repeat B. Doing a lot of nothing C. Repetition D. none of the above
34. It is a set of rules that are used in programming software. A.
Hardware B. Program C. Syntax D. Software
35. It is a systematic process of finding and reducing the number of defects in a program. A.
Syntax B. Debugging C. Software D. Hardware
36. It involves problem identification. A.
Coding B. Implementation C. System Study D. System Software
37. This is the phase where the system is installed in the actual environment after developing the program. A.
Implementation B. System Study C. System Software D. Coding
38. It is crucial part of SDLC that ensures the accuracy and effectiveness of the software. A. Testing
B. Coding C. Implementation D. System Study
39. It is collection of components that work together to achieve a desired goal. A.
System Study B. Feasibility Study C. System Software D. UML
40. What are the three basic flowchart structure?
A. Sequence, hardware, program C. Coding, implementation, system design
B. Looping, software, flowchart D. Decision, Looping, sequence
41. The first stem in solving a problem is ______.
A. Gathering the relevant information c. C. Arriving at the result B.
Studying the problem in detail D. Progressing the information
42. It is pictorial representation of an algorithm. A.
Algorithm B. Boolean expression C. Flowchart D. Dry run
43. It is used to check whether or not the logic of a flowchart yields correct result. A.
Algorithm B. Boolean expression C. Flowchart D. Dry run
44. It is an expression that evaluates to the values of the Boolean Data Type: True or False
A. Algorithm B. Boolean expression C. Flowchart D. Dry run
45. It is a finite list of well-defined instructions for accomplishing a task that has a given initial state and will terminate in
defined end-state. A. Algorithm
B. Boolean expression C. Flowchart D. Dry run
46. It is a variable used to control the iterations of a loop. A.
Counter B. Increment C. Repetition D. Decrement
47. It increases the value of a variable in the body of a program. A.
Counter B. Increment C. Repetition D. Decrement
48. A variable is set a value before it is used in a program.
A. Pre-test loop B. Nested for Loop C. Increment Clause D. Initialization
49. The loop tests a condition prior to running a block of code.
A. Pre-test loop B. Nested for Loop C. Increment Clause D. Initialization
50. One loop is placed with another repeating statement. A. Pre-
test loop B. Nested for Loop C. Increment Clause D. Initialization
51. This is used to hold accepted values in a program.
A. printf(); B. puts(); C. gets(); D. putchar();
52. The \n is used for what purpose in the C program? A. It is
used to display the output on the next line. C. It holds a value. B. Its function is
to display strings. D. End of the program.
53. Nadine used Photoshop software to edit her picture. What types of user interface the Photoshop software?
A. Graphical User Interface B. Character Based User Interface
C. Mouse Based User Inerface D. None of the Above
54. It is used to hold an action when a Boolean expression in a decision is true.
A. Control B. Copy C. If clause D. Else clause
55. Gloria wants to change her code into machine code what program she need to use?
A. Compiler B. Linker C. Executable D.Object File
56. Which of the following are NOT a Console Program?
A. Visual Studo C++ B. Code Block C. Dev C++ D. Clang
57. Lea need to use a preprocessor to include the <iostream> header in her program. What symbol she need to use?
A. . (Period) B. () Parenthesis C. # (No. Sign) D. ; (Semi-Colon)
58. Which of the following is valid Identifier?
A. enum B. i C. virtual D. private
59. Sarah wants to informs the compiler the size to reserve in memory for the variable and to easily interpret it. What
process she need to do to her program?
A. Declaring Variables B. Declaring Valid Identifier C. Declaring Memory D. None of the Above
60. Kobe declares that his variable in his program e = 0. What process he use?
A. Declaring Identifier B. Initialization C. Declaring Variables D. None of the Above
61. Which a following is NOT proper way of Declaring Variables?
A. int a; C. int Str mynumber;
B. int a, b, c; D. int a; int b; int c;
62. Which a following is NOT proper way of Declaring Initialization?
A. int x = 0; C. int x <0>;
B. int x (0); D. int x {0};
63. C++ statement, use a single instruction, it is terminated with a __________.
A. Semicolon (;)B. Period (.) C. line break( ) D. No. Sign (#)
64. It is type of Header File that has a compiler it is called _____.
A. Header B. User-Header File C. System-User File D. System Header File
65. Joshua wants to insert a circle button in his program. What type of button he need to used?
A. List B. Check box C. Radio D. Split
66. It represent the Windows improvement bar control.
A. Progress Bar B. Splitter Bar C. Development Bar D. Control
67. Lea wants to insert a date in her program. What control she need to used?
A. DateGrid B. ComboBox C. ListBox D. DateTimePicker
68. Grace wants to put a Horizontal Scroll bar in her program. What control she need to used?
A.VScrollbar B. HScrollbar C.HorizontSBar D.VerSBar
69. It represents a collection of images typically used by toolbars.
A. BacgroundList B.ListBox C. ImageList D. Panel
70. An enumeration that specifies the appearance of a button. Members include Inactive, Pushed, and Normal.
A. Button B. Cursor C. ButtonState D. ButtonApp
71. Displays a standard dialog box to let the user pick a color.
A. ColorDialog B.ColorPick C. ColorGrid D.DialogProp.
72. A control that can contain other controls.
A. Form B. Panel C. MessageBox D.Clipboard
73. It represents a cursor.
A. Mouse B. Button C.Click D. Cursor
74. It displays a message box.
A. DialogBox B.StatusBox C. InfoBox D. MessageBox
75. ________ is a powerful feature of the Microsoft Windows .NET Framework that provides a set of classes for building
GUI applications.
A. Forms B. Windows Form C. Toolbox D. C++

Vous aimerez peut-être aussi