Home > Basic Programming > Quizzes > Introduction to Programming Fundamentals Test
Introduction to Programming Fundamentals Test
Fast practice, instant feedback. Timer auto-submits when time’s up.
Avg score: 25% Most missed: “What is an example of a 'Scripting' Language?”
Introduction to Programming Fundamentals Test
Time left 00:00
25 Questions

1. What does ASCII stand for?
2. What is the control variable of a loop called?
3. Which of the following is NOT an interpretted language?
4. Which of the following is a programming language?
5. How do you print 'Hello World' in C?
6. What does '||' mean in Java?
7. What is the largest value that be stored in a byte?
8. Which of the following is NOT a main computer system component?
9. ________ is an error in the design of the code; the code does not run as expected.
10. C++ is:
11. Given the following code logic - when will statement 1 be executed? If (condition) then statement 1 else statement 2 end if
12. For a compiled language - when do syntax errors occur?
13. What are 'Nested' loops?
14. What type of loop executes at least once before checking the condition?
15. ______ is a collection of data items of the same size and type that can be selected by indices computed at run-time.
16. What is debugging a program?
17. What is a GUI?
18. In C - when a pointer is incremented - it actually jumps the number of memory address...
19. ________ passes a direct reference of a variable to the procedure and the procedure can change the value of the calling program's variable.
20. What is Programming?
21. When are 'While' loops used?
22. What does '!=' mean in Java?
23. What is an Array?
24. ______ is an identifier whose value cannot be altered by the program during execution.
25. Given a = true - b = false; what is the value returned by (a and b)?