Fill in the blanks in each of the following statements:
a) C++
b) A(n)_________provides many tools that support the software development process, such as editors for writing and editing programs, debuggers for locating logic errors in programs, and many other features.
Trending nowThis is a popular solution!
Chapter 1 Solutions
C++ How To Program Plus Mylab Programming With Pearson Etext -- Access Card Package (10th Edition)
Additional Engineering Textbook Solutions
Vector Mechanics for Engineers: Statics and Dynamics
Database Concepts (8th Edition)
Electric Circuits. (11th Edition)
SURVEY OF OPERATING SYSTEMS
Starting Out with Python (4th Edition)
Introduction To Programming Using Visual Basic (11th Edition)
- Every C program begins execution at the function_________________arrow_forwardFill in the blanks for the code. Code is in c++. and plz explain and walk thru why you choose that answer Repetition Blocks//define constants#define TRUE ____________#define FALSE ____________#define LIMIT ____________void main(){//declare variablesint _____________; //variable to be testedint _____________; //loop counter//basic while structure ... tests before starting loop_____________ = FALSE; //initialize test variablewhile(____________ _____ ____________) //do the pre-test{instruction(s) whileTrue;_____________ = _________________; //modify test variable}//********************************************************************//basic do-while structure ... tests after it has been through the loop_____________ = FALSE; //initialize test variabledo{instruction(s) whileTrue2;_____________ = _________________; //modify test variable}while (__________________________); //do the post-test//********************************************************************//basic for loop (initialize;…arrow_forwardWhat is the result of the following operation in C++? (All literals are integers) 5 * 6 – 2 / 3 *4 + 6 = ______________________________arrow_forward
- 1. Using structures and dynamic memory allocation, write a C++ program that accepts any number of input body heights and calculates and displays their sum. Output must be as follows: Enter number of body heights: 3 Enter Body Height 1 Feet: 5 Inches: 6 Enter Body Height 2 Feet: 4 Inches: 7 Enter Body Height 3 Feet: 2 Inches: 0 The sum of body height/s is 12 feet and 1 inch. Provide a written explanation which must be written as comments on your code. Ensure that your code passes the following test cases. Test Case 1: Sum of body heights (both feet and inches) is not 1 Enter number of body heights: 3 Enter Body Height 1 Feet: 6 Inches: 0 Enter Body Height 2 Feet: 5 Inches: 6 Enter Body Height 3 Feet: 2 Inches: 8 The sum of body height/s is 14 feet and 2 inches. Test Case 2: Sum of body heights for feet is 1 Enter number of body heights: 2 Enter Body Height 1 Feet: 0 Inches: 5 Enter Body Height 2 Feet: 0 Inches: 10 The sum of body height/s is 1 foot and 3 inches. Test Case 3: Sum of body…arrow_forwardIn C++ ________________ overloaded subprograms are allowed. a)user defined b)built in c)library d)Both “user defined” and “built-in” e)Both “built-in” and “library” Java programming language uses _____________________ for translation. a)Both compiler and interpreter b)Only compiler c)Interpreter d)Encoder e)Cross compiler Parser in a compiler is a ___________________. a)Tool b)Language c)Language Recognizer d)Language Generator e)All of these Which of the following languages do not support dynamic type binding? a)Python b)Java c)C#…arrow_forwardAnswer the given question with a proper explanation and step-by-step solution. 84) When you use an identifier, Python searches for that identifier in the currently accessible namespaces, proceeding from ________ to ________ to ________. 84) ______ A) global, built-in, local B) local, global, built-in C) local, built-in, global D) built-in, local, global 85) Which of the following statements a), b) or c) is false? 85) ______ A) The class's __init__ method starts with an empty object (self) and adds each attribute to the object's namespace. B) Once you define an attribute in an object's namespace, clients using the object may access the attribute's value. C) Each object has its own namespace containing the object's methods and data attributes. D) All of the above statements are true. 86) ________ time series have one observation per time, such as the average of the January high temperatures in New York City for a particular year;…arrow_forward
- The following question supports the attainment of Course Intended Learning Outcomes (CILO): Design computing based solution using control structures, functions, array and other statements. INSTRUCTION: Read and study the assignment below. Solve the problem using C++ programming language, compile, run and screen shot the correct output. Copy and paste the source code or program code and the required sample output (screen shot) in the format below. The output should also display the school name, course name, student name, program, section, date and title of assessment task. PROBLEM: Write a program that will let the user to input year level and status base on table below. The output should be based on the possible combination of year level and status. YEAR LEVEL STATUS OUTPU INPUT OUTPUT INPUT Regular Irregula 1 First Year Rorr Second 2 I o i Year r other 3 Third Year Invalid letters Forth Year 4 other Invalid number Sample Output(1): TECHNOLOGICAL INSTITUTE OF THE PHILIPPINES QUEZON…arrow_forwardC++. answer it in 1hrarrow_forwardFill in the blanks. The names of the four elements of array p are __________ Each statement in C++ is terminated with __________ C++ is an __________ language.arrow_forward
- C++arrow_forwardI need the answer as soon as possiblearrow_forward3. Assembly Language Programming Convert the following C++ statement into ANNA: X= *P + *Q; Assume P, Q are pointers to 2-byte integers, properly initialized, and located at labels P, Q, respectively. "X" is a 2-byte integer initialized and located at label X.arrow_forward
- C++ Programming: From Problem Analysis to Program...Computer ScienceISBN:9781337102087Author:D. S. MalikPublisher:Cengage LearningC++ for Engineers and ScientistsComputer ScienceISBN:9781133187844Author:Bronson, Gary J.Publisher:Course Technology Ptr