Answer:
Check the explanation
Explanation:
Code
.ORIG x4000
;load index
LD R1, IND
;increment R1
ADD R1, R1, #1
;store it in ind
ST R1, IND
;Loop to fill the remaining array
TEST LD R1, IND
;load 10
LD R2, NUM
;find tw0\'s complement
NOT R2, R2
ADD R2, R2, #1
;(IND-NUM)
ADD R1, R1, R2
;check (IND-NUM)>=0
BRzp GETELEM
;Get array base
LEA R0, ARRAY
;load index
LD R1, IND
;increment index
ADD R0, R0, R1
;store value in array
STR R1, R0,#0
;increment part
INCR
;Increment index
ADD R1, R1, #1
;store it in index
ST R1, IND
;go to test
BR TEST
;get the 6 in R2
;load base address
GETELEM LEA R0, ARRAY
;Set R1=0
AND R1, R1,#0
;Add R1 with 6
ADD R1, R1, #6
;Get the address
ADD R0, R0, R1
;Load the 6th element into R2
LDR R2, R0,#0
;Display array contents
PRINT
;set R1 = 0
AND R1, R1, #0
;Loop
;Get index
TOP ST R1, IND
;Load num
LD R3,NUM
;Find 2\'s complement
NOT R3, R3
ADD R3, R3,#1
;Find (IND-NUM)
ADD R1, R1,R3
;repeat until (IND-NUM)>=0
BRzp DONE
;load array address
LEA R0, ARRAY
;load index
LD R1, IND
;find address
ADD R3, R0, R1
;load value
LDR R1, R3,#0
;load 0x0030
LD R3, HEX
;convert value to hexadecimal
ADD R0, R1, R3
;display number
OUT
;GEt index
LD R1, IND
;increment index
ADD R1, R1, #1
;go to top
BR TOP
;stop
DONE HALT
;declaring variables
;set limit
NUM .FILL 10
;create array
ARRAY .BLKW 10 #0
;variable for index
IND .FILL 0
;hexadecimal value
HEX .FILL x0030
;stop
.END
This question is about Circle Geometry. it evaluates connected and broken lines with respect to circles.
<h3>What is Circle Geometry?</h3>
This refers to the body of knowledge in mathematics that has to do with the various problems associated with the Circle.
In real-world scenarios, circle geometry is used in technologies involving:
- Camera lenses
- Circular Architectural structures
- Steering Wheels
- Buttons etc.
Learn more about Circle Geometry at:
brainly.com/question/24375372
Answer:
Explanation:
given data:
height of tank = 60cm
diameter of tank =40cm
accelration = 4 m/s2
suppose x- axis - direction of motion
z -axis - vertical direction
= water surface angle with horizontal surface
accelration in x direction
accelration in z direction
slope in xz plane is
the maximum height of water surface at mid of inclination is
the maximu height of wwater to avoid spilling is
= 60 - 8.2
the height requird if no spill water is
Answer:
All of the above
Explanation:
Most of materials are flammable because of the chemicals theyre made up of. Most materials that are bought say to keep them at room temature for a reason.
The altitude ensures acceptable navigational signal coverage only within 22 NM of a VOR.
<h3>What is altitude?</h3>
Altitude or height exists as distance measurement, usually in the vertical or "up" approach, between a reference datum and a point or object. The exact meaning and reference datum change according to the context.
The MOCA exists in the lower published altitude in effect between fixes on VOR airways, off-airway routes, or route segments that satisfy obstacle support conditions for the whole route segment. This altitude also ensures acceptable navigational signal coverage only within 22 NM of a VOR.
The altitude ensures acceptable navigational signal coverage only within 22 NM of a VOR.
Therefore, the correct answer is 22 NM of a VOR.
To learn more about altitudes refer to:
brainly.com/question/1159693
#SPJ4