functions are available with MS-Excel..
1.count and sum
2.cell references
3.data and Time
4.text
5.lookup and reference
6.finanical
7.round
8.array formula
Answer:
import java.util.Scanner;
public class WeeklySalary {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Enter Hourly wage");
double hourlyWage = in.nextDouble();
System.out.println("Enter total hours worked in the week");
int hoursWorked = in.nextInt();
int overtime = hoursWorked - 40;
double weeklyWage = 40*hourlyWage;
System.out.println("Total Over Time Hours is: "+overtime);
double overTimeWage = overtime*(hourlyWage*1.5);
System.out.println("Wage for full time: "+ weeklyWage);
System.out.println("Wage for over time: "+ overTimeWage);
}
}
Explanation:
- Using Java programming language
- Import the Scanner class to receive user input
- prompt user for hourly wage rate, receive and save in a variable
- Prompt user for total hours worked for the week receive and save in a variable
- calculate overtime hours by subtracting 4 from total hours worked in the week
- Calculate weekly wage by multiplying hourly rate by 40
- Calculate overtime by multiplying overtime hours by (hourlyWage*1.5).
- See attached sample run of the code
Answer:
The correct answer to the following question will be "The cloud computing framework is emerging as an important innovation area of business".
Explanation:
- Cloud computing allows the company or business to remotely manage their records, providing a broad means of accessing their data anywhere, all time.
- Essentially, you borrow a cloud service provider's server space or connections to applications and links across the Web. Rather than purchasing your own IT equipment, you rent from a provider and only charge for the services you need.
- The guide helps you appreciate computing, as well as the different methods of cloud hosting, which can be used in your organization.
Therefore, it's the right answer.
I believe the word you're looking for is properties.
Answer:Maybe put in Ball.move.left.right(100)
Explanation:
If the ball should move then the code might be left and right,
I don't know if I am right but I do coding too.