edited by
634 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

276
views
0 answers
0 votes
1.9k
views
2 answers
0 votes
parvati h asked Jun 25, 2016
1,863 views
1.1k
views
2 answers
0 votes
gshivam63 asked May 31, 2016
1,137 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 false?why?