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. ______ is a collection of data items of the same size and type that can be selected by indices computed at run-time.
2. What is Programming?
3. C++ is:
4. Which of the following is a programming language?
5. Hiding internal data from external programs or objects and allowing access to it through only publicly declared methods is known as ___________.
6. If an external object or program needs direct access to a variable in your class - you should declare it as a _______ variable.
7. What does '!=' mean in Java?
8. What is the decimal value of the binary number 101?
9. In C++ - what does the '%' operator do?
10. The compiler of the C language is written in...
11. Which of the following is the starting index of an array in C++?
12. _______ passes a copy of a variable's value to a procedure and the procedure cannot change the value of the calling program's variable.
13. What does ' = ' do?
14. What are 'Nested' loops?
15. A garbage collector does what?
16. ______ is an identifier whose value cannot be altered by the program during execution.
17. True or False? Floats include decimals
18. How many bits are in a byte?
19. Which of the following is NOT a key concept in object oriented programming?
20. What is the decimal value of the hexadecimal number 'FF' ?
21. What is a 'Matrix'?
22. What is the largest value that be stored in a byte?
23. A linked data structure where the nodes have two pointers - one to the previous node - and one to the next node - is known as a(n)...
24. Which of the following is NOT an Integrated Development Environment (IDE)?
25. In C - when a pointer is incremented - it actually jumps the number of memory address...