Introduction to Programming with C++
Introduction to Programming with C++
3rd Edition
ISBN: 9780133252811
Author: Y. Daniel Liang
Publisher: Prentice Hall
Expert Solution & Answer
Book Icon
Chapter 4, Problem 1CP

a.

Explanation of Solution

Given: The value of PI is 3.14159 and E has the value 2.71828.

To find: That what will be the result of the function, sqrt(4.0).

Solution:

The function, sqrt(4.0), will evaluate to 2. The sqrt function will perform the square root of the number which is passed in the function parameter. It is a library function belonging to the header, cmath.

b.

Explanation of Solution

Given: The value of PI is 3.14159 and E has the value 2.71828.

To find: That what will be the result of the function, sin(2*PI).

Solution:

The function, sin(2*PI) , evaluates to 0. The sin function returns the final value of the sine of the angle which is passed in the parameter. It is a library function belonging to the header, cmath. It returns the sine of angle in radians.

c.

Explanation of Solution

Given: The value of PI is 3.14159 and E has the value 2.71828.

To find: That what will be the result of the function, cos(2*PI).

Solution:

The function, cos(2*PI), evaluates to 1. The cosine function returns the final value of the cosine of the angle which is passed in the parameter. It is a library function belonging to the header, cmath. It returns the cosine of angle in radians.

d.

Explanation of Solution

Given: The value of PI is 3.14159 and E has the value 2.71828.

To find: That what will be the result of the function, pow(2.0, 2).

Solution:

The function, pow(2.0, 2), will return the value 4. It computes the base number which is raised to the power of the exponent number. It is a library function belonging to the header, cmath. It follows the syntax pow(base, exponent).

e.

Explanation of Solution

Given: The value of PI is 3.14159 and E has the value 2.71828.

To find: That what will be the result of the function, log(E).

Solution:

The function, log(E), will evaluate to 1. It returns the natural logarithmic value of the argument which is passed as the parameter. The parameters can belong to any data type, like int, float, double or long-double.

f.

Explanation of Solution

Given: The value of PI is 3.14159 and E has the value 2.71828.

To find: That what will be the result of the function, exp(1.0).

Solution:

The function, exp(1.0), will return the value 2. It returns the exponential, e, which is raised to the argument that is given. It is a library function belonging to the header, cmath.

g.

Explanation of Solution

Given: The value of PI is 3.14159 and E has the value 2.71828.

To find: That what will be the result of the function, max(2, min(3, 4)).

Solution:

The function, max(2, min(3,4)), will return the value 3. The min function returns the minimum of the parameters passed to the function. Whereas, the max function returns the maximum of the parameters passed. In the given condition, first the inner bracket will evaluate, so the min(3,4) will be 3. Then, the outer bracket will evaluate, so the max(2,3) will be 3. Thereby, making the final result to be 3.

h.

Explanation of Solution

Given: The value of PI is 3.14159 and E has the value 2.71828.

To find: That what will be the result of the function, sqrt(125.0).

Solution:

The function, sqrt(125.0), will evaluate to 11. The sqrt function is the function which helps in finding the square root of the parameter which is passed to the function. It is a library function belonging to the header, cmath.

i.

Explanation of Solution

Given: The value of PI is 3.14159 and E has the value 2.71828.

To find: That what will be the result of the function, ceil(-2.5).

Solution:

The function, ceil(-2.5), will return the value -2.0. It returns the smallest possible value which has to be either greater than or equal to the passed argument. It is a library function belonging to the header, cmath.

j.

Explanation of Solution

Given: The value of PI is 3.14159 and E has the value 2.71828.

To find: That what will be the result of the function, floor(-2.5).

Solution:

The function, floor(-2.5), will return the value -3.0. It will return the largest possible value which has to be either equal to or less than the passed argument. It is a library function belonging to the header, cmath.

k.

Explanation of Solution

Given: The value of PI is 3.14159 and E has the value 2.71828.

To find: That what will be the result of the function, asin(0.5).

Solution:

The function, asin(0.5), will return the value 0.52359. It returns the inverse of the sine of the angle which is passed as the parameter. It returns the value of the angle in radians. It is a library function belonging to the header, cmath.

l.

Explanation of Solution

Given: The value of PI is 3.14159 and E has the value 2.71828.

To find: That what will be the result of the function, acos(0.5).

Solution:

The function, acos(0.5), will return the value 1.04719. It returns the inverse of the cosine of the angle which is passed as the parameter. It returns the value of the angle in radians. It is a library function belonging to the header, cmath.

m.

Explanation of Solution

Given: The value of PI is 3.14159 and E has the value 2.71828.

To find: That what will be the result of the function, atan(1.0).

Solution:

The function, atan(1.0), will return the value 0.785398. It returns the inverse of the tangent of the angle which is passed as the parameter. It returns the value of the angle in radians. It is a library function belonging to the header, cmath.

n.

Explanation of Solution

Given: The value of PI is 3.14159 and E has the value 2.71828.

To find: That what will be the result of the function, ceil(2.5).

Solution:

The function, ceil(2.5), will return the value 3.0. It returns the smallest possible value which has to be either greater than or equal to the passed argument. It is a library function belonging to the header, cmath.

o.

Explanation of Solution

Given: The value of PI is 3.14159 and E has the value 2.71828.

To find: That what will be the result of the function, floor(2.5).

Solution:

