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

let's build a Speed Typing Test by using the dynamic concepts of javascript


a) Write a method PopulationTotal that accepts 2 positive values, namely the current










A contact list is a place where you can store a specific contact with other associated information such as a phone number, email address, birthday, etc. Write a program that first takes as input an integer N that represents the number of word pairs in the list to follow. Word pairs consist of a name and a phone number (both strings), separated by a comma. That list is followed by a name, and your program should output the phone number associated with that name. Output "None" if name is not found.

Ex: If the input is:

3 Joe,123-5432 Linda,983-4123 Frank,867-5309 Frank

the output is:

867-5309

Your program must define and call the following function. The return value of GetPhoneNumber is the phone number associated with the specific contact name.

string GetPhoneNumber(vector<string> nameVec, vector<string> phoneNumberVec, string contactName)

Hint: Use two vectors: One for the string names, and the other for the string phone numbers.


Make a program that will accepts two numbers (first number is for birth month, second number is for birth date) and display its zodiac sign using combined equality and logical operators.


Make a program that will compute and display the sum, difference, product and quotient of two numbers.


NOTE: Not by using arrays.

write a C++ function. in which A college offers a course that prepares students for the state licensing exam for real estate brokers.

Last year, ten of the students who completed this course took the exam. The college wants to know

how well its students did on the exam. You have been asked to write a program to summarize the

results. You have been given a list of these 10 students. Next to each name is written a 1 if the

student passed the exam or a 2 if the student failed.

Your program should analyze the results of the exam as follows:

Input each test result (i.e., a 1 or a 2). Display the prompting message "Enter result" each time the

program requests another test result.

Count the number of test results of each type.

Display a summary of the test results indicating the number of students who passed and the

number who failed.

If more than eight students passed the exam, print the message "Raise tuition." write code in function not by using arrays



Write a program to print the following output,


Sample Input1

2

5

1 2 3 4 5

6

2 20 3 30 4 40


Sample Output1

33

201


Design a flowchart for a program that accepts a unit price and quantity of items sold and displays total amount and VAT. (Note: Unit price is VAT exclusive. VAT rate is 16.5%.).


Write a C++ program that prompts the user for the fuel quantity and the fuel price per litre. The program should then print a fuel receipt like the one below: Receipt ======= Volume: 15.50 L Litre Price: MK 1380.50/L ------------ To be Paid: MK 21,397.75 ***End of receipt**


Write a C++ program to enter a number represents a person age then display the


following on a message boxes:


1. "Wrong age" if the age less than or equal to 0 years.


2. "Child" if the age less than 8 years.


3. "Boy" if the age greater than or equal to 8 years.


4. "Young" if the age greater than or equal to 18 years.


5. "Old" if the age greater than or equal to 35 years.


6. "Very Old" if the age greater than or equal to 65 years.

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS