answersLogoWhite

0

numeric keyboard

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What process enables small particles to enter the cell?

osmosis


Can the insert function button feature be used to enter a function?

Yes it can. It enables you to enter a function into the worksheet.


Where is enter on your key board?

underneath the virgule


Which technology enables you to enter text into documents on a computer by using your voice?

Voice recognition


How would you mathematically enter pi in the keyboard?

Most mathematicians use LaTeX, which enables you to enter pi by typing \pi in so called math-mode.


How do you get off the bar in backgammon?

To get off the bar in backgammon, you must roll the dice and move one of your checkers onto the board. You can only enter a checker onto a point that is either open, occupied by your own checkers, or occupied by a single opponent's checker (which you can hit). If you cannot move any of your checkers due to the rolled numbers, you will have to forfeit your turn until you can legally enter a checker onto the board. Once your checker is on the board, you can continue your moves as normal.


Which programs enables you to create custom designed forms to enter or retrieve data from your database?

Microsoft Access


How do you quickly add all of the numeric data on a spreadsheet?

type '=SUM(enter the numeric data here)'. for example if you have numbers listed in cells A1-A10, you would type =SUM(A1:A10)


How do you draw a flow chart to enter 10 numbers through the key board and display the minimum number?

With paper a pencil and a flowchart symbol template. You might try reading your text book and learning how to do this yourself.


How do you enter the numbers for Club Penguin?

you cant


What are the uses of excel?

Exel is a spreadsheet program that enables you to enter formulas and data into the cells in order to organize information.


Program in c plus plus that accepts 10 input integer and to get the Greatest common divisor?

#include<iostream> using namespace std; int gcf(int a, int b) { int t; while(b!=0) { t = b; b = a%b; a = t; } return a; } int main() { int a,b,c,d,e,f,g,h,i,j,k; cout<<"Enter 1st numbers: "; cin>>a; cout<<"Enter 2nd numbers: "; cin>>b; cout<<"Enter 3rd numbers: "; cin>>c; cout<<"Enter 4th numbers: "; cin>>d; cout<<"Enter 5th numbers: "; cin>>e; cout<<"Enter 6th numbers: "; cin>>f; cout<<"Enter 7th numbers: "; cin>>g; cout<<"Enter 8th numbers: "; cin>>h; cout<<"Enter 9th numbers: "; cin>>i; cout<<"Enter 10th numbers: "; cin>>j; k=gcf((((((((gcf(a,b),c),d),e),f),g),h),i),j); cout<<"The GCD of the 10 numbers is: "<<k<<endl; system("pause"); return 0; }