answersLogoWhite

0

no.but it is a lever, the closer you push a door toward the hinges the harder it is to open.

User Avatar

Wiki User

14y ago

What else can I help you with?

Continue Learning about Math & Arithmetic

How do you find out the year on a Vendo VF 63 Soda machine?

To determine the year of a Vendo VF 63 soda machine, you can check the serial number located on the machine's back or inside the door. The first two digits of the serial number typically indicate the year of manufacture. Additionally, examining specific design features or consulting Vendo's production records can provide more context about the machine's age. If available, original documentation or a collector's guide may also assist in identifying the year.


What does stepped reckoner do that pascals machine doesnt?

The stepped reckoner, invented by Gottfried Wilhelm Leibniz, can perform all four basic arithmetic operations: addition, subtraction, multiplication, and division, whereas Pascal's machine (Pascaline) is primarily designed for addition and subtraction. The stepped reckoner uses a series of rotating drums and gears to facilitate these operations, allowing for more complex calculations. This capability makes the stepped reckoner more versatile than Pascal's machine, which is limited in its functionality.


What are complex root?

The complex roots of an equation are the complex numbers that are solutions to the equation.


How many combinations can a enigma machine do?

The Enigma machine, used by the Germans during World War II, had a vast number of possible combinations due to its complex design, which included rotors, a plugboard, and a reflector. Depending on the specific version of the machine and the settings used, the total number of possible configurations could exceed 150 quintillion (150,000,000,000,000,000,000) combinations. This immense complexity made it a formidable encryption device for its time. However, vulnerabilities in its implementation ultimately led to its decryption by Allied cryptanalysts.


Write a program to write the sum of two complex number using friend function and overloading constractor?

#include<iostream.h> #include<conio.h> class complex { int r; int i; public: complex() { } complex(int a,int b) { r=a;i=b; } friend complex operator+(complex,complex); friend show(complex); complex operator+(complex c1,complex c2) { complex c3; c3.r=c1.r+c2.r; c3.i=c1.i+c2.i; return(c3); } show(complex c) { cout<<c.r<<"i+"<<c.i<<endl; } void main() { complex a,b,c; clrscr(); a.complex(3,6); b.complex(4,7); c=a+b; show(a); show(b); show(c); getch() }