answersLogoWhite

0


Best Answer

axb + cxd

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Using Marie simulator a x b - c x d?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

A B C ' A'B'C' by using truth table?

(A+B+C)' = A'B'C' by using truth table


What is the best scienctific problem using If and Then?

If a + b = cThen a = c -b


How do you write a program in C to swap two variables without using the third one using XOR?

a=a^b; b=a^b; a=a^b;


Biggest of three nos using recursive method?

biggest3 (a,b,c) = biggest2 (a, biggest2 (b,c))


What are the risks of using threading?

A)Testing and debugging difficulty B)Deadlocks C)Data races D)B and C E)A, B and C Any one?


Using truth table prove that A B.CA.C B.C?

(a+b).c=(a.b)+(b.c) (a+b).c=(a.b)+(b.c)


Determine the highest of the three input numbers using flowchart?

(start) /a=0 c=0\ \b=0 / /input a/ /input b/ /input c/ /a>b\ no /b>c\ yes /display b/ -> (a) \ / \ / yes no /a>c\ no /display c/ -> (a) \ / yes /display a/ <- (a) (end)


Prove the following using a truth table and show all steps A B . C A . C B . C?

You use a person's name to spell it.


C plus plus program using function min that take three parameters of type int and returns the minimum of the three?

int min (int a, int b, int c) {if (a


How can you devise a way to interchange two variables A and B without using a third variable or register using Exclusive OR?

A = A xor B B = A xor B A = A xor B in C... A^=B; B^=A; A^=B;


How do you write a arithmetic operations in c using compound assignment statement?

a = b = c


Write a c plus plus program to find the largest among three numbers using ternary operators?

R = (A > B && A > C) ? A : (B > C) ? B : C; // parentheses not necessary - for clarity only