Determine the cost of Labour amounts to R1245 with an equipment rent in free of R250 to produce five devices
Explain the motion of rigid body with a fixed point under no forces
Write a program that will get the average of all integers from 1 to 20 using do-while loop
Create a C program that the user can make a selection.
Sample Output :
E or e for Even
O or o for Odd
X or x for Exit
A Character that is not on the selection print Error!
Print 1 to 10 and multiply it to 1 to 20 even numbers using while loop in c.
Sample Output :
1 * 2 = 2
2 * 4 = 8
3 * 6 = 18
4 * 8 = 32
5 * 10 = 50
6 * 12 = 72
7 * 14 = 98
8 * 16 = 128
9 * 18 = 162
10 * 20 = 200
suppose a population consists of the numbers 2,3,5,8 and 12 what is the mean of the population?
Two cars, A and B, start at the same point. A travels north at 10 mph and B at 8 mph due
southwest. Find in what direction and rate by which car B is moving, with regards to car A.
Write a generic C++ recursive function PrintPattern2 to print diamond pattern using recursion. No loops allowed whatsoever, and you can write other helping (recursive) functions. For example, calling your function with these argument PrintPattern2(5,1,5) should print following pattern.
Your function prototype must be as follows:
void PrintPattern2(int, int ,int);
A fluid temperature rise of 18°C in the fluid cooled condenser is equivalent in °F to:
Write a program that takes a 2D pointer array and calculate sum of even and odd using recursive
function.
int sum(int **array, int row, int column, int &evenSum, int &oddSum)