given polynomial write a program that prints polynomial in cix^pi + ci-1x^pi-1 c1x + c0 format
VISUAL BASIC
Design and develop a simple application System that determine the most economical quantity to be stocked for each product that a manufacturing company has in its inventory this quantity called economics order quantity (EOQ) is calculated as following
EOQ = sqrt (2RS/I)
Where
R = total yearly Production Requirement
S = Set up Cost per order
I = inventory carrying cost per unit
Note: After the user enter the total year production Requirements (R) its set up cost per oder (S) and inventory carrying cost per unit (I) at text baxes 1,2 & 3 expectively the user should Click button (with a compute caption) before the resulting computed value will be displayed at the text box 4
Use the Convert.TextString(Math.Eqrt(intNum1)); mathematical function to get the square root value
where intNum1 is the number of square root
Exercise 3 : Practice to manipulate 2D arrays
Use a double-subscripted array to solve the following problem. A company has four salespeople ( 1 to 4) who sell five different products ( 1 to 5). Once a day, each salesperson passes in a slip for each different type of product sold. Each slip contains:
a) The salesperson number
b) The product number
c) The total dollar value of that product sold that day
Assume that the information from all the slips for a day is available. Write a program that will read all this information for the day and store in a double-subscripted array sales. For each product find and display the total sales.
Consider an array MARKS[20][5] which stores the marks obtained by 20 students in 5 subjects. Now write a program to
(a) find the average marks obtained in each subject.
(b) find the average marks obtained by every student.
(c) display the scores obtained by every student and grades according to the average marks obtained by every student
Enter your name: Hunter Chase Sanford
Enter your course: I.T
Enter your year and section: 2-A
Enter the academic year: 2021-2022
Enter first number: 6
Enter second number: 2
Hello, Hunter Chase Sanford! You are currently enrolled in I.T 2-A, A.Y. 2021-2022.
The sum is: 8
The difference is: 4
The product is: 12
The quotient is: 3