Questions: 11 448

Answers by our Experts: 10 707

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Search & Filtering

What are the benefits of web-based e-mail services, like those offered by Yahoo! and MSN, for home

users? Why are companies unlikely to use these services for business purposes?


An Islamic bank wants you to develop a Zakat Calculator for them. The calculator shall take the input of the:

1) name of zakat donor,

2) Bank_Balance

3) zakat_amount.

Create constructor to initialize variables with default values which will be called on the time of object instantiation.

There should be a method named “Cal_zakat()” which calculates the zakat of each donor and set in zakat_amount. The program adds up the zakat of each donor hence calculating the total_zakat of the bank. Use a “display()” which displays not only the data of the donor but also the total amount of zakat of the bank. It should keep in mind that the zakat will be calculated only if Bank_Balance is greater than or equal to 20,000. (You should implement the concept of overloading, copy constructor or overriding wherever it is applicable)

Note: Zakat will be calculated by the formula (Bank_Balance *2.5)/100. 


1) Create a class Worker with attributes name, age and salary. This class contain default constructor, getData, Display and a pure virtual function named as calculate commission with a virtual destructor.


a) A class Salaried that inherits from Worker contain parameterize constructor and a function that calculates the commission of the worker and display total salary constantly.


b) A class Hourly that inherits from Worker calculates the commission of Worker with of 5% and display total salary constantly. Instantiate Salaried and Hourly classes polymorphically.


Note: Commission of an employee of Salaried class is 10% and for class Hourly employee is 5%.  


C++: write a program that uses for loop and print the number between 3 to 10


2.Give a brief Account on the technology used in flash memory implementation. [25 marks]


3.Explain the start-up process clearly indicating the purpose of the POST,BiOS and CMOS.[25 marks]


4.With the aid of the diagram,give a brief explanation on the type of busses available on modern computer systems and tge purpose of the North bridge and south Bridge.

Your diagram should clearly show where the bridges are and what conects them. [25 marks]


C++: By using a for loop, write a program that prints the numbers 45 to –45, in decrements of 5:
A cashier distributes change using the maximum number of five dollar bills, followed by one dollar bills. For example, 19 yields 3 fives and 4 ones. Write a single statement that assigns the number of 1 dollar bills to variable numOnes, given amountToChange. Hint: Use the % operator.

#include <iostream>
using namespace std;
int main() {
int amountToChange;
int numFives;
int numOnes;

cin >> amountToChange;
numFives = amountToChange / 5;

/* Your solution goes here */

cout << "numFives: " << numFives << endl;
cout << "numOnes: " << numOnes << endl;
return 0;
}

Write a c++ program to implement the following . Assuming that a text file named first.txt contains some text written into it .write a function named vowelwords(), that reads the file first.txt and creates a new file named second.txt ,to contain only those words from the file first.txt which start the lowercase vowel (a,e,i,o,u).


For m = 6 and n = 5, write a C++ code to accomplish the above


The results from search engines cannot be relied upon.’ Carry out any additional research you need in
order to discuss whether or not you think this statement is true
LATEST TUTORIALS
APPROVED BY CLIENTS