C++ Programming: From Problem Analysis to Program Design
C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN: 9781337102087
Author: D. S. Malik
Publisher: Cengage Learning
Question
Book Icon
Chapter 4, Problem 1TF

a)

Program Plan Intro

To prove whether the given statement is true or false.

a)

Expert Solution
Check Mark
Program Description Answer

The given statement is True.

Explanation of Solution

Explanation:

The flow of control in programming refers to the order or the sequence in which the function calls, instructions and statements are executed by the compiler. There are two types of programming - procedural and object-oriented programming paradigms.

In procedural programming, the flow of control is same as the sequence in which the instructions and statements are written.

But in an object-oriented programming language, the flow of control differs due to function calls.

Conclusion:

Hence, in object-oriented programming paradigm also, the flow of control indicates the order in which statements execute in a program.

b)

Program Plan Intro

To prove that the given statement is true or false.

b)

Expert Solution
Check Mark
Program Description Answer

The given statement is False.

Explanation of Solution

Explanation:

The equality operator in C++ comprises of two equal symbols, that is, ==. The equality operator is used together with if statement in order to verify whether the values of two variables are equal or not.

The single equal symbol, =, is called the assignment operator which is used to assign values to variables.

Conclusion:

Hence, the given statement is False.

c)

Program Plan Intro

To prove that the given statement is true or false.

c)

Expert Solution
Check Mark
Program Description Answer

The given statement is False.

Explanation of Solution

Explanation:

When an if statement is written, the expression is written inside a pair of round brackets that does not ends with a semicolon. Whereas if the semicolon is placed after the expression in the if statement, it will not generate an expected result. Ending an if statement with a semicolon means ending the condition. It will check the condition but will end it in the same line and the logic will not be applied to the further statements.

Conclusion:

Hence, the given statement is False.

(d)

Program Plan Intro

To prove that the given statement is true or false.

(d)

Expert Solution
Check Mark
Program Description Answer

The given statement is False.

Explanation of Solution

Explanation:

An if statement should have a corresponding else or not is decided by the requirements of the program. If the program requires, then every if statement will have a corresponding else statement. Otherwise, if the program does not require, the if statement will not have a corresponding else part.

Whether an if statement will have a corresponding else part or not, is only decided by the program requirements and is not mandatory. A program will execute properly if only an if statement is written.

Conclusion:

Hence, the given statement is False.

(e)

Program Plan Intro

To prove whether the given statement is true or false.

(e)

Expert Solution
Check Mark
Program Description Answer

The given statement is False.

Explanation of Solution

Given statement:

The expression in the if statement:

if(score=30)

grade = ‘A’;

Explanation:

The expression inside the if statement assigns the variable score with a value of 30. The assignment statement is always True. Hence, in all the scenarios, the if statement will always evaluate to True and the grade variable will be assigned value ‘A’.

Conclusion:

Thus, the given statement is True.

(f)

Program Plan Intro

To prove whether the given statement is true or false.

(f)

Expert Solution
Check Mark
Program Description Answer

The given statement is True.

Explanation of Solution

Given statement:

The expression:

if(ch>=’A’ && ch<=’Z’)

Explanation:

The given if statement contains two conditions that are combined by “&&” operator. That is, when both the conditions are satisfied only then the if statement will evaluate to True.

For input ch<’A’, the first condition is not satisfied hence the if statement evaluates to False.

For input ch>=’Z’, both the conditions are satisfied only and only if ch=’Z’ but not for ch>’Z’.

Thus, for either of the inputs, the if statement evaluates to False.

Conclusion:

Hence, the given statement is True.

g)

Program Plan Intro

To prove whether the given statement is true or false.

g)

Expert Solution
Check Mark
Program Description Answer

The given statement is True.

Explanation of Solution

Given statement:

The given code is as follows.

cin >> num;
if(num > 5)
  cout << num;
  num=0;
else
  cout << “Num is zero” << endl;

Explanation:

In the given code, the if statement will be executed only when the input is greater than 5, otherwise the else statement will be executed.

The input for the given code is 5. Since the input is not greater than 5, the if statement will not be executed.

Here, for the input of 5, the else statement will be executed, and the output will be “Num is zero”.

Conclusion:

Hence, the given statement is True.

(h)

Program Plan Intro

To prove whether the given statement is true or false.

(h)

Expert Solution
Check Mark
Program Description Answer

The given statement is True.

Explanation of Solution

Explanation:

The result of a logical expression is either True or False. That is, a logical expression will always give a Boolean result.

A Boolean value can only be assigned to a Boolean variable but not to an int variable.

Conclusion:

Hence, the given statement is True.

(i)

Program Plan Intro

To prove whether the given statement is true or false.

(i)

Expert Solution
Check Mark
Program Description Answer

The given statement is True.

Explanation of Solution

Explanation:

The given expression is a combination of two statements. The first statement is x>0 which checks if the value of x is greater than 0. The second statement is “!” which inverts the result of the expression, x>0. It means that the “!” operator makes the expression as x<0.

Hence, the expression, x<0, can only be true for negative numbers.

Conclusion:

Thus, the given statement is True.

(j)

Program Plan Intro

To prove whether the given statement is true or false.

(j)

Expert Solution
Check Mark
Program Description Answer

The given statement is False.

Explanation of Solution

Explanation:

In C++, there are three logical operators. They are “&&”or AND operator, “||” or OR operator, and “!” or NOT operator.

The “!” operator is a logical operator.

The “!=” operator is an equality operator since it checks if one value is not equal to another value.

Conclusion:

Hence, the given statement is False.

(k)

Program Plan Intro

To prove whether the given statement is true or false.

(k)

Expert Solution
Check Mark
Program Description Answer

The given statement is True.

Explanation of Solution

Explanation:

In C++, there are four types of simple data types. They are integer, float, string, and boolean.

The expression in the switch statement is usually a variable. A variable can have any one of the simple data types.

In some cases when the switch contains an expression, the result of the expression can only evaluate to a value of the simple data type.

Conclusion:

Hence, the given statement is True.

Want to see more full solutions like this?

Subscribe now to access step-by-step solutions to millions of textbook problems written by subject matter experts!
Students have asked these similar questions
Programing Language: C++ Your time machine is capable of going forward in time up to 24 hours. The machine is configured to jump ahead in minutes. To enter the proper number of minutes into your machine, you would like a program that can take a start time (in hours, minutes, and a Boolean indicating AM or PM) and a future time (in hours, minutes, and a Boolean indicating AM or PM) and calculate the difference in minutes between the start and future time. A time is specified in your program with three variables: int hours, minutes; bool isAM; // You can also use a char, i.e. A or P for example, to represent 11:50 PM, you would store: hours = 11,minutes = 50, isAM = false or if using a char, hours = 11,minutes = 50, isAM = 'A' This means that you need six variables to store a start and future time. Write a program that allows the user to enter a start time and a future time. Include a function named computeDifference that takes the six variables as parameters that represent the start…
Q: Compare if else and switch case. Explain these statements with its general syntaxes and flow charts.
(Apartment problem) A real estate office handles, say, 50 apartment units. When the rent is, say, $600 per month, all the units are occupied. However, for each, say, $40 increase in rent, one unit becomes vacant. Moreover, each occupied unit requires an average of $27 per month for maintenance. How many units should be rented to maximize the profit? Write a program in C++ that prompts the user to enter: The total number of units. The rent to occupy all the units. Amount to maintain a rented unit. The increase in rent that results in a vacant unit. The program then outputs: The number of units to be rented to maximize the profit The maximum profit Since your program handles currency, make sure to use a data type that can store decimals with a decimal precision of 2.
Knowledge Booster
Background pattern image
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
C++ Programming: From Problem Analysis to Program...
Computer Science
ISBN:9781337102087
Author:D. S. Malik
Publisher:Cengage Learning
Text book image
C++ for Engineers and Scientists
Computer Science
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Course Technology Ptr
Text book image
EBK JAVA PROGRAMMING
Computer Science
ISBN:9781337671385
Author:FARRELL
Publisher:CENGAGE LEARNING - CONSIGNMENT