The function floor, (2.5), will return the value 2.0. It will return the largest possible value which has to be either lesser than or equal to the passed argument. It is a library function belonging to the header, cmath.

p.

Explanation of Solution

Given: The value of PI is 3.14159 and E has the value 2.71828.

To find: That what will be the result of the function, log10(10.0).

Solution:

The function, log10(10.0), will return the value of 1. It returns the common base 10 logarithmic value of the argument which is passed inside. It is a library function belonging to the header, cmath.

q.

Explanation of Solution

Given: The value of PI is 3.14159 and E has the value 2.71828.

To find: That what will be the result of the function, pow(2.0, 3).

Solution:

The function, pow(2.0, 3), will return the value 8.0. It computes the base number which is raised to the power of the exponent number. It is a library function belonging to the header, cmath. It follows the syntax, pow(base, exponent).

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
My daughter is a Girl Scout and it is time for our cookie sales. There are 15 neighbors nearby and she plans to visit every neighbor this evening. There is a 40% likelihood that someone will be home. If someone is home, there is an 85% likelihood that person will make a purchase. If a purchase is made, the revenue generated from the sale follows the Normal distribution with mean $18 and standard deviation $5. Using @RISK, simulate our door-to-door sales using at least 1000 iterations and report the expected revenue, the maximum revenue, and the average number of purchasers. What is the probability that the revenue will be greater than $120?
Q4 For the network of Fig. 1.41: a- Determine re b- Find Aymid =VolVi =Vo/Vi c- Calculate Zi. d- Find Ay smid e-Determine fL, JLC, and fLE f-Determine the low cutoff frequency. g- Sketch the asymptotes of the Bode plot defined by the cutoff frequencies of part (e). h-Sketch the low-frequency response for the amplifier using the results of part (f). Ans: 28.48 2, -72.91, 2.455 KS2, -54.68, 103.4 Hz. 38.05 Hz. 235.79 Hz. 235.79 Hz. 14V 15.6ΚΩ 68kQ 0.47µF Vo 0.82 ΚΩ V₁ B-120 3.3kQ 0.47µF 10kQ 1.2k0 =20µF Z₁ Fig. 1.41 Circuit for
a. [10 pts] Write a Boolean equation in sum-of-products canonical form for the truth table shown below: A B C Y 0 0 0 1 0 0 1 0 0 1 0 0 0 1 1 0 1 0 0 1 1 0 1 0 1 1 1 1 0 1 1 0 a. [10 pts] Minimize the Boolean equation you obtained in (a). b. [10 pts] Implement, using Logisim, the simplified logic circuit. Include an image of the circuit in your report.

Chapter 4 Solutions

Introduction to Programming with C++

Ch. 4 - If the input for a starting character and an...Ch. 4 - If you run Listing 4.4 GuessBirthday.cpp with...Ch. 4 - Which function do you use to test whether a...Ch. 4 - Which function do you use to convert a letter to...Ch. 4 - Prob. 15CPCh. 4 - Prob. 16CPCh. 4 - Prob. 17CPCh. 4 - Prob. 18CPCh. 4 - Write a statement that changes the first character...Ch. 4 - Show the output of the following code:...Ch. 4 - Prob. 21CPCh. 4 - To use stream manipulators, which header file must...Ch. 4 - Show the output of the following statements....Ch. 4 - Show the output of the following statements:...Ch. 4 - Show the output of the following statements;...Ch. 4 - Show the output of the following statements:...Ch. 4 - Prob. 27CPCh. 4 - How do you create an object for reading data from...Ch. 4 - Prob. 29CPCh. 4 - What happens if the file already exists when you...Ch. 4 - (Geometry: area of a pentagon) Write a program...Ch. 4 - (Geometry: great circle distance) The great circle...Ch. 4 - (Geography: estimate areas) Find the GPS locations...Ch. 4 - (Geometry: area of a hexagon) The area of a...Ch. 4 - Prob. 5PECh. 4 - (Random point on a circle) Write a program that...Ch. 4 - Prob. 7PECh. 4 - (Find the character of an ASCII code) Write a...Ch. 4 - Prob. 9PECh. 4 - (Vowel or consonant?) Assume letters...Ch. 4 - Prob. 11PECh. 4 - (Convert letter grade to number) Write a program...Ch. 4 - (Hex to binary) Write a program that prompts the...Ch. 4 - Prob. 14PECh. 4 - (Phone key pads) The international standard...Ch. 4 - Prob. 16PECh. 4 - Prob. 17PECh. 4 - Prob. 18PECh. 4 - (Order three cities) Write a program that prompts...Ch. 4 - Prob. 20PECh. 4 - (Student major and status) Write a program that...Ch. 4 - Prob. 22PECh. 4 - (Check SSN) Write a program that prompts the user...
Knowledge Booster
Background pattern image
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
C++ for Engineers and Scientists
Computer Science
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Course Technology Ptr
Text book image
COMPREHENSIVE MICROSOFT OFFICE 365 EXCE
Computer Science
ISBN:9780357392676
Author:FREUND, Steven
Publisher:CENGAGE L
Text book image
C++ Programming: From Problem Analysis to Program...
Computer Science
ISBN:9781337102087
Author:D. S. Malik
Publisher:Cengage Learning
Text book image
Programming Logic & Design Comprehensive
Computer Science
ISBN:9781337669405
Author:FARRELL
Publisher:Cengage