answersLogoWhite

0

by pressing the on/off button

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What type of switch would be used to switch on a kettle?

Its called a bi-metallic switch, which switches off when the kettle boils, as the switch is made from two layers of different metals, which expand at different rates when heated, which causes the sandwich of the two metals to "bend" when it heats up.


How do you power off orpat ot-400t calculator?

press 2and 3 with on/ac switch for 2-4 sec and release on/ac then 2,3 the calc. is off


What is the function of a toggle switch?

A toggle switch is a type of mechanical switch that is used to manually control the flow of electricity in a circuit by toggling it on or off. It is commonly used to turn devices or systems on and off with a simple flick of a lever.


What is 15 dollars and 75 cents times 6?

15.75 dollars * 6 = 94.50 dollars. So simple with a calculator!15.75 dollars * 6 = 94.50 dollars. So simple with a calculator!15.75 dollars * 6 = 94.50 dollars. So simple with a calculator!15.75 dollars * 6 = 94.50 dollars. So simple with a calculator!


How do you switch off manually a calculator without OFF key-found in solar or dual powered calculator with auto-power off only?

IF U R USING ORIGINAL CACULATOR OF CITIZE 001011 LARGE DISPLAY THE SWITCH OFF IT FOR SAVING IT BATTRY AND VERIFY THE ORIGINALITY OF IT FOLLW THE COMMAND BY PRESSING ON/AC AND THENPRESSING in continuationDivideMultiplyPercentageCheckCorrectCorrectand see u r caculator is getting off


What exactly is a simple mortgage calculator?

A simple mortgage calculator is a device which will calculate mortgage figures. A mortgage calculator may also be an accountant who derives the figures through accounting.


Where is there a gold value calculator online?

In order to find a gold calculator, it requires a very simple search. Google has a very simple and easy calculator to use and so does GoldCalculator.


Switching off calculator without off key?

On a regular calculator, you just leave it it will off itself. On a scientific calculator, press shift AC.


What is simple switch?

a simple switch conduct current in both ways


What is the simple switch?

a simple switch conduct current in both ways


How do you shutdown calculator?

On normal calculator, press 'Off'. If your calculator doesn't have this button, the calculator will turn off automatically after some time. On scientific calculator, press 'shift' and press 'AC'. (depends on your version of the calculator)


Code to develop a calculator in adobe flex?

here is the code for simple calculator in flex,[Bindable] private var _txt:Object;[Bindable] private var _choos:String;private function satu():void{txtLayar.text = txtLayar.text + '1';}private function dot():void{txtLayar.text = txtLayar.text + '.';}private function dua():void{txtLayar.text = txtLayar.text + '2';}private function tiga():void{txtLayar.text = txtLayar.text + '3';}private function empat():void{txtLayar.text = txtLayar.text + '4';}private function lima():void{txtLayar.text = txtLayar.text + '5';}private function enam():void{txtLayar.text = txtLayar.text + '6';}private function tujuh():void{txtLayar.text = txtLayar.text + '7';}private function lapan():void{txtLayar.text = txtLayar.text + '8';}private function sembilan():void{txtLayar.text = txtLayar.text + '9';}private function noll():void{txtLayar.text = txtLayar.text + '0';}private function clear():void{txtLayar.text = '';}private function sum():void{_txt = txtLayar.text;_choos = '1';txtLayar.text = '';}private function sub():void{_txt = txtLayar.text;_choos = '2';txtLayar.text = '';}private function mul():void{_txt = txtLayar.text;_choos = '3';txtLayar.text = '';}private function div():void{_txt = txtLayar.text;_choos = '4';txtLayar.text = '';}private function hasil():void{var txt2:Number = Number(txtLayar.text);var txt3:Number = Number(_txt);var has:Number;if(_choos=='1'){has = txt3 + txt2;}else if(_choos == '2'){has = txt3 - txt2;}else if(_choos == '3'){has = txt3 * txt2;}else if(_choos == '4'){has = txt3 / txt2;}txtLayar.text = has.toString();}]]>