Answer:
The weld that is shaped like a right triangle and is commonly used to make lap joints corner joints, and T-joints is;
Fillet weld
Explanation:
Fillet welds are defined as welds that have a cross section that is approximately triangular in shape that is used for joining two surfaces that form a perpendicular of near perpendicular alignment to each other in joint configurations including a lap joint, T-joint, and corner joint, such that the cross section of the weld is approximately the same as a right triangle.
Answer:
a) 2.5 ms
b) 3.37 ms
c) 12.5 ms
d) 62.5 ms
Explanation:
Determine how long it takes for an input size of 500
<u>a) Linear </u>
For an input size of 500
time taken = ( ( 0.5 / 100 )* 500 ) ms = 2.5 ms
<u>b) 0(N log N ) </u>
First step : determine number of instructions For an input size ( N ) = 100
Log N = 6.65
∴ N log N = 665 instructions
i.e. 665 instructions is passed during 0.5ms
For
N log N = 500
N500 = 4483 instructions
time taken = (4483 * 0.5)/665 = 3.37 ms.
<u>c) Quadratic </u>
lets take N = 100
N^2 = 10000 steps per 0.5 ms
For N = 500
N^2 = 250,000 steps
time taken = (25000*0.5) / 10000 = 12.5 ms
<u>d) cubic .</u>
lets take N = 100
N^3 = 1,000,000 steps per 0.5 ms
hence for N = 500
N^3 = 125*10^6 steps
hence time taken = ( (125*10^6)*0.5 / 10^6) = 62.5 ms
Here's link to the answer:
tinyurl.com/wpazsebu
Answer:
import math
first = float(input("What is your first number? "))
second = float(input("What is your second number? "))
print("The square root of your first number is", math.sqrt(first))
print("The square root of your second number is", math.sqrt(second))