Top answers


Write a basic program to output the lowest of 3 input numbers. (You may omit error checks on your inputs)

num1 = int(input("Please enter your first number: "))num2 = int(input("Please enter your second number: "))num3 = int(input("Please enter your final number: "))if num1 < num2...
NP
Answered by Nikesh P. Python tutor
2142 Views

Simplify the following Boolean expression: ¬(AvB) v ¬(CvD) v ¬A^(BvC) v (¬A^A)

(This question is easier to display on a whiteboard or written down)(¬A^¬B) v (¬C^¬D) v (¬A^B) v (¬A^C) v 0 [De Morgan's Law, Distributive Law, Inverse Law]¬A v (¬C^¬D) v (¬A^C) [Absorbtion Law]¬A v (¬C^¬D) ...
NP
Answered by Nikesh P. Computing tutor
6233 Views

What is demand and supply in Economics?

Demand and supply is a model used in economics to determine the equilibrium price and quantity in specific market.The equilibrium price and quantity is given by the intersection between the demand curve and ...
TS
3105 Views

Could you please explain the "vouvoiement" rule?

One aspect of the French language which can be confusing at first to non-native and especially English speakers is the formal use of the pronoun « vous » and its subsequent verb form. The « vous » form usual...
AD
Answered by Alice D. French tutor
4615 Views

What is a good rule to find angles in a right angled triangle?

In any right angled triangle , for any angle:The sine of the angle = the length of the opposite side the length of the hypotenuseThe cosine of the angle = the length of the adjacent side the length of the hy...
SF
Answered by Shirley F. Maths tutor
3441 Views