Worksheet
Q1. What is used in programming to hold a piece of data?
Q2. What simple function can be used to send information to the Output window?
Q3. What data type should you use if you want to represent a value of true
or false
?
Q4. What data type is used if you want to represent a word or characters?
Q5. What is used in programming when we want to check if a condition is met?
Q6. What is used in programming when some action must be done repeatedly so long as a condition is met?
Q7. What loop would be best to use if we want something to happen an exact number of times?
Q8. What type of loop is best if we want something to always happen as long as some condition is met?
Q9. What type of loop is best if we want to do something immediately once and then loop only while some condition is met?
Q10. What do we call a repeatedly callable block of code that is typically designed to accomplish some single task or part of a task?
Q11. What...