Write 5 differences between Memory Reference
Instruction and Register Reference Instruction.
Answer / bharat talaviya
memory reference instruction uses 12bits to specify an address & 1 bit to specify addressing mode (direct or indirect).
Register reference ins. Is recognized by opcode 111 with a 0 in the leftmost bit.
More details plz see compurer system architecture by Morris mano
Is This Answer Correct ? | 71 Yes | 36 No |
ok how would i do the following extract from a file i have ssns = 267907230 which are in column 7 into a separate data set then create a 2nd job step to extract from the data set created the following "fund code" which is in column 31 and is 113 into yet another data set
What is the language used for Artificial Intelligence?
Write a program which inputs 2 integers representing the sides of a triangle, a and b. Next, write a function which accepts the 2 sides as parameters and returns the hypotenuse of the triangle, c. Use c 2 = a 2 + b 2 To raise a number to an exponent, us e the built - in JavaScript function Math.pow() Let’s say you have a variable x and you want to raise it to the 5 th power, use Math.pow in the following manner... Math.pow( x, 5 ); This will raise x to the 5 th power. To find the square root of a number, use t he built - in JavaScript function Math.sqrt () So to find the square root of x, use Math.pow () in the following manner... Math.sqrt( x ) You must create 2 functions to receive credit for this assignment. Your ‘ main ’ function which is called from the button. And your hypotenuse function. Again, the main function calls upon the hypotenuse f unction when it needs that value. Get the user ’ s input, call the function, output your result. Create your own CSS layout
Indentify the essential difference between GUI and a command line operating systems?
1 Answers Deloitte, Infosys, Wipro,
What is the use of sas software? Is sas and sap are different?
Can any one give an example (Source Code) on virtual function implemetation in Java?
Why we use NEW operator when we create Object,While in C++ we donot ?
where is available in this mantis toturials?
which of the following is efficient in terms of space a. insertion sort b. quick sort c. selection d. both a and c
If u need any fake experience certificate in software side, contact me at: vikramyadhav@gmail.com
how we define two jobs have same name??is it exist??
You are given some denominations of coins in an array (int denom[])and infinite supply of all of them. Given an amount (int amount), find the minimum number of coins required to get the exact amount. What is the method called?