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

enter the assessed value and tax rate

caculate th annual property tax by dividing the assessed value by 100 and then multiplying the result by the tax rate

display the annual property tax


Management of Charles Saah & Associate a poultry farm has realized that the staff are
stealing the eggs that are harvested, counted and kept in stock. This is because they
cannot check how many eggs have been sold, and how many left. After several
consultations they decided to automate the stock taking process. The chief executive
officer Charles Saah, contacted Charles Saah of AiT Systems (CSAiTS) to help develop
a system for the automation. It was decided that the software for the automation should
perform the following when installed. Assuming that a crate of egg cost GHS20 and only
full crates of eggs are to be sold.
a. Take the name of the person harvesting the eggs, the total crates of eggs
harvested and stocked.
b. Allow eggs to be sold in creates but, cannot sell more crates of eggs than in stock.
This process should be performed five time each time compare the stock level as
you cannot sell more than what is in stock.
C. Explain the logic behind your code.

Given a student has scored

M marks in Maths, P marks in Physics and C marks in Chemistry. Write a program to check if a student is eligible for admission in a professional course based on the following criteria:M >= 35, P >= 35, C >= 35 and total in any of the two subjects >= 90.

Input

The first line is an integer

M, the second line is an integer P and the third line is an integer C.Output

The output should be a single line containing

True if it satisfies the given conditions, False in all other cases.Explanation

Given

M = 50, P = 35, C = 40

Sample Input1:

50

35

40


Sample Output:True


35

35

100

Sample Output:True


Given a student has scored

M marks in Maths, P marks in Physics and C marks in Chemistry. Write a program to check if a student is eligible for admission in a professional course based on the following criteria:Sum of marks in any two subjects >= 100 and M + P + C >= 180.

Input

The first line is an integer

M, the second line is an integer P, and the third line is an integer C.Output

The output should be a single line containing

True if it satisfies the given conditions, False in all other cases.

Sample Input

82

55

45

sample output:True

Sample Input

71

30

70

Sample Output:False




Write code that puts "less than -9\n" to output if the value of userNum is less than -9.

Ex: If userNum is -15, then output is:

less than -9
userNum: -15
ticket selling booth in a cricket stadium, people has to buy the ticket from
this booth to enter into the stadium. Price of the each ticket is Rs. 500. The
booth keeps track of the number of people visited the stadium. Model this
ticketing booth with a class called Counter A including following members
Data members
(i) Number of people visited
(ii) Total amount money collected
Member functions
(i) To assign initial value
(ii) To increment people total as well as amount total if a ticket is sold
out.
(iii) To display two totals
Write a program to test this class.

Write a program to evaluate the arithmetic statement 𝑥 = −𝑏 + (𝑏 ∗ 𝑏 − 4 ∗ 𝑎 ∗ 𝑐)/ 𝐶 + 𝐻 i. Using a general register computer with 3 address constructions ii. Using a stack organized computer with zero address operation instructions. 


given a matrix of size m×n with values ranges from 100 to 150 . write a C program to generate

0-1 Matrix based on threshold value of 125 . If the matrix element is greater than the threshold set the element to 1 else set the element to 0. print the input Matrix and generate the 0-1 Matrix (use function with 2D array and threshold as arguments)

Sample input:

Input matrix: 120 117 136

110 150 128

135 114 149

Sample output:

0 0 1

0 1 1

1 0 1


determine the cumulative sum of n floating point numbers read a new number into the computer during each call to recursive function

Sample input:

n=3

Enter the number:0.8

Enter the number:0.1

Enter the number:0.2

Sample output:

Cumulative sum=1.1


write a C program to convert the string "CEASER " to "HJFXJW "without using inbuilt function


LATEST TUTORIALS
APPROVED BY CLIENTS