Answer:
Code is given below:
Explanation:
.data
str1: .space 20
str2: .space 20
msg1:.asciiz "Please enter string (max 20 characters): "
msg2: .asciiz "\n Please enter string (max 20 chars): "
msg3:.asciiz "\nSAME"
msg4:.asciiz "\nNOT SAME"
.text
.globl main
main:
li $v0,4 #loads msg1
la $a0,msg1
syscall
li $v0,8
la $a0,str1
addi $a1,$zero,20
syscall #got string to manipulate
li $v0,4 #loads msg2
la $a0,msg2
syscall
li $v0,8
la $a0,str2
addi $a1,$zero,20
syscall #got string
la $a0,str1 #pass address of str1
la $a1,str2 #pass address of str2
jal methodComp #call methodComp
beq $v0,$zero,ok #check result
li $v0,4
la $a0,msg4
syscall
j exit
ok:
li $v0,4
la $a0,msg3
syscall
exit:
li $v0,10
syscall
methodComp:
add $t0,$zero,$zero
add $t1,$zero,$a0
add $t2,$zero,$a1
loop:
lb $t3($t1) #load a byte from each string
lb $t4($t2)
beqz $t3,checkt2 #str1 end
beqz $t4,missmatch
slt $t5,$t3,$t4 #compare two bytes
bnez $t5,missmatch
addi $t1,$t1,1 #t1 points to the next byte of str1
addi $t2,$t2,1
j loop
missmatch:
addi $v0,$zero,1
j endfunction
checkt2:
bnez $t4,missmatch
add $v0,$zero,$zero
endfunction:
jr $ra
Answer:

Explanation:
Given data:
flow rate = 10 gallon per minute = 0.0223 ft^3/sec
diameter = 0.75 inch
we know discharge is given as
Q = VA
solve for velocity V = \frac{Q}{A}[/tex]

V = 7.27 ft/sec
we know that Reynold number



calculate the
ratio to determine the fanning friction f

from moody diagram f value corresonding to Re and
is 0.037
for horizontal pipe


where 1.94 slug/ft^3is density of water

Answer:
a) 149 kJ/mol, b) 6.11*10^-11 m^2/s ,c) 2.76*10^-16 m^2/s
Explanation:
Diffusion is governed by Arrhenius equation

I will be using R in the equation instead of k_b as the problem asks for molar activation energy
I will be using

and
°C + 273 = K
here, adjust your precision as neccessary
Since we got 2 difusion coefficients at 2 temperatures alredy, we can simply turn these into 2 linear equations to solve for a) and b) simply by taking logarithm
So:

and

You might notice that these equations have the form of

You can solve this equation system easily using calculator, and you will eventually get

After you got those 2 parameters, the rest is easy, you can just plug them all including the given temperature of 1180°C into the Arrhenius equation

And you should get D = 2.76*10^-16 m^/s as an answer for c)
Answer:
Time taken by the
diameter droplet is 60 ns
Solution:
As per the question:
Diameter of the droplet, d = 1 mm = 0.001 m
Radius of the droplet, R = 0.0005 m
Time taken for complete evaporation, t = 1 min = 60 s
Diameter of the smaller droplet, d' = 
Diameter of the smaller droplet, R' = 
Now,
Volume of the droplet, V = 
Volume of the smaller droplet, V' = 
Volume of the droplet ∝ Time taken for complete evaporation
Thus

where
t' = taken taken by smaller droplet


t' = 
Answer:
The correct option is B) Balance Sheet
Explanation:
A Balance Sheet offers a description of a company's obligations, assets, and investments as well as net income over a given span of time such as a period of 6 months or 12 months, for instance.
Also known as the Statement of Financial Position, it contains sufficient information for investors and business owners to determine the company's financial performance in that period as well as to compare the performance of that company with industry norms or competition.
Cheers