edited by
606 views
1 votes
1 votes

The x86 MOV class of instructions is used to copy data from one location to another. Which of the following statements is false?

  1. Integers can be moved between memory locations.
  2. Strings can be moved between memory locations.
  3. Integers can be moved conditionally.
  4. There are several conditions governing a conditional move
edited by

1 Answer

0 votes
0 votes

I guess answer is C.

suppose mov a,[1000] // here mov instruction will move the data irrespective of integer/string value. So option A & B are correct. 

suppose mov b,#5 // Here we are stroing the value  5 into a i.e a=5 but we cant do vice versa ie mov #5,b . Here we are checking the condition. So option d is also correct.

Option c, as their is no such condition that Integers can be moved conditionally.

Related questions

0 votes
0 votes
0 answers
1
0 votes
0 votes
2 answers
2
parvati h asked Jun 25, 2016
1,795 views
0 votes
0 votes
2 answers
3
gshivam63 asked May 31, 2016
1,069 views
If average weight of a minimum spanning tree is Aavg.Then minimum spanning tree will have weight almost (n-1)Aavg, where n is no of vertices in the graph. It is true or f...
0 votes
0 votes
1 answer
4
Hc GUPTA asked Oct 18, 2018
370 views
minimum spanning is a spanning tree in which removal of any edges disconnnects the tree.True or false?