answersLogoWhite

0

What else can I help you with?

Related Questions

Does the autonomic nervous system have one primary divisoin?

the ANS has 2 divisions: sympathetic - "fight or flight" and parasympathetic- "resting and digesting"


What are the 2 divisions of the nervous system and their work?

there aren't 2 divisions of the nervous system. (:


What are the two divisions of the nervous system?

There are 2 separate divisions of the nervous system. These 2 divisions are the central nervous system and the peripheral nervous system.


Write an Assembly language program to multiply 32 bit numbers?

.data mult1 dw 2521H dw 3206H mult2 dw 0A26H dw 6400H ans dw 0,0,0,0 .code mov ax,@data mov ds,ax ; LEA SI,ans mov ax,mult1 mul mult2 mov ans,ax mov ans+2,dx mov ax,mult1+2 mul mult2 add ans+2,ax adc ans+4,dx adc ans+6,0 mov ax,mult1 mul mult2+2 add ans+2,ax adc ans+4,dx adc ans+6,0 mov ax,mult1+2 mul mult2+2 add ans+4,ax adc ans+6,dx mov ax,4C00h int 21h end


When you multiply 2 odd numbers then can you get a ans of 2?

No.


What are the divisions in the BIG 12?

Just 2 divisions in the Big12 conference...the North and South.


What is most popular tulip in Netherlands?

ans 1. sending flowers ans 2. pruilen


How many divisions were there in the British army in 1938?

There were 2 divisions in the land army in January 1938.


Give an example for algorithm?

Function mult 1.ans <- 0 2. For i=1 thru a by 1 a. Ans <- ans+b 3. Return (ans0 end mult function raise 1.ans <-1 2.for i=1 thru b by 1 3.return (ans) 4.end raise


What are the characteristics of partition in technical writing?

1. the divisions must be coordinate 2.the divisions must be mutually exclusive 3. the divisions must not overlap 4. the divisions must be complete


What is 2 plus 121?

Ans - 2+121=123


What value is assigned to the type int variable ans in this statement if the value of p is 100 and q is 50?

It is not possible to answer this question without knowing the actual expression used in the assignment statement. The following are merely example expressions showing some of the values that could be assigned to ans: int ans, p=100, q=50; ans = p + q; // ans = 150 ans = p * q; // ans = 5000 ans = p - q; // ans = -50 ans = p / q; // ans = 2 ans = p % q; // ans = 0