A is any hypothetical person that is using a program and providing input for it.

8. A __________ is any hypothetical person using a program and providing input for it.usera. designerb. userc. guinea pigd. test subject

9. A string literal in Python must be enclosed ineither single-quotes or double-quotes

10. Short notes placed in different parts of a program explaining how those parts of the program work are called__________.comments

11. A[n] __________ makes a variable reference a value in the computer’s memory.assignment statement

12. This symbol marks the beginning of a comment in Python.#

We have textbook solutions for you!

The document you are viewing contains questions related to this textbook.

CWNA Guide to Wireless LANs

Ciampa

Expert Verified

13. Which of the following statements will cause an error?17=x

14. In the expression 12 + 7, the values on the right and left of the + symbol are called__________.operands

15. This operator performs integer division.//%/

16. This is an operator that raises a number to a power.*a.b.c.**d.%*/

17. This operator performs division, but instead of returning the quotient it returns the remainder.%%*/

18. Suppose the following statement is in a program:price = 99.0. After this statement executes, the price variablewill reference a value of this data type.float

19. This built-in function can be used to read input that has been typed on the keyboard.input[]

20. This built-in function can be used to convert anintvalue to afloat.float[]a.int_to_float[]b.float[]c.convert[]d.int[]1. What does a professional programmer usually do first to gain an understanding of a problem?The first thing aprofessional programmer will usually do to gain the understanding of a problem is to work directly with,and interview the customer.True or False1. Programmers must be careful not to make syntax errors when writing pseudocode programs.[F]2. In a math expression, multiplication and division takes place before addition and subtraction.[T]3. Variable names can have spaces in them.[F]4. In Python the first character of a variable name cannot be a number.[T]5. If you print a variable that has not been assigned a value, the number 0 will be displayed.[F]Short Answer

A __________ is any hypothetical person using a program and providing input
for it.
a. designer
b. user
c. guinea pig
d. test subject

Expert Solution

Students who’ve seen this question also like:

Related Computer Science Q&A

Find answers to questions asked by students like you.

Q: Programming Activity Activity 2: Personal Message: Store a person's name in a variable, and print a…

A: Hi, since there are multiple questions in this post, as per our policy, I'll answer the first three…

Q: B] Create a Visual Basic Project to find the value of the following series. x2 Cos[x] = 1– 2! x4 x6…

A: Given: We need to read x and n from user and compute the sum of the series to find an approximate…

Q: in Python create a program that Must include Python comments for each of the items show below.…

A: Program DesignThe following python program functions as specified in the question except for the…

Q: The exercise is about keeping track of the points for a 6 team sports league during a season,…

A: As you have not specified any programming language, the program is written in python.…

Q: Create a program that has the following requirements:                 4.1 menu driven program that…

A: To create a program that meets the following requirements: Conditional structure; Looping;…

Q: Programmers refer to the items needed to reach a problem’s goal as the .a. input b. output c.…

A: To perform the required task through programming, it is very important to pass the test values on…

Q: Instructions: Circle T if the statement is true, F if the statement is false, or write the best…

A: We need to write the best answer in the blank space of the given statement. The statement is as-…

Q: Instructions: Circle T if the statement is true, F if the statement is false, or write the best…

A: Given statement: A[n]___________is a model of a system that is built during systems development.

