Answer:
c. V2 equals V1
Explanation:
We can answer this question by using the continuity equation, which states that:
(1)
where
A1 is the cross-sectional area in the first section of the pipe
A2 is the cross-sectional area in the second section of the pipe
v1 is the velocity of the fluid in the first section of the pipe
v2 is the velocity of the fluid in the second section of the pipe
In this problem, we are told that the pipe has a uniform cross sectional area, so:
A1 = A2
As a consequence, according to eq.(1), this means that
v1 = v2
so, the velocity of the fluid in the pipe does not change.
Difference between Datum and Datum feature is<em> 'Datum is theoretical and Datum feature is real'.
</em>
Option: (b)
<u>Explanation:</u>
A Datum is a perfect plane, line, point or surface but only occurs theoretically.
However a Datum Feature is fully based on a tangible surface, axis or point on a part where that theoretical datum is located.
The reason behind in this is they are not equal to each other because the 'part surface' is never 100% perfect.
The important functional features of the Datum is controlled during measurements.
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
How to create a personal hot spot on an iPhone?
Go to Settings | Cellular | Personal Hotspot.
Tap the slider next to Allow Others to Join. ...
Your Wi-Fi Password will be shown right underneath the Allow Others to Join option. ...
Now, on another device, such as a laptop, go to the Wi-Fi section and search for nearby networks.