Explanation:
1) Work done = force x distance x cos(θ)
= 0.15 x 6 x cos(30)
= 0.779
2) Ek = ½mv²
v = acceleration due to gravity so 9.81
Ek = ½(2)(9.81)²
Ek = 96.2361
3) v = (√(2em)) / m
= (√(2(96.2361)(2)) / 2
= 9.81 so especially with no time given, I can only assume the acceleration due to gravity but take it with a pinch of salt.
Answer:
The most common reason a cruise control stops working is due to a blown fuse or a defective brake pedal switch. It can also be caused by issues with the throttle control system or the ABS. In older cruise control systems it can be caused by a broken vacuum line.
Answer:
If analyzed by volume capacity, more trips are needed to fill the space, thus the required trips are 288
Explanation:
a) By volume.
The shrinkage factor is:

The volume at loose is:

If the Herrywampus has a capacity of 30 cubic yard:

b) By weight
The swell factor in terms of percent swell is equal to:


The weight of backfill is:

The Herrywampus has a capacity of 40 ton:

If analyzed by volume capacity, more trips are needed to fill the space, thus the required trips are 288
Answer:
In the attached solution, the following calculations have already been calculated: Per phase , Maximum , RMS value of Internal Voltage in this sequence.
Explanation:
Answer:
The solution code is written in Java.
- public class Main {
-
- public static void main(String[] args) {
-
- Scanner inNum = new Scanner(System.in);
- System.out.print("Enter number of toss: ");
- int num = inNum.nextInt();
-
- for(int i=0; i < num; i++){
- System.out.println(toss());
- }
- }
-
- public static String toss(){
- String option[] = {"heads", "tails"};
- Random rand = new Random();
- return option[rand.nextInt(2)];
- }
- }
Explanation:
Firstly, we create a function <em>toss()</em> with no parameter but will return a string (Line 14). Within the function body, create an option array with two elements, "heads" and "tails" (Line 15). Next create a Random object (Line 16) and use <em>nextInt()</em> method to get random value either 0 or 1. Please note we need to pass the value of 2 into <em>nextInx() </em>method to ensure the random value generated is either 0 or 1. We use this generate random value as an index of <em>option </em>array and return either "heads" or "tails" as output (Line 17).
In the main program, we create Scanner object and use it to prompt user to input an number for how many times to toss the coin (Line 6 - 7). Next, we use the input num to control how many times a for loop should run (Line 9). In each round of the loop, call the function <em>toss() </em>and print the output to terminal (Line 10).