Write CSS code to make all second-level headings (h2 elements) green and italic.
Create a webpage titled “Midterm Exam” which displays your full name, centered, with font size 30 pixels, bold format, in "Times New Roman" font and red in color using inline CSS.
A company is interested in implementing a payroll system for its employees. You are requested to develop such program in which you must: Declare the base class emp. Use the function called getInfo(), to get the employee details. Declare the derived class salary. Declare and define the function getSalary() to get the salary details. Define the function calculateNet() to find the net pay. Read the number of employees. Call the function getInfo(),getSalary() and calculateNet() to each employees. Test the above operations by writing a complete C++ program using single inheritance
Write a function named "reduce" that takes two positive integer arguments, call them "num" and "denom", treats them as the numerator and denominator of a fraction, and reduces the fraction. That is to say, each of the two arguments will be modified by dividing it by the greatest common divisor of the two integers. The function should return the value 0 (to indicate failure to reduce) if either of the two arguments is zero or negative, and should return the value 1 otherwise.
A parking garage charges a R12.00 minimum fee to park for up to three hours. The garage charges an additional R0.90 per hour for each hour or part thereof in excess of three hours. The maximum charge for any given 24-hour period is R20.00. Assume that no car parks for longer than 24 hours at a time. Write a program that will calculate and print the parking charges for each of 3 customers who parked their cars in this garage yesterday. You should enter the hours parked for each customer. Your program should print the results in a neat tabular format and should calculate and print the total of yesterday's receipts. The program should use the function calculateCharges to determine the charge for each customer. Your outputs should appear in the following format
Using the Employee table below, write the rational schema and draw it’s dependency diagram. Identify all dependencies.
EMP_NO
EMP_NAME
CUST_NO
CUST_NAME
CUST_PHONE
PROD_NO
PROD_NAME
DATE
215
SPHELELE
15
HUGUETTE
0834528787
10
SOAP
20/03/2012
216
BOKHOSI
16
TANDIWE
0784521635
12
BRAID
20/03/2012
217
THEMBA
16
TANDIWE
0784521635
15
PHONE
21/04/2012
218
LEFA
14
BUSISIWE
0618578542
12
PEN
22/04/2012
219
VALENTINE
14
BUSISIWE
0618578542
13
LAPTOP
22/04/2012
220
PROMISE
18
GIRLY
0829687841
13
LAPTOP
22/04/2012
4.1 Identify all dependencies. (8)
4.2 Using the Employee table above, write the rational schema and draw it’s dependency diagram. (9)
Compare and contrast processes and threads and discuss how threads are scheduled.
Develop a code for the multiple inheritance diagram given below
· The experience details class consisting of data members such as name and total experience.
· The salary details class consisting of data members such as salary.
· The education details class consisting of data members such as degree.
· The promotion class consisting of member function promote() to find the employee promotion for higher grade on satisfying the condition total experience to be greater than 10 and salary to be greater than Rs. 20,000 and the degree qualification to be “PG”, print "PROMOTED FOR HIGHER GRADE". otherwise the employee is not eligible for promotion, print "PROMOTION IS NOT ELIGIBLE
Create the class Student consisting of data members register_no and name. Define array of objects by using constructor Student() to assign the values for the class Student data members, display() member function is used to display the information of student. Finally free the resources of data objects using destructor member function. (Note: Define object size of two)
Declare a class Fixed_Deposit with member variables are principal, rate and time, and member functions are MaturityAmount() to calculate the compound interest and maturity amount, and display() to print the total maturity amount(principal+compound interest)
One box have some apples and another box have some oranges, develop a C++ program to find the sum of fruits and double the sum of fruits in the box using call by reference concept