Skip to main content

google account activity report

Google is launching a new feature today called Account Activity that will help users gain more insight into their usage of Google services.
Available to those who opt in, the utility will offer monthly reports detailing your account activity, like your number of sign-ins, how many emails you sent and received, the browsers you used, the number of Google searches you performed, the number of places you visited on Google Latitude, and a ton of other things that showcase the vast amount of data Google stores on you.
      The new service is more like an extension to Google’s dashboard, then, which already gives users an overview of all their Google accounts and services in use – it just puts more data behind them.
source:
http://googleblog.blogspot.in/2012/03/giving-you-more-insight-into-your.html

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