Answer:

Explanation:
speed of motor (N)=1500 rpm
power=4 hp =
=2.9828 KW
service factor(k)= 2.75
now,


torque rating

Answer:
Ancestor are our great grandparents
Answer:
the ability to absorb or avoid damage without suffering complete failure and is an objective of design, maintenance and restoration for buildings and infrastructure
Explanation:
Answer:
# Python Program to Print
# all subsets of given size of a set
import itertools
def findsubsets(s, n):
return list(itertools.combinations(s, n))
# Driver Code
s = {1, 2, 3}
n = 2
print(findsubsets(s, n))
-----------------------------------------------
# Python Program to Print
# all subsets of given size of a set
import itertools
# def findsubsets(s, n):
def findsubsets(s, n):
return [set(i) for i in itertools.combinations(s, n)]
# Driver Code
s = {1, 2, 3, 4}
n = 3
print(findsubsets(s, n))
-------------------------------------------------------------
# Python Program to Print
# all subsets of given size of a set
import itertools
from itertools import combinations, chain
def findsubsets(s, n):
return list(map(set, itertools.combinations(s, n)))
# Driver Code
s = {1, 2, 3}
n = 2
print(findsubsets(s, n))
Answer:
let number = 0
while number < 1
begin
print "Enter a positive integer: "
read number
end
end_while
find and print number's factors:
let prime = TRUE
let currentFactor = 2
let lastFactor = the square root of number truncated
to an integer value
while currentFactor <= lastFactor
begin
if number is evenly divisible by currentFactor
begin
print currentFactor
let number = number / currentFactor
end
else
let currentFactor = currentFactor + 1
end_if
end
end_while
print a message if number is prime:
if prime == TRUE
print "Your number is prime"
end_if
Explanation: