Answer: c. Centre of pressure
Explanation:
Pressure is applied on a surface when a force is exerted on a particular point on that surface by another object when the two come into contact with each other.
The point where the pressure is applied is known as the centre of the pressure with the force then spreading out from this point much like an epicentre in an earthquake.
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:
The correct response will be "0.992". The further explanation to the following question is given below.
Explanation:
The probability that paging would be beneficial becomes 0.8
Effective paging at the very first attempted is 0.8
On the second attempt the success probability will be:
⇒ 
⇒ 
On the third attempt the success probability will be:
⇒ 
⇒ 
So that the success probability will be:
⇒ 
⇒ 
Answer:
Explanation:
Obtain the following properties at 6MPa and 600°C from the table "Superheated water".

Obtain the following properties at 10kPa from the table "saturated water"

Calculate the enthalpy at exit of the turbine using the energy balance equation.

Since, the process is isentropic process 

Use the isentropic relations:

Calculate the enthalpy at isentropic state 2s.

a.)
Calculate the isentropic turbine efficiency.

b.)
Find the quality of the water at state 2
since
at 10KPa <
<
at 10KPa
Therefore, state 2 is in two-phase region.

Calculate the entropy at state 2.

Calculate the rate of entropy production.

since, Q = 0

Answer:
the hurts my brain sorry bud cant help
Explanation: