[solved] – Question 7539
Use a one-dimensional array to solve the following problem: A company pays its salespeople on a commission basis. the salespeople receive $200 per week plus 9% of their gross sales for that week. For example, a salesperson who grosses $5000 in sales in a week receives $200 plus 9% of the $5000, or a total of $650. Write an application (using an array of counters) that determines how many of the salespeople earned salaries in each of the following ranges (assume that each salesperson’s salary in truncated to an integer amount):
750, 1200, 5000, 7575, 10000, 9250, 12500, 3560, and 4800.
Expert Answer
[solved] – Question 7542
how do you write a C# program that asks for three numbers and prints the average value.
Expert Answer
[solved] – Question 7544
The objective of this project is to build a Prolog program that can transform
Well-formed formulas (fbf) of a first order logical language to normal form (conjunctive
cnf or normal form).
To properly handle the existential variables we introduce a new rewrite rules,
Skolemizzazione said:
exist(X, p(X)) -> p(sk00042)
Note how sk00042 ‘and a constant and not variable. Note also that this operation ‘and realt’a
pi’u complicated in the presence of variables universally quantified.
every(Y, exist(X, p(X, Y))) -> every(Y, p(sf666(Y), Y))
A variable existential can be replaced by a function (called Skolem) which is applied
variables pi’u universal “external”.
You’ll need the following code to manage the operation of Skolemization:
skolem_variable(V, SK) :- var(V), gensym(skv, SK).
skolem_function([], SF) :- skolem_var(_, SF).
skolem_function([A | ARGS], SF) :-
gensym(skf, SF_op),
SF =.. [SF_op, A | ARGS].
Expert Answer
[solved] – Question 75442
-If you want to store an integer array named list at memory location 2000, you make the statement ___________
Expert Answer
[solved] – Question 7546
Write a main program class that instantiates a Deck and several Card
objects and calls each of their methods. The purpose of this class is to verify that
your supporting classes work correctly.
Expert Answer
[solved] – Question 75497
Comparing Televisions: You are shopping for a new television and want to compare the prices of three televisions. Research new televisions. Create a worksheet that compares the type, size, and the price for each television, as well as the costs to add an extended warranty. Use the concepts and techniques presented in this module to calculate the average price of a television and average cost of an extended warranty and to format the worksheet.
Expert Answer
[solved] – Question 75573
Write a C# console program to display a multiplication table.
Prompt the user to supply a table number in the range 1 to 20.
Validate that the value given is in the range 1 to 20.
Display the table for values from 1 to 12. For example, if the eight times table is
requested, the display should be as follows:
1 times 8 = 8
2 times 8 = 16
3 times 8 = 24
…
up to:
12 times 8 = 96
A for loop has to be used.
Expert Answer
[solved] – Question 75576
I need help with assignment 7 and it references assignment 5 in it so I linked assignment 5. I need help on step 7-8
http://cs.ecu.edu/karl/2530/spr18/Assn/Assn7/assn7.html
http://cs.ecu.edu/karl/2530/spr18/Assn/Assn5/assn5.html
Expert Answer
[solved] – Question 75582
Using txt file Horoscope for example, how would you create a file object and Load the file into a 2D vector: vector<vector<char>>
Expert Answer
[solved] – Question 75598
An automobile dealership uses CODE = 1 for new automobiles, CODE = 2 for used automobiles, and CODE = 3 for separate accessories. A salesman’s commissions are as follows: on new automobile, 3% of the selling price but a maximum of $300; on used automobile, 5% of the selling price but with a minimum of $75; on accessories, 6% of selling price.
1. Draw a flowchart that inputs CODE and PRICE and outputs COMMISSION.
2. Write a pseudocode programme that inputs CODE and PRICE and outputs COMMISSION.
Expert Answer

