. First Lab task The first task is to make a calculator where the calculator atleast contains 10 functions. • This calcu
Posted: Sat Feb 19, 2022 3:21 pm
. First Lab task The first task is to make a calculator where the calculator atleast contains 10 functions. • This calculator should be made using the concept of OOPS For first four basic operations (+,/,-,x) you have to make a class and in this class you have to make four methods which would be Addition(); Subtraction(); Multiplication(); and Division(); Now, for other functions you will make another class the name of class should be AuxiliaryFunctions{}; and in this class you should implement the remaining 10 tunctions, • Math library is not allowed to use, Minimum two trigonometric functions are allowed for trigonometric functions you can use math library Minimum two logarithmic properties are allowed to be implemented, you should not use the math library for this, this should be purely based on your logic. At least you should use Constructor, Modifiers (Private, public and protected), Abstraction, Inheritance, and Encapsulation. .