Answer:
a) The net force on the ball is instantaneously equal to zero newtons at the top of the flight path.
Explanation:
At an instantenous time at the top of the flight path, the upward force due to the Canon explosion on the ball is just equal to the weight of the ball, this will equate the net force on the ball to zero. At this point the velocity of the ball is zero before it decends down to earth under its own weight.
Answer:
for 1st question the answer is 5th option.
for 2nd question the answer is 2nd option
hope it helps you mate
please mark me as brainliast
Answer: B: 20-degree incline
Explanation:
A tractor user should avoid slopes of more than 20 degrees in order to avoid rollovers
Answer:
a) 22.5number
b) 22.22 m length
Explanation:
Given data:
Bridge length = 500 m
width of bridge = 12 m
Maximum temperature = 40 degree C
minimum temperature = - 35 degree C
Maximum expansion can be determined as

where , \alpha is expansion coefficient
degree C
SO, 

number of minimum expansion joints is calculated as

b) length of each bridge

Answer:
- public class Main {
- public static void main(String[] args) {
- String testString = "abscacd";
-
- String evenStr = "";
- String oddStr = "";
-
- for(int i=testString.length() - 1; i >= 0; i--){
-
- if(i % 2 == 0){
- evenStr += testString.charAt(i);
- }
- else{
- oddStr += testString.charAt(i);
- }
- }
-
- System.out.println(evenStr + oddStr);
- }
- }
Explanation:
Firstly, let declare a variable testString to hold an input string "abscacd" (Line 1).
Next create another two String variable, evenStr and oddStr and initialize them with empty string (Line 5-6). These two variables will be used to hold the string at even index and odd index, respectively.
Next, we create a for loop that traverse the characters of the input string from the back by setting initial position index i to testString.length() - 1 (Line 8). Within the for-loop, create if and else block to check if the current index, i is divisible by 2, (i % 2 == 0), use the current i to get the character of the testString and join it with evenStr. Otherwise, join it with oddStr (Line 10 -14).
At last, we print the concatenated evenStr and oddStr (Line 18).