
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?
Chapter 4 Solutions
Introduction to Programming with C++, 3rd edition
- Suppose that the two Rank methods below are added to the Skip List class on Blackboard. public int Rank(T item) Returns the rank of the given item. public T Rank(int i) Returns the item with the given rank i. Requirements 1. Describe in a separate Design Document what additional data is needed and how that data is used to support an expected time complexity of O(log n) for each of the Rank methods. Show as well that the methods Insert and Remove can efficiently maintain this data as items are inserted and removed. (7 marks) 2. Re-implement the methods Insert and Remove of the Skip List class to maintain the augmented data in expected O(log n) time. Using the Contains method, ensure that added items are distinct. (6 marks) 3. Implement the two Rank methods. (8 marks) 4. Test your new methods thoroughly. Include your test cases and results in a Test Document. (4 marks)arrow_forwardWhy do we need official standards for copper cable and fiber-optic cable? What happens without the standard?arrow_forwardWhat is the difference between physical connection (Physical topology) and logical connection (Logical topology)? Why are both necessary?arrow_forward
- There are two network models and name them while providing a couple of advantages and disadvantages for each network model.arrow_forwardhttps://docs.google.com/document/d/1lk0DgaWfVezagyjAEskyPoe9Ciw3J2XUH_HQfnWSmwU/edit?usp=sharing use the link to answer the question below b) As part of your listed data elements, define the following metadata for each: Data/FieldType, Field Size, and any possible constraint/s or needed c) Identify and describe the relationship/s among the tables. Please provide an example toillustrate Referential Integrity and explain why it is essential for data credibility. I have inserted the data elements below for referencearrow_forwardWhy do we use NAT and PAT technologies? What happens without them? What is the major difference between NAT and PAT (Port Address Translation)? please answer it in the simplest way as possiblearrow_forward
- What is the difference between physical connection (Physical topology) and logical connection (Logical topology)? Why are both necessary? Why do we need the Seven-Layer OSI model? What will happen If we don’t have it? Why do we need official standards for copper cable and fiber-optic cable? What happens without the standard? please answer in the simplest way as possiblearrow_forwardSuppose that the MinGap method below is added to the Treap class on Blackboard. public int MinGap( ) Returns the absolute difference between the two closest numbers in the treap. For example, if the numbers are {2, 5, 7, 11, 12, 15, 20} then MinGap would returns 1, the absolute difference between 11 and 12. Requirements 1. Describe in a separate Design Document what additional data is needed and how that data is used to support an time complexity of O(1) for the MinGap method. Show as well that the methods Add and Remove can efficiently maintain this data as items are added and removed. (6 marks) 2. Re-implement the methods Add and Remove of the Treap class to maintain the augmented data in expected O(log n) time. (6 marks) 3. Implement the MinGap method. (4 marks) 4. Test your new method thoroughly. Include your test cases and results in a Test Document. (4 marks)arrow_forwardSuppose that the two Rank methods below are added to the Skip List class on Blackboard. public int Rank(T item) Returns the rank of the given item. public T Rank(int i) Returns the item with the given rank i. Requirements 1. Describe in a separate Design Document what additional data is needed and how that data is used to support an expected time complexity of O(log n) for each of the Rank methods. Show as well that the methods Insert and Remove can efficiently maintain this data as items are inserted and removed. (7 marks) 2. Re-implement the methods Insert and Remove of the Skip List class to maintain the augmented data in expected O(log n) time. Using the Contains method, ensure that added items are distinct. (6 marks) 3. Implement the two Rank methods. (8 marks) 4. Test your new methods thoroughly. Include your test cases and results in a Test Document. (4 marks)arrow_forward
- https://docs.google.com/document/d/1lk0DgaWfVezagyjAEskyPoe9Ciw3J2XUH_HQfnWSmwU/edit?usp=sharing use the link to answer the question below b) As part of your listed data elements, define the following metadata for each: Data/FieldType, Field Size, and any possible constraint/s or needed c) Identify and describe the relationship/s among the tables. Please provide an example toillustrate Referential Integrity and explain why it is essential for data credibility. I have inserted the data elements below for referencearrow_forwardHighlight the main differences between Computer Assisted Coding and Alone Coding with their similaritiesarrow_forwardSuppose that the MinGap method below is added to the Treap class on Blackboard. public int MinGap ( ) Returns the absolute difference between the two closest numbers in the treap. For example, if the numbers are {2, 5, 7, 11, 12, 15, 20} then MinGap would returns 1, the absolute difference between 11 and 12. Requirements 1. Describe in a separate Design Document what additional data is needed and how that data is used to support an time complexity of O(1) for the MinGap method. Show as well that the methods Add and Remove can efficiently maintain this data as items are added and removed. (6 marks) 2. Re-implement the methods Add and Remove of the Treap class to maintain the augmented data in expected O(log n) time. (6 marks) 3. Implement the MinGap method. (4 marks) 4. Test your new method thoroughly. Include your test cases and results in a Test Document. (4 marks)arrow_forward
- C++ for Engineers and ScientistsComputer ScienceISBN:9781133187844Author:Bronson, Gary J.Publisher:Course Technology PtrCOMPREHENSIVE MICROSOFT OFFICE 365 EXCEComputer ScienceISBN:9780357392676Author:FREUND, StevenPublisher:CENGAGE LC++ Programming: From Problem Analysis to Program...Computer ScienceISBN:9781337102087Author:D. S. MalikPublisher:Cengage Learning
- Programming Logic & Design ComprehensiveComputer ScienceISBN:9781337669405Author:FARRELLPublisher:Cengage

