In: Computer Science
SOLUTION:
Question: If SI = 1000H, what does MOV [SI], BH do?
Answer: Option B) Writes byte of data from BH into memory location 1000H
Explantion:
The MOV instruction copies the data item referred to by its second operand (i.e. register BH) into the location referred to by its first operand (i.e. a register - source index)
Syntax: Mov destination , source
Question: Translate the statement “All your friends are perfect” into a logical expression. Let P(x) be “x is perfect” and F(x) be “x is your friend” and the universe of discourse be all the people.
Answer: Option B) ∀x(F(x) → P(x))
Explanation:
Let F(x) be "x is your friend";
P(x) be "x is perfect"
Result: ∀x(F(x) → P(x))
Question: The instruction is MOV BL,DS:[1234H] will assemble as a ___ instruction
Answer: A) 2 byte
Explanation: Default it takes 16 bits which is 2 byte( 1byte = 8 bits).
Question: A two-input NOR gate with inverted inputs is the same with ____
Answer: D) NAND
Explanation : Output of the Inverted NOR similisr to the output from the NAND gate.
******************************************************************************
Feel free to rate the answer and comment your questions, if you have any.
Please upvote the answer and appreciate our time.
Happy Studying!!!
******************************************************************************