Answer:
to optimize the reliability of equipment and infrastructure;
- to ensure that equipment and infrastructure are always in good condition;
- to carry out prompt emergency repair of equipment and infrastructure so as to secure the best possible availability for production;
- to enhance, through modifications, extensions, or new low-cost items, the productivity of existing equipment or production capacity;
- to ensure the operation of equipment for production and for the distribution of energy and fluids;
- to improve operational safety;
- to train personnel in specific maintenance skills;
- to advise on the acquisition, installation and operation of machinery;
- to contribute to finished product quality;
- to ensure environmental protection.
Explanation:
pick whichever you want
PLEASE HELP
NASA scientists have determined that the chance a single person would get hit by a piece of falling satellite is one in 3,200. What can you infer based on this probability?
A. Satellites that enter Earth’s atmosphere land mostly in the ocean.
B. NASA does a good job informing people of when satellites will enter the atmosphere.
C. Satellites that enter Earth’s atmosphere land mostly in unpopulated areas.
D. Much of a satellite is destroyed during the process of entering Earth’s atmosphere.
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:
(a) Mn = M₁ + (n-1) (M₂ -M₁) = 1 + (n- 1) 1 = n (b) n > 10 (exceed 10) or n =11 (c) n >50 or n= 51
After making a journey of 51 times, the rocket will be discarded
Explanation:
Solution
(a) Let Mn denotes the number of maintenance visits after the nth journey
Then M₁ = 1 , M₂ = 1 +M₁ = 2, M₃ = 1 +M₂ = 3
We therefore, notice that M follows an arithmetic sequence
So,
Mn = M₁ + (n-1) (M₂ -M₁)
= 1 + (n- 1) 1 = n
or Mn =n
(b) For what value of n we will get fro Mn > 10
Thus,
n > 10 (exceed 10) or n =11
(c)Similarly of Mn is greater than 50 or Mn>50, the rocket will not be used or reused
So,
n >50 or n= 51
After making a journey of 51 times, the rocket will be discarded