Pages

Monday, 18 May 2015

How Much Traffic Do You Need To Make $100 With Google AdSense

It is possible to earn $100 in one year from google adsense.
Also, you must make sure that your website category is advertising friendly because your AdSense income depends a lot upon the category of your website. You can use Google AdWords Keyword Planner tool to find out the competition in your industry. If there is enough competition then we can assume that Google will fill your ad spaces with high paying ads

How Much Traffic Do You Need To Make Money With AdSense?

Let’s say you want to make $100 a year from Google AdSense and/or Google AdSense alternatives.

So, you have to create either:  pages that earn $1 a day pages that earn 50 cents a day OR pages that earn 25 cents a day .
Page Views
A page view is what Google counts in your reports every time a user views a page displaying Google ads. We will count one page view regardless of the number of ads displayed on that page.
For example, if you have a page displaying three ad units and it is viewed twice, you will generate two page views.
Clicks
For standard content ads, Google counts a click when a user clicks on an ad.
For link units, Google counts a click when a user clicks on an ad on the page of ads, after selecting a link in the link unit.
Page Click Through Rate (Page CTR)
The Page Click Through Rate (CTR) is the number of ad clicks divided by the number of impressions or page views that you have received.
Page CTR = Clicks / Page Views
For example, if you received 5 Clicks from 100 Page Views, then your Page CTR would be 5%. (5/100*100=5%)
Cost Per Click (CPC)
The Cost Per Click (CPC) is the amount you earn each time a user clicks on your ad. The CPC for any ad is determined by the advertiser; some advertisers may be willing to pay more per click than others, depending on what they’re advertising.
Page Revenue Per Thousand Impressions (Page RPM)
Page Revenue Per Thousand Impressions (RPM) is calculated by dividing your estimated earnings by the number of page views you received, then multiplying by 1000.
Page RPM = (Estimated Earnings / Number of Page Views) * 1,000
For example, if you earned an estimated $0.15 from 25 page views, then your page RPM would equal ($0.15 / 25) * 1000, or $6.00.
Estimated Earnings
Your account balance (or earnings) for the time period selected.

Android Shared preferences

Shared preferences in android is very effective to handle session management and also for storing value for long time even if you close the application.
Following are simple code for shared preferences.
Note that you must commit the preferences for save the value.
It can be done with commit() method.

MainActivity.java.
package com.im.sharedpreferences;

import com.im.sharedpreferences.*;

import android.os.Bundle;
import android.app.Activity;
import android.content.Context;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
import android.view.Menu;
import android.view.View;
import android.widget.TextView;

public class MainActivity extends Activity {

TextView name ;
TextView phone;
TextView email;

public static final String MyPREFERENCES = "MyPrefs" ;
public static final String Name = "NAME";
public static final String Phone = "PHONE";
public static final String Email = "EMAIL";


SharedPreferences sharedpreferences;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

name = (TextView) findViewById(R.id.editTextName);
phone = (TextView) findViewById(R.id.editTextPhone);
email = (TextView) findViewById(R.id.editTextEmail);


sharedpreferences = getSharedPreferences(MyPREFERENCES, Context.MODE_PRIVATE);

if (sharedpreferences.contains(Name))
{
name.setText(sharedpreferences.getString(Name, ""));

}
if (sharedpreferences.contains(Phone))
{
phone.setText(sharedpreferences.getString(Phone, ""));

}
if (sharedpreferences.contains(Email))
{
email.setText(sharedpreferences.getString(Email, ""));

}
if (sharedpreferences.contains(Street))
{
street.setText(sharedpreferences.getString(Street, ""));

}
if (sharedpreferences.contains(Place))
{
place.setText(sharedpreferences.getString(Place,""));

}

}

public void run(View view){
String n = name.getText().toString();
String ph = phone.getText().toString();
String e = email.getText().toString();

Editor editor = sharedpreferences.edit();
editor.putString(NAME, n);
editor.putString(PHONE, ph);
editor.putString(EMAIL, e);


editor.commit();

}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}

}
activiy_main.xml.
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:context=".DisplayContact" >

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="370dp"

>

<EditText
android:id="@+id/editTextName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_marginTop="5dp"
android:layout_marginLeft="82dp"
android:ems="10"
android:inputType="text" >

</EditText>

<EditText
android:id="@+id/editTextEmail"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="22dp"
android:ems="10"
android:inputType="textEmailAddress" />



<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginBottom="28dp"
android:onClick="run"
android:text="@string/save" />



<EditText
android:id="@+id/editTextPhone"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="phone|text" />

</RelativeLayout>

</ScrollView>


 AndroidManifest.xml.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.im.sharedpreferences"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.im.sharedpreferences.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>

Saturday, 18 April 2015

Human Arts.


Occasionally, human are creating new arts through them. Sometimes they makes tattoo or design on their body and present arts. From this kind of arts they also wants to convey message to society.

1. 


2. 


3. 



4.


5.

Friday, 17 April 2015

Wednesday, 8 April 2015

Fact about facebook that you dont know even if you are using it.

1. The reason Facebook is blue, is because Mark Zuckerberg is colorblind.


2. Facebook tracks and records almost everything you do on the internet if you’re logged in at the same time.

3. More than 600,000 hacking attempts are made on Facebook accounts every day.

4. It’s possible to change your Facebook language to “Pirate”.


5. Al Pacino was the first “face” on Facebook.


Content  Courtesy -Unbelievable facts 

Tuesday, 7 April 2015

India Pulls Off Great Escape in Yemen, 4000 Evacuated From War Zone


Mission Accomplished. The government is looking to wrap up Operation Raahat with almost all the estimated 4000 Indians in Yemen evacuated safely from the war zone.

The Indian Navy's INS Tarkash will reach Djibouti from Al Hodeidah with 74 people this morning and the INS Sumitra will reach Al Hodeidah, to ferry out one of the last batches. Air India will run its last evacuation flights from Yemeni capital Sana'a and the government has asked all Indians who want to leave to reach the capital.

On Monday, India rescued more than 1,000 people by plane and ship, the second time in two days that such a large number have been brought out since Saudi Arabia launched air strikes against Iran-allied Houthi rebels in Yemen on March 26. India has been asked by 26 nations - including the United States - to help get their citizens out of the conflict zone.

The Indian Navy Ship Mumbai, a premier warship, rescued nearly 1000 people from nine countries in two batches. Though not designed to ferry people, the Mumbai carried one and a half times the number of crew on board.

The crew emptied five messes and their cabins so that women and children got bunks to sleep on. Hot food was served and doctors were at hand.
 
Other warships, the INS Sumitra and the INS Tarkash have done a similar job across the coast of war-torn Yemen.

Sunday, 1 September 2013


STATE LEVEL SCIENCE, MATHEMATICS AND ENVIRONMENT EXHIBITION
FOR  CHILDREN–2013–14
and
41ST JAWAHARLAL NEHRU NATIONAL SCIENCE, MATHEMATICS AND
ENVIRONMENT  EXHIBITION FOR  CHILDREN–2014
G U I D E L I N E 

http://gcert.gujarat.gov.in/gcert/portal/news/22_1_Science_Fair_Guidelines%20English%202013-14.pdf