Starting Out with Python (3rd Edition)
3rd Edition
ISBN: 9780133582734
Author: Tony Gaddis
Publisher: PEARSON
expand_more
expand_more
format_list_bulleted
Textbook Question
Chapter 2, Problem 4MC
An Informal language that has no syntax rules and is not meant to be compiled or executed is called _________.
a faux code
b. pseudocode
c. Python
d. a flowchart
Expert Solution & Answer
Want to see the full answer?
Check out a sample textbook solutionStudents have asked these similar questions
An informal language that has no syntax rules and is not meant to be compiled or executed is called __________. a. faux code b. pseudocode c. C# d. a flowchart
Using python language
An informal language that has no syntax rules and is not meant to be compiled or executed is called __________. a. faux code b. pseudocode c. Python d. a flowchart
Chapter 2 Solutions
Starting Out with Python (3rd Edition)
Ch. 2.1 - Who is a programmers customer?Ch. 2.1 - What is a software requirement?Ch. 2.1 - What is an algorithm?Ch. 2.1 - What is pseudocode?Ch. 2.1 - Prob. 5CPCh. 2.1 - Prob. 6CPCh. 2.3 - Write a statement that displays your name.Ch. 2.3 - Write a statement that displays the following...Ch. 2.3 - Write a statement that displays the following...Ch. 2.5 - Prob. 10CP
Ch. 2.5 - Which of the following are illegal variable names...Ch. 2.5 - Prob. 12CPCh. 2.5 - Is the following assignment statement valid or...Ch. 2.5 - Prob. 14CPCh. 2.5 - Look at the following assignment statements:...Ch. 2.5 - What will be displayed by the following program?...Ch. 2.6 - You need the user of a program to enter a...Ch. 2.6 - Prob. 18CPCh. 2.7 - Prob. 19CPCh. 2.7 - Prob. 20CPCh. 2.7 - Prob. 21CPCh. 2 - A ______ error does not prevent the program from...Ch. 2 - Prob. 2MCCh. 2 - A(n) __________ is a set of well-defined logical...Ch. 2 - An Informal language that has no syntax rules and...Ch. 2 - A _______ is a diagram that graphically depicts...Ch. 2 - A ______ is a sequence of characters. a. char...Ch. 2 - Prob. 7MCCh. 2 - Prob. 8MCCh. 2 - A string literal in Python must be enclosed in...Ch. 2 - Prob. 10MCCh. 2 - A(n) __________ makes a variable reference a value...Ch. 2 - This symbol marks the beginning of a comment in...Ch. 2 - Which of the following statements will cause an...Ch. 2 - In the expression 12 + 7, the values on the right...Ch. 2 - This operator performs integer division. a. // b....Ch. 2 - This is an operator that raises a number to a...Ch. 2 - This operator performs division, but instead of...Ch. 2 - Prob. 18MCCh. 2 - Which built-in function can be used to read input...Ch. 2 - Prob. 20MCCh. 2 - Programmers must be careful not to make syntax...Ch. 2 - In a math expression, multiplication and division...Ch. 2 - Variable names can have spaces in them.Ch. 2 - In Python, the first character of a variable name...Ch. 2 - If you print a variable that has not been assigned...Ch. 2 - What does a professional programmer usually do...Ch. 2 - What is pseudocode?Ch. 2 - Computer programs typically perform what three...Ch. 2 - If a math expression adds a float to an int, what...Ch. 2 - What is the difference between floating-point...Ch. 2 - Write Python code that prompts the user to enter...Ch. 2 - Write Python code that prompts the user to enter...Ch. 2 - Write assignment statements that perform the...Ch. 2 - Assume the variables result, w, x, y, and z are...Ch. 2 - Write a Python statement that assigns the sum of...Ch. 2 - Write a Python statement that subtracts the...Ch. 2 - Write a Python statement that multiplies the...Ch. 2 - Prob. 8AWCh. 2 - What would the following display? num = 99 num = 5...Ch. 2 - Assume the variable sales references a float...Ch. 2 - Assume the following statement has been executed:...Ch. 2 - What will the following statement display?...Ch. 2 - Personal Information Write a program that displays...Ch. 2 - Sales Prediction A company has determined that its...Ch. 2 - Land Calculation One acre of land is equivalent to...Ch. 2 - Total Purchase A customer in a store is purchasing...Ch. 2 - Distance Traveled Assuming there are no accidents...Ch. 2 - Sales Tax Write a program that will ask the user...Ch. 2 - Miles-per-Gallon A car's miles-per-gallon (MPG)...Ch. 2 - Tip, Tax, and Total Write a program that...Ch. 2 - Celsius to Fahrenheit Temperature Converter Write...Ch. 2 - Ingredient Adjuster A cookie recipe calls for the...Ch. 2 - Male and Female Percentages Write a program that...Ch. 2 - Stock Transaction Program Last month, Joe...
Additional Engineering Textbook Solutions
Find more solutions based on key concepts
Practice Problem 2.37 solution page 155 You are given the task of patching the vulnerability in the XDR code sh...
Computer Systems: A Programmer's Perspective (3rd Edition)
What is the output produced by the following (when embedded in a correct program with x declared to be of type ...
Problem Solving with C++ (10th Edition)
How do you get the byte number of a files current read position? How do you get the byte number of a files curr...
Starting Out with C++ from Control Structures to Objects (9th Edition)
What output is produced by the following code? int[][] testArray = new int[3][4]; for (int row = 0; row testAr...
Java: An Introduction to Problem Solving and Programming (8th Edition)
Payroll Class Write a Payroll class that uses the following arrays as fields: employeeId. An array of seven int...
Starting Out with Java: From Control Structures through Objects (7th Edition) (What's New in Computer Science)
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Similar questions
- C# transforms the source code to an intermediate stage called O a. Machine code O b. OC O d. Byte code Source code None of thesearrow_forward252. A procedural programming follows ___________ approach. a. top-down b. bottom-up c. left-right d. right-leftarrow_forwardJessica is considering creating a new programming language, and she has the following goals in mind for its design: The programming language is designed for producing free and open-source software. It's OK for the language to only run smoothly on really advanced and powerful computer systems. It would be handy if programs could run on several platforms without the programmer having to exert any additional effort. It should be possible to modify the program's source code while it is still running. Should Jessica create an interpreter, a compiler, or something else different instead?arrow_forward
- A programmer develops code by repeating short sessions of writing, compiling, and testing until the project is finished. This is an example of _____. A. Pair programming B. Modular development C. Incremental development D. Parallel programmingarrow_forwardA computer program is a __________ implemented with a computer. a. problem b. solution c. diagram d. pseudocodearrow_forwardThe following scenario is an example of which algorithm construct? A flowchart needs to represent a situation where the user is asked to enter his age, the age is read into the system and the system outputs a 'Thank You' message. Sequence All of the above Loop Decisionarrow_forward
- A(n) __________ is a set of instructions that a computer follows to perform a task.a. compilerb. programc. interpreterd. programming languagearrow_forwardThe words that make up a high-level programming language are called __________. a. binary instructions b. mnemonics c. commands d. keywordsarrow_forward92. Object program is also called a. program code b. machine code c. assembler d. compilerarrow_forward
- A(n) __________ is a program that translates a high-level language program into a separate machine language program. a. assembler b. compiler c. translator d. utilityarrow_forwardDesigned and implemented using Visual Basic as a calculator to carry out the operations of addition, subtraction, multiplication and division between two numbers entered by the user, along with sending a warning message if the divisor is equal to zeroarrow_forwardHi! Please may you write a programming code in C Language, using the instructions in the question attached. Please use either : Microsoft visual studio 2019 or an Online Replit C compiler to do the coding. Thank you very much! If you could also write additonal notes on how you completed the code, that will be really appreciated.arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Programming Logic & Design ComprehensiveComputer ScienceISBN:9781337669405Author:FARRELLPublisher:CengageEBK JAVA PROGRAMMINGComputer ScienceISBN:9781337671385Author:FARRELLPublisher:CENGAGE LEARNING - CONSIGNMENTPrinciples of Information Systems (MindTap Course...Computer ScienceISBN:9781285867168Author:Ralph Stair, George ReynoldsPublisher:Cengage Learning
- Microsoft Visual C#Computer ScienceISBN:9781337102100Author:Joyce, Farrell.Publisher:Cengage Learning,
Programming Logic & Design Comprehensive
Computer Science
ISBN:9781337669405
Author:FARRELL
Publisher:Cengage
EBK JAVA PROGRAMMING
Computer Science
ISBN:9781337671385
Author:FARRELL
Publisher:CENGAGE LEARNING - CONSIGNMENT
Principles of Information Systems (MindTap Course...
Computer Science
ISBN:9781285867168
Author:Ralph Stair, George Reynolds
Publisher:Cengage Learning
Microsoft Visual C#
Computer Science
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Cengage Learning,
Structured Chart; Author: Tutorials Point (India) Ltd.;https://www.youtube.com/watch?v=vdUO-sGA1DA;License: Standard YouTube License, CC-BY
Introduction to Structure Charts; Author: Christopher Kalodikis;https://www.youtube.com/watch?v=QN2bjNplGlQ;License: Standard Youtube License