
Comp Sci 1 Ch 00
Quiz by carrie_replogle
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
Which of the following is the first step in the general problem-solving strategy
After coding a computer program you should do which of the following
Which of the following is a floating-point number?
The rules of usage of a programming language is its:
The operation in a computer program that transmits data from an outside source to the program is:
Which is not a way to input data into a program?
Which of the following is not an acceptable variable name?
Which of the following is not an acceptable variable name?
If the variable Hours = 10 , what is the value of the variable Salary after the following instruction has been executed: Set Salary = Hours * 8
What is the value of the variable PayDay after the following statements have been executed:
Set Hours = 5
Set PayDay = 30
Set PayDay = Hours * 6
What are the variables in the following program segment? Write “How many candy bars do you want to buy?”
Input CandyBars
Set Price = 2
Set Cost = CandyBars * Price
Write “You need to pay” + Cost
What is the output of the following statements, given that the variable Num1 = 3 and the variable Num2 = 5
The type of number that cannot be expressed as a fraction because the fractional partwould go on for infinity without ever repeating a sequence is:
A Boolean variable can have which of the following values:
Which of the following statements is not true?