Answer: 33.35 minutes
Explanation:
A(t) = A(o) *(.5)^[t/(t1/2)]....equ1
Where
A(t) = geiger count after time t = 100
A(o) = initial geiger count = 400
(t1/2) = the half life of decay
t = time between geiger count = 66.7 minutes
Sub into equ 1
100=400(.5)^[66.7/(t1/2)
Equ becomes
.25= (.5)^[66.7/(t1/2)]
Take log of both sides
Log 0.25 = [66.7/(t1/2)] * log 0.5
66.7/(t1/2) = 2
(t1/2) = (66.7/2 ) = 33.35 minutes
Answer:
<u>note:</u>
<u>solution is attached in word form due to error in mathematical equation. furthermore i also attach Screenshot of solution in word due to different version of MS Office please find the attachment</u>
Moral creativity and innovation are based on original discoveries, whereas immoral innovation is based on unscrupulous actions.
<h3>What is innovation?</h3>
Innovation refers to the practices aimed at developing new products and services for the well-being of society.
Moral innovation is an expression generally used to describe technological advancements based on intellectual property rights.
In conclusion, moral creativity and innovation are based on original discoveries, whereas immoral innovation is based on unscrupulous actions.
Learn more about innovation here:
brainly.com/question/19969274
#SPJ1
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:
Increases
Explanation:
By inhibiting the motion of dislocations by impurities in a solid solutions, is a strengthening mechanism. In solid solutions it is atomic level strengthening resulting from resistance to dislocation motion. Hence, the strength of the alloys can differ with respect to the precipitate's property. Example, the precipitate is stronger (ability to an obstacle to the dislocation motion) than the matrix and it shows an improvement of strength.