Homework Answers

Math 51397 50414
Physics 44335 44333
Chemistry 40988 40988
Economics 30646 30644
Programming & Computer Science 26878 26876
English 10084 10084
Biology 8111 8109
Management 6239 6239
Engineering 6056 6056
History 3490 3489
Psychology 2129 2129
Sociology 1858 1858
Geography 1574 1574
Marketing 1443 1443
Philosophy 1001 1001
Political Science 892 891
Law 876 876
French 438 438
Other 199 199

Questions: 238 634

Answers by our Experts: 237 641

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

I'm not getting any output to search item in a mart code So,please verify it


JamEx Limited requires a program to calculate and print the commission received by a

salesperson. The program should process an undetermined number of salespersons and

appropriately terminate by a predefined input. The commission rate is based on two factors,

the amount of sales and the class to which a salesperson belongs. The input will be the

salesperson number, sales amount and class. The commission rate will be based on the

following criteria:

Class=1

If sales is equal to or less than $1000, the rate is 6 percent.

If sales is greater than $1000 but less than $2000, the rate is 7 percent.

If the sales is $2000 or greater, the rate is 10 percent.

Class=2

If the sales is less than $1000, the rate is 4 percent.

If the sales is $1000 or greater, the rate is 6 percent.

Class=3

The rate is 4.5 percent for all sales amount

Class=any other value

Output an appropriate error message.


Need answer in pseudocode


A town has a population of 17000 and grows at 4% every year. What will be the population after 12 years, to the nearest whole number?



Determine which of the following is the solution set of the linear equations below.


3x − y + z = 2

2x − z = 2


An element with mass 820 grams decays by 26.8% per minute. How much of the element is remaining after 18 minutes, to the nearest 10th of a gram?


A skater glides along a circular path of radius 2.50m . If she coasts around one half of the circle, find the distance in m from the starting location


Jaya Jusco (JJ) Sdn Bhd needs you to develop an application to calculate their customer JJ point’s reward. Define a class named Customer with the following variables declarations:


String CustName;

String CustAddress;

int pointRewards;

 

a)  Provide a default constructor and another constructor with three parameters. The constructor with parameters will assign the three values (String CustomerName, String CustomerAddress, int point). Define a public instance method named calculatePoint()to calculate the customer rewards if the point is greater than 300 points. The formula indicates that if the point is greater than 300 points, the system will add up extra 50 points.


b)Define another class named Testing to test the Customer class. Use the Scanner method to get the CustomerName, CustomerAddress and point values from the user. Declare class and create object Customer. Call the calculatePoint( ) method to display the current customer points reward.



What is the overall chemical changes that occur during one complete turn of the krebs cycle?


ewrite the following C++ code in pseudocode. (5)

for (int x = 1; x <= 10; x++) {

for (int y = 10; y >= x; y--) {

if (y % 2 == 0) {

cout << "*";

}

else {

cout << "#";

}

}

cout << endl;


Write a C++ program for a lecturer to convert all his (5 students) student marks to 

a percentage. Enter the total mark of the test, and then enter for each student his 

student number, and the mark obtained by the student. Display the student number, 

percentage, and status indicating whether the student passed (50% or more) or failed 

the test.

Include the following function and sub procedures (as shown in the table below):

LectureApp

NO METHOD NAME DESCRIPTION MARK

1 main This function prompts for the total and 

also invokes the required procedures to 

display the results.

7

2 getData This sub procedure prompts for the 

student number and mark obtained by the 

student from the end-user.

4

3 determinePercentage This function returns the mark obtained in

percentage.

4

4 determineStatus This function returns true if the student 

passed or false, otherwise.

6

5 printOutput This sub procedure displays the output as 

shown in the sample output.

4


LATEST TUTORIALS
APPROVED BY CLIENTS