Answer:
Linux, computer operating system created in the early 1990s by Finnish software engineer Linus Torvalds and the Free Software Foundation (FSF). While still a student at the University of Helsinki, Torvalds started developing Linux to create a system similar to MINIX, a UNIX operating system.
Explanation:
A. Move the bottom-line statement to the end of the document.
O
B. Enter each supporting detail from the outline on a separate line.
O
c. Write a topic sentence for every detail.
O
D. Enter each major point from the outline on a separate line.
Answer: D. enter each major point from the outline on a separate line
The program is supposed to return a hailstone Sequence
A)- get user input (integer) - N
B) check if even or odd
- if the input is even, the next number should N/2
- if the user's input (N*3)+1
C) reproduce the operation on the next number until the number is equal to 1
D) display the sequence
E) count and display the number of iterartion
I have the user input done, and then, I tried to do a bitwise operation using AND to see if the number is even or not but the program doesn't work after the user's input, as i have an output equal to zero
can you help me please?
here is my code so far
.data
prompt: .asciiz "enter an integer:"
message1: .asciiz "you entered an even number"
message2: .asciiz "you entered an odd number"
message3: .asciiz "and the next numbers should be:"
gototheline: .asciiz "\n"
message4: .asciiz "you just entered the number:"
.text
main:
#print the prompt
li $v0,4
la $a0,prompt
syscall
#get the user's input
li $v0,5
syscall
#store the input'svalue
move $t3, $v0
#display the user's input message
li $v0,4
la $a0,message4
syscall
#go to the line
li $v0,4
la $a0,gototheline
syscall
#print value entered by user
li $v0,1
move $a0, $t3
syscall
#go to the line
li $v0,4
la $a0,gototheline
syscall
#bitwise operation on the input
and $a0,$0,1
#call odd function if number is odd
beq $a0,1,ifodd
#print next number message
li $v0, 4
la,$a0,message3
syscall
#go to the line
li $v0,4
la $a0,gototheline
syscall
#print result
li $v0,1
addi $a0,$v1,0
syscall
li $v0,10
syscall
ifeven:
#print message if even
la $a1,message1
syscall
#call the function operation even to do math on the number entered by user
jal operationeven
ifodd:
#print message if odd
la $a2,message2
syscall
#call method to do math on the number entered by user
jal operationodd
operationeven:
#if even N/2
div $v1,$t3,2 # return value on $v1
jr $ra #go back to the main
operationodd:
#multiply by 3
mul $t1,$t3,3
#add 1 to the result of the multiplication
add $v1, $t1,1 #return value on $v1
jr $ra #go back to the main
Answer:
(p+3t/6) ÷ (p÷6) = 8
Explanation:
(p+3t/6) ÷ (p÷6)
Given that:
p=6 AND t=4
Putting values of p and t in equation:
=(6+3(4)/6)/ (6/6) First we will solve the round brackets
=(6+12/6)/(1) As 3*4 =12
=(6+2) As 12/6 = 2 and anything dividing by one remains same
=8 Answer
B. 1.5 k 10%
C. 2.7 k 5%
D. 30 k 10%
The correct answer is B!