Skip to main content

Palm reading Atm will allow free transaction in japan

Forgot your ATM card? If you're a customer at Japan's Ogaki Kyoritsu Bank, that won't be a problem come September. That's when the bank plans to introduce a new ATM
that will let you provide a hand print in lieu of your card.They make use of bio-metric technology.
  Biometric technology has been boosting the security of a greater array of electronic devices in recent years, including homes, businesses, schools and even wallets. The technology has also made its way into ATMs as a way to beat card skimmers, but these machines still require customers to insert a card. Now a Japanese bank has announced that it will introduce ATMs that allow customers to carry out transactions with a scan of their palm.

Comments

Popular posts from this blog

Find Value of S=ut+1/2*a*t**2.

PROCEDURE:-        1.enter values for u,a,t to find distance        2.find distance with the formulae ut+1/2at 2        3.print the above result CODE:- #include<stdio.h> #include<conio.h> void main() {   float u,t,a,S;   clrscr();   printf(“enter values u,t,a”);   scanf(“%f %f %f”, &u,&t,&a);   S=(u*t)+(0.5*a*t*t);   printf(“\n  S = %f”, S); } Input:- enter values u,t,a               U=10,t=4,a=4.9 Output:- S =79.200