) Compare the two policies and then create a policy you believe would be fair to you as a student of RGI. Include guidelines for Internet use during school hours, breaks, use of smartphones, and restrictions for using social media and unauthorized websites
(a) Locate two AUPs, one from the internet (published online) and the second one should be for your institution (Richfield Graduate Institute of Technology?
) Locate two AUPs, one from the internet (published online) and the second one should be for your institution (Richfield Graduate Institute of Technology).
Make a program in c language using switch statement is currency converter.
Pak rupees to dollars.
Pak rupees to pound.
Pak rupees to dirham.
Pak rupees to sterling.
Mr. Seth is a Goldsmith. He wants to know the amount of money earned from the sale.
On a Normal day, i.e., Weekday there is a sale of Rs. 10000/- which is fixed. On a weekend,
there is an additional sale of Rs. 5000/- , and on a festival day (be it either week day or week
end), there is an additional sale of Rs. 20000/-.
Following are requirements to solve the problem
a. The type of day i.e., weekend or festival day has to be captured.
b. Check for the type of day and compute the total amount of sale
c. Display the amount of sale in Rupees.
Videocon gives a hike in the salaries for its employees based on the number of TV’s sold by the
employees in the financial year. Vishnu wants to know his new salary. Following are the
requirements to solve the problem
a) If the No’s of TV’s sold is less than 5000, then the hike is 5%
b) If the No’s of TV’s sold is greater than or equal to Rs 5000 and less
than 6500 then the hike is 7%
c) If the No’s of TV’s sold is greater than or equal to Rs 6500 then the
hike is 9%
d) Capture Vishnu’s present salary and the no of TV’s sold by Vishnu
e) Display Vishnu’s new salary
Flipkart is providing a discount to customers based on the purchases made. Ramachandra has
purchased some items, he would like to know his bill. Following are the requirements to solve
the problem
a) For purchases less than Rs 1000 , the discount is 10%
b) For purchases greater than and equal to Rs 1000 and less than 1500
the discount is 12%
c) For purchases greater than and equal to Rs 1500 the discount is 14%
d) Capture the purchased amount by Ramachandra
e) Display Ramachandra’s final bill
Develop a code for the hybrid Inheritance diagram given below
· The employee details class consisting of data members such as name and emp_id.
· The normal pay class consisting of data members such as basic salary.
· The additional pay class consisting of data members such as hours, rupees and additional pay.
· The net pay class consisting of member function cal() to find the employee total salary = additional pay + basic salary.
Create the class Complex that has floating point data members for storing real and imaginary parts and perform complex number addition. The class Complex has the following member functions: Complex() - Null constructor invokes when an object is created Complex(float, float) - Parameterized constructor to set the specified value of real and imaginary parts in object friend complex sum(complex, complex) - Friend function to perform complex number addition and return complex number display() - Function to display complex number object
Create a class named 'Rectangle' with two private float data members- length and breadth and a public function calculate to calculate and print the area which is 'length*breadth'. The class has three constructors which are :
1 - having no parameter - values of both length and breadth are assigned zero.
2 - having two numbers as parameters - the two numbers are assigned as length and breadth respectively.
3 - having one number as parameter - both length and breadth are assigned that number.
In main method, create objects r1,r2 & r3 of the 'Rectangle' class having none, one and two parameters(receive input from user) respectively. Finally call the calculate method for objects r1,r2 &r3.
Input format:
First line contains a input for one parameter constructor.
Second line contains two inputs for two parameter constructor.
Output format:
First line contains output of r1 object area.
Second line contains output of r2 object area.
Third line contains output of r3 object area.
Declare the class Time consisting of data members hours, minutes and seconds. Invoke a null constructor Time() when an object is created, the parameterized constructor Time(hrs, min, sec) to assign values for the data members and show() member function is used to display the time information in format. Finally free the resources of data objects using destructor member function.