Q: Which of the following statements is false?     Software [that is, the Python instructions you…

A: Since you have asked multiple questions, we will solve the first question for you. If you want any…

Q: Which of the following statements is false?     Software [that is, the Python instructions you…

A: Statement - Python is the programming language that is used to write code easily and more…

Q: Variables and constants must be declared before they can be used in a program. Why is it…

A: 1. A variable is just a place in memory [in the running program] that helps to holds a value based…

Q: The main section or the main block of the entire progran. It is the first part of the program to be…

A: The main section or the main block of the entire progra. It is the first part of the program to be…

Q: A[n] ____ is a piece of programming code that replaces or changes some of the code that makes up the…

A: Code refactoring

Q: 1. You have been consulted to develop a currency converter for a Forex Bureau. The client wants an…

A: code: #include <iostream> using namespace std; int main[] { cout <<"\n****Currency…

Q: 1. You have been consulted to develop a currency converter for a Forex Bureau. The client wants an…

A: PROGRAM INSTRUCTIONS: Create main[] function. Input number of cedi from the user. Input choice.…

Q: 3. Review the code: "joe" name age 16 print "my name is and I am %3. + name + + age + years old"…

A: This will cause syntax error because parentheses are missing in the print statement and we are using…

Q: You are given n notes in the wallet. You can take a note and insert this note at any place among…

A: Given: You are given n notes in the wallet. You can take a note and insert this note at any place…

Q: Create a useful program that asks for the user to choose between 2 options, with each option calling…

A: Objective: The utility of a menu-driven program should be explained along with the method of…

Q: A writes computer programs that perform jobs specified by the user. A Programmer B B Data entry…

A: A. Programmer A programmer writes computer programs that perform jobs specified by the user.

Q: Create detailed pseudocode for a program that calculates how many days are left until Christmas,…

A: Detailed pseudocode:-

Q: 1. If the following pseudocode were an actual program, why would it not display the output that the…

A: by bartleby guidelines, i am able to do only one question so pls ask another questions seperately.

Q: Programmers refer to the goal of solving a problem as the . a. input b. output c. processing d.…

A: Solving a problem Output is the data generated by a computer. It includes data at a software level…

Q: Create a Visual Basic Project to find the value of the following series.…

A: Solution  Approach Define function to find cosx Declare variable of type double   input the number…

Q: You reside in a desert place, One day a space shuttle lands in front of your eyes. An Alien comes…

A: Algorithm :  Step 1 : ask for the name from user. Step 2 : take the input. Step 3 : print the…

Q: Instructions: Circle T if the statement is true, F if the statement is false, or write the best…

A: Given: A[n] _________ is the computer professional who is most involved in the system development…

Q: Suppose your instructor gives three exams during the semester and you want to write a program that…

A: Program: using System; using System.Collections.Generic; using System.ComponentModel; using…

Q: Suppose your instructor gives three exams during the semester and you want to write a program that…

A: Program: using System; using System.Collections.Generic; using System.ComponentModel; using…

Q: Instructions: Circle T if the statement is true, F if the statement is false, or write the best…

A: Given statement: The software program used in an expert system in conjunction with the knowledge…

Q: A supermarket clerk has run out of changes except for 25 centavo coins. Create a program which asks…

A: Note: Since no programming language is mentioned. I am attempting this in python. if you need it in…

Q: A supermarket clerk has run out of changes except for 25 centavo coins. Create a program which asks…

A: As no programming language is mentioned it is solved using basic Java

Q: Along with this lab statement is a 'solution' to the Roman numeral calculator. Create a project and…

A: import java.util.Scanner; public class RomanNumeralCalculator { public static void main[String[]…

Q: Professor Alex wants a program that allows him to enter a student's project and test scores, which…

A: we need an integer array to store the scores of a student. we don't know the length of the array.…

Q: Create detailed pseudocode for a program that determines distance traveled when given inputs of…

A: Required pseudocode:    BEGIN     Numeric speed, time, distance     Display "Enter the speed: "…

Q: A problem’s will answer the question What information will the computer need to know to display,…

A: An input is an information or data forwarded to the computer for processing. A device that sends an…

Q: Which of the following translates a program's statements, one by one, into a language the…

A: An interpreter is a programme that converts one-by-one programme statements into a machine…

Q: Which of the following translates a program's statements, one by one, into a language the computer…

A: Compiler translates a program's statements, one by one, into a language the computer can understand.…

Q: Which of the following translates a program's statements, one by one, into a language the…

A: I have provided the answer for this question in step two with full explanation.

Q: Which of the following translates a program's statements, one by one, into a language the…

A: An interpreter is a programme that converts one-by-one programme statements into a machine…

Q: A local business employs five salespeople and pays a 3% bonus on a salesperson’s sales how to create…

A: Note: Since no programming language is mentioned. I am attempting this in python. if you need it in…

Q: Create a Visual Basic Project to find the value of the following series. Cos[x] = x-+ 2! 4! 6! Write…

A: A Visual Basic is an event-driven object-based programming language. It is used to create a…

Q: Using C# and Visual Studio, design and implement a standalone command-line application that fulfils…

A: Answer is given below . It is defined as C# [pronounced as C sharp] is a general-purpose,…

What is a hypothetical person using a program and providing input for it?

designer. any hypothetical person using a program and providing input for it.

What is a set of statements that execute in the order that they appear?

The sequence structure simply executes a sequence of statements in the order in which they occur.

Is a name that represents a value that does not change during the program's execution?

A constant is a data item whose value cannot change during the program's execution. Thus, as its name implies – the value is constant. A variable is a data item whose value can change during the program's execution.

What is a single function that the program must perform?

software requirement: a single task that the program must perform in order to satisfy the customer. algorithm: a set of well-defined logical steps that must be taken to perform a task.

Chủ Đề