Answer:
def output_ints_less_than_or_equal_to_threshold(user_values, upper_threshold):
for value in user_values:
if value < upper_threshold:
print(value)
def get_user_values():
n = int(input())
lst = []
for i in range(n):
lst.append(int(input()))
return lst
if __name__ == '__main__':
userValues = get_user_values()
upperThreshold = int(input())
output_ints_less_than_or_equal_to_threshold(userValues, upperThreshold)
Answer:
1. The magnetic flux line form a closed loop.
2. The magnetic flux line repel each other.
3. The magnetic flux line never intersect.
Answer:
work done = 48.88 ×
J
Explanation:
given data
mass = 100 kN
velocity = 310 m/s
time = 30 min = 1800 s
drag force = 12 kN
descends = 2200 m
to find out
work done by the shuttle engine
solution
we know that work done here is
work done = accelerating work - drag work - descending work
put here all value
work done = ( mass ×velocity ×time - force ×velocity ×time - mass ×descends ) 10³ J
work done = ( 100 × 310 × 1800 - 12×310 ×1800 - 100 × 2200 ) 10³ J
work done = 48.88 ×
J
Answer:
Explanation:
ADT for an 2-D array:
struct array{
int arr[10];
}arrmain[10];
An application that stores an array with 1000 rows and 1000 columns, where less than 10,000 of the array values are non-zero. The two different implementations for such arrays that would be more space efficient than a standard two-dimensional array implementation requiring one million positions are :
1) struct array{
int *p;
}arr[1000];
2) struct array{
int *p;
}arr[1000];
Answer:
The part of the system that is considered the resistance force is;
B
Explanation:
The simple machine is a system of pulley that has two pulleys
The effort, which is the input force at A gives the value of the tension at C and D which are used to lift the load B
Therefore, we have;
A = C = D
B = C + D = C + C = 2·C
∴ C = B/2
We have;
C = B/2 = A
Therefore, with the pulley only a force, A equivalent to half the weight, B, of the load is required to lift the load, B
The resistance force is the constant force in the system that that requires an input force to overcome in order for work to be done
It is the force acting to oppose the sum of the other forces system, such as a force acting in opposition to an input force
Therefore, the resistance force is the load force, B, for which the input force, A, is required in order for the load to be lifted.