Sunday 14 December 2014

SOME AMAZING FACTS ABOUT ANDROID

Android is a one word for gadget-awesomeness. It transforms a smartphone into a power gadget. Here we are with some of the obscure android facts that you have not heard of yet.


1.What Android Means?

Whenever you hear about Android, you could tell it’s the Smartphone OS from Google. And Further? Well Android isn’t a new term, it seems to have originated a few hundred years ago. It was thought to be a robot that gave answers to your queries (Now it really does). To be specific, it was “a humanoid robot”. Android also appeared on many gaming consoles and Movies during the 80's.

 

 2.Google Did Not             Start Android


Though Google stays to be the prime reason for Android’s tremendous success, it wasn’t made by Google. Android Inc. was a separate company shaped by Andy Rubin in the US. Google bought Android in 2005 that led to the revolutionary operating system, combining the power of web and mobile into one system.
Google’s decision to make Android open source was one of the best things that they could do. Although Andy Rubin remained the head of Android in Google for a while, he moved on while the other Google officials took over his role.


3.HTC MADE THE FIRST ANDROID

f you thought Nexus One was the first smartphone to run Android, you are off beam. The First ever smartphone to run Android was HTC G1 (also called HTC Dream). It was running the Android 1.6 (Donut) version. It came with a 3.2 inch capacitive screen, and a slider QWERTY keyboard. Anyhow it was a breakthrough and this was where the revolution began.



4.ITS TOTALLY FREE AND OPEN SOURCE

What makes Android spaced out from Windows phone and iOS is the fact that it’s free. Android is [simply put] totally open. You can see what’s running behind the system, edit the source code and maybe create your own flavour of it [If you are up to it]. The AOSP (Android Open Source Project) is released by Google under Apache License which allows distribution and modification of the same, no strings attached.



5. SO FAR, THE MOST USED SMARTPHONE OS

Android OS happens to be the top Smartphone platform so far. With One Billion+ device activations, no rivals have hit this mark. Although Windows phone and iOS have tried many rivalry tactics from “hackathons” to free development tools for apps (Windows Phone) , nothing seems working so far. Android’s open nature and ease of app development led to their great milestone of hitting one billion activations.

SO NOW YOU ARE READY TO GET YOUR 'SMART' KNOWLEDGE TESTED....😉😉😉

Friday 12 December 2014

How to Tell if Google Considers your Website as Mobile Friendly



Google search on mobile now marks websites that are mobile friendly. How do you test if your sites are considered so by the Google spiders?


You can no longer afford to not have a mobile-friendly website that isn’t readable or usable on a mobile phone. That’s because Google is now clearly marking websites in mobile search results that it considers mobile friendly and if that tag isn’t getting displayed around your content, your website may see a drop in mobile traffic.

When a keyword is searched on Google via Desktop and via Mobile phone due to Google's Pigeon Update are different.This difference is because of some tags which are required by Google Spiders for the Mobile Website Recognition must not be present on your blog.

Earlier our blog also suffered with this update but now we have learned What's the cause and here we present a mind blowing article on How to tell if Google considers your Website mobile phone friendly.

Responsive design is most important criteria to tell if Google Considers your Website as Mobile Friendly
Google search on mobile now marks websites that are mobile friendly. How do you test if your sites are considered so by the Google spiders?

Enough now. How do you confirm if your web pages are considered mobile friendly by Google? There are quite a few options.

One, you can do a site:domain.com search in Google on any mobile phone to check if that tag is displayed around the most popular web pages of your website. This is the quickest way to check mobile-friendliness of multiple pages without using any of the tools.

Google also offers an online tool to help you understand if it considers your website as mobile friendly. You’ll have to run it against all the pages of your site.

Sometimes a website may be responsive and readable on a mobile device but it may not be usable. For instance, the links may have been placed too close to each other making it difficult to tap (like on this page) or the videos may have been embedded using Flash that doesn’t play on mobile devices. These factors may also prevent Google from marking your website as mobile friendly.

You can use your Google webmaster account to know if your site suffers from any of these usability issues. Open Webmaster Tools, choose Search Traffic and select Mobile Usability. Here you’ll see all the pages on your site that are indexed by Google and need your attention.

Alternatively, you can use the PageSpeed tool to detect usability issues as well without logging into Webmaster Central. Put the URL in the input box and check the User Experience report under Mobile. If you see anything in Red, it needs to be fixed. You can also explore other online tools to test your website on a much wider range of mobile phones.

Saturday 6 December 2014

Array as a stack and as a queue program in C++


/* Following program implements array as a stack and as a queue with push and pop operations.*/  
#include<iostream.h>
#include<conio.h>
#include<stdlib.h>
void arrstack()
{
clrscr();
int top=-1;
int size=5;
int arr[5];
int ch; char ans;
do{
cout<<"1.Push\n";
cout<<"2.Pop\n";
cout<<"3.Back to Main Menu\n";
cin>>ch;
 if(ch==1)
 {   int item;
 cout<<"Enter the item to be inserted\n";
 cin>>item;
  if(top==size-1)
  {
  cout<<"overflow";
  return;
  }
  else
  arr[++top]=item;
 cout<<"\n Array Status\n";
 for(int i=top;i>=0;i--)
 cout<<arr[i]<<"\n";
 }
 if(ch==2)
 {
 if(top==-1)
 {
  cout<<"underflow";
  return;
 }
 else
 {
  cout<<"Element deleted is"<<arr[top];
  top--;
 }
 cout<<"\n Array Status\n";
 for(int i=top;i>=0;i--)
 cout<<arr[i]<<"\n";
 }
 if(ch==3)
 {
  return;
 }
cout<<"\nWanna see array stack menu\n";
cin>>ans;
}while(ans=='y'||ans=='Y');

}//end arrstack

void arrqueue()
{
clrscr();
int front=-1;
int rear=-1;
int size=5;
int arr[5];
int ch; char ans;
do{
cout<<"1.Push\n";
cout<<"2.Pop\n";
cout<<"3.Back to Main Menu\n";
cin>>ch;
 if(ch==1)
 {   int item;
 cout<<"Enter the item to be inserted\n";
 cin>>item;

  if(rear==size-1)
  {
  cout<<"overflow";
  return;
  }
  else if(front==-1&&rear==-1)
  {
  front++;
  }

  arr[++rear]=item;

 cout<<"\n Array Status\n";
 for(int i=front;i<=rear;i++)
 cout<<arr[i]<<"\n";
 }
 if(ch==2)
 {
 if(front==-1&&rear==-1)
 {
  cout<<"underflow";
  return;
 }
if(front==rear)
{
  cout<<"Element deleted is"<<arr[front];
  front=rear=-1; 
}
else
{
  cout<<"Element deleted is"<<arr[front];
  front++;
}
 cout<<"\n Array Status\n";
 for(int i=front;i<=rear;i++)
 cout<<arr[i]<<"\n";
 }
 if(ch==3)
 {
  return;
 }
cout<<"\nWanna see array stack menu\n";
cin>>ans;
}while(ans=='y'||ans=='Y');


}//end arrqueue

void main()
{
clrscr();
int ch;
char ans;
 do
 {
 cout<<"\n1. Array as Stack\n";
 cout<<"\n2. Array as Queue\n";
 cout<<"\n3.Exit Program\n";
 cout<<"\nEnter your choice\n";
 cin>>ch;
 if(ch==1)
 {
  arrstack();
 }
 else if(ch==2)
 {
 arrqueue();
 }
 else if(ch==3)
 {
 exit(0);
 }
 cout<<"Wanna See menu again y/n";
 cin>>ans;
 }while(ans=='y'||ans=='Y');
     getch();
}

Sunday 30 November 2014

Tip: 7 Blogging Mistakes that Can Stop Your Blog Growth

"Anyone who has never made a mistake has never tried anything new"
― Albert Einstein

So making mistakes is not sin not correcting it is foolishness! ;)

There are thousands of new bloggers coming up daily; most of them start make money, few out of passion and few to set up career, but we seen only few reach their goal and thousands of them fail!

And the reason is they don't try to correct their mistakes.

Do You Make these 7 Blogging Mistakes?

If you're a newbie or not yet started blogging, these are few common mistakes that you need to avoid to have successful blog.

7 Blogging Mistakes that Can Stop Your Blog Growth

#1 Inconsistency in Blog Posting

I pray to be like the ocean, with soft currents, maybe waves at times. More and more, I want the consistency rather than the highs and the lows.

Yes being consistence is very important when it comes to blogging.

Inconsistency in blogging kills your blog. It makes your readers to lose trust on your blog. Also, it may affect your rankings directly or indirectly.

If you have more time for blogging and have lot of confidence that you can write daily, then go for it.

But If you can`t spend time writing daily (like me). Write 2 or 3 posts (at least 1) weekly and make sure this goes consistently.

#2 Underestimating SEO

7 Blogging Mistakes that Can Stop Your Blog Growth
SEO plays vital role for blog success, underestimating it is big mistake which most of them doing.
Does this mean that worthy content is of no use? No, if SEO increase your blog visibility, then content attracts visitors to your blog.

Few quick SEO tips

Add keyword in your post title
Spend some time on keyword analysis
Improve your blog speed
Compress images before adding it on your blog
Maintain keyword density
Link to related posts (internal linking)
Build links with guest blogging, blog commenting, YouTube etc…

#3 Writing for Bots

In 2nd point I mentioned that SEO is important soon I added this point to make clearer, that we need to write to attract users to only bots.

I recommended few SEO tips before which helps your blog get more visibility but the last and important game is played by content.

What if I write worthy content in single paragraph?

Will not attract any user, internet users don`t have much time to read your paragraph writing. You need to write a readable post with bullets and highlight important points.

I`d like to mention about Internal linking here! This will help you to decrease bounce rate of your blog and give more information to user.

#4 No interaction With Fellow Bloggers

Interaction helps to improve your blog performance.
Being active in your niche network can bring you more opportunities.

You can Join blogging networks like Bloggers.com, Blog Engage.com etc… and connect with fellow bloggers.

#5 Ignoring Visitors

Engage with your visitors this will help you to know what your users need.

Blog comments are the place where most of visitors interact with blog owner, so take time to respond to their queries. Be first to help them if they have any problem.

When someone approaches you through email then try to add him and give quickly reply.

If anything went wrong don`t step back to apologies.

Another way to interact with users is Email marketing, send regular newsletter to your subscribed users, and suggest them few blogging tips. Give some special gifts to your subscribed users.

#6 Spending too Much Time on Blog Stats

Don`t expect too much from just born blog.

Your blog is new and it takes more time to get good results. So don`t spend time daily on analytics. Once a while is OK, but wasting time on it will not return you anything.

#7 Being Everywhere

Is being everywhere over the web recommended?

No am not against going social but if you`re wasting time being on all social networking sites by checking status, sharing and not spending time on your blog. Then I don`t recommend being everywhere.

Select few top social networking sites in which you can get targeted visitors. Like if you are targeting Brazil then your must not ignore Orkut! So depending upon your niche try different but less social networking sites.

Sunday 9 November 2014

How to Block Ads on Android Apps and Browsers

The Android users always get annoyed from the extra and useless ads on Android apps and Browsers. They simply want to get rid of them. Therefore, today we are going to share a method to block ads.


If I tell you my views on those extra ads, so, I would simply say you that it is really annoying. Every user want to work in free and friendly environment. Hence, to enjoy that friendly environment you are supposed to perform some sort of tricks.

You can use this methods to block ads on Android apps and browsers. Ones, you have applied this trick then you will be able to use apps without ads and browse the internet without the interruption of extra ads.

Why to Block Ads on Android Apps and Browsers?
First of all, let me elaborate it more for you. You are supposed to block ads in order to enjoy the clean and friendly environment.

When you block ads for your apps and browsers then it makes your app work faster and increases the browsing speed of your internet, since, the interruption has removed from your Android.

Block Ads on Android Apps and Browsers
So, friends here comes the main part of the post, which will make you understand that, “how to block ads on Android Apps and Browsers?” We are going to use two different methods for doing so.

Methods:-
You can select any of your convenient method and can start blocking the ads for your apps and browsers. These both methods work awesome and fine.


Method 1:- Block Ads Using Adblock Plus for Android

This is the first method which we have got for you guys to help you out in blocking the ads using Adblock Plus. In this method root is not required at all.

First of all, you need to enable unknown sources-you can disable it after ending the block ads process. To enable unknown sources you are supposed to go to Settings >> Security >> Applications
After enabling the unknown sources, you are supposed to download Adblock Plus APK. After the completion of  downloading Install it
After the installing, run Adblock Plus for your Android device and enable filtering. Then it will automatically done the proxy setting for your device.
However, if it does not do the automatic proxy setting for your devices then you can do it manually as well by referring this official guide
Ones you have done and followed all the steps then it will start doing its work and will start blocking useless and annoying ads on Android apps and browsers.
Note: Adblock Plus will keep on blocking ads until it is enabled, ones you have disabled it then it will not block ads for your device.

Method 2:- Block Ads Using AdAway App

This is another awesome and workable method which can be used to block ads using AdAway app. This is the app which really works and gives you awesome results.

However, to get benefit from this method, you are supposed to have rooted device. If you don’t have a root device then you can make your device rooted with the help of below guide and then follow the steps mentioned below:

After rooting your device (If not have already), you are supposed to enable the unknown sources. To enable unknown sources you are supposed to go to Settings >> Security >> Applications. You can disable it after finishing the blocking of ads.
Afterwards, download the AdAway App for you device and then Install it too
Ones, installation is done then this AddAway app will scan your device compatibility-let it scan.
Afterwards, it will ask you for the root access, grant It and then Click on Download Files and Apply Ad Blocking, then wait for while to modify it
Then restart your device, now the ads on Apps and browsers will be blocked. It will be blocking your ads automatically, you are not supposed to open it on each restart.


These are the two famous methods which can be used to block ads on Android apps and browsers. You can ensure the friendly surfing and using of Android apps without useless ads.

Thank You for spending your valuable time with us..

Wednesday 10 September 2014

How to reverse each letter of word of a string


C++ is an amazing language. Those who have learnt it consider it to be most easiest languages. Everything and every program which you can think of can be made on C++.
Its not that I have learnt it so I am saying it's a fact and no one cab deny it. Here when we (The Best within Everything) have reached 7K visitors till now I had thought of expanding the scope to C++ as well.

Here now onwards the difficult programs of C++ which I'd be encountering will be published with tag C++.

How to reverse each letter of word of given string?

This program uses only three loops and 4 variables.
Anyone have a better code us invited to write on our blog

#include<iostream.h>
#include<conio.h>
#include<stdio.h>

void main()
{
 clrscr();
 int i,j,k,l;
 char str[101];
 i=0;
 j=0;
 cout<<"Enter a String: ";
 gets(str);
 cout<<" \n";
 for(l=0, k=0; str[k]!='\0';l++,k=i+1)
 {
   for(i=k; str[i]!=' 'i+=1);
   for(j=i-1; str[j]!=' '||j>=0; j-=1)
   {
     cout<<str[j];
    }
   cout<<" ";
 }
getch();
}



Thursday 4 September 2014

More about Facebook Messenger

The Best Features of Facebook Messenger

You're Probably Not Using


Facebook took a lot of flak for making its standalone Messenger app mandatory. Many feel (myself among them) that a standalone app for messages is unnecessary. Even so, that doesn't make it a bad app, or not useful in its own way. Here are some of the best features of Facebook Messenger that make it worth using.



Take Pictures or Video Instantly with the Built-In Camera

The Best Features of Facebook Messenger You're Probably Not Using
Taking pictures with a camera shouldn't really be that novel of a feature. However, the Messenger app embeds a small (but expandable) viewfinder in the keyboard section of the app itself. You can use either the front or rear camera and tap the send button to snap a picture–or hold it to take a video–without actually leaving the app. This even works in chat heads so you can take pictures from Facebook Messenger anywhere in the OS.

Image Search Shares Pictures From the Web

The Best Features of Facebook Messenger You're Probably Not Using
Finding pictures from the web and sharing the link is kind of a pain on mobile. It's not impossible, but it can mean jumping between two or three different apps. In Facebook Messenger, you can access Image Search from the drop down menu. Enter a search term and you'll see a list of image results. Just tap one to send it to your message recipient.

Use the Location Feature to Quickly Show Where You Are

The Best Features of Facebook Messenger You're Probably Not Using
Location sharing isn't exactly a high priority on most people's list. However, when you're trying to meet up with friends, temporarily sharing your location can help. Simply enable location for a particular message and it will be tagged with where you are. The other person you're talking to can then press "View Map" on the menu.

Send Quick Audio Notes and Eliminate Voicemail

The Best Features of Facebook Messenger You're Probably Not Using
Sometimes you just need to say something out loud. While voice transcription has made it easier to dictate text messages, you can still share audio clips pretty quickly. Tap the microphone and you'll be presented with a little red button. You can hold down the button to record an audio clip. It will send immediately as soon as you're done. You can also use Messenger for two-way voice calls.



Use Pinned Group Chats to Find Mass Messages Easier

The Best Features of Facebook Messenger You're Probably Not Using
Group chats are a great way to communicate with a bunch of people at once. Facebook even has one of the better methods for doing so. However, finding an old group chat on the web (or even the old Android app) isn't exactly intuitive. Group chats are typically lumped together with regular chats, so finding them later is a pain. Not so on mobile. Group chats get their own special tab, and you can even pin favorite chats to the top so you never lose them.

Sunday 24 August 2014

How to Index a Website in Google Search?


In Today World, having a website is necessary for online presence and it’s important that targeted customers can find your website by your brand name in different search engine.
Many business owner already started adding a blog along with their website for faster indexing and for gaining more exposure from different social media tools and search engine.

Here in this article, I(Anubhav Sachan) am going to help you to get your website indexed in search engine within no time.

To getting a website indexed in Google within 24 hours is not an easy task but not too difficult.

A proper planning and strategy help you to put your website in search engine within 20 hours or may be in few hours.
You can use this trick with any new website which you created, but you are not getting traffic from search engines.

To check whether your site is indexed in Google or any other search engine, go to Google.com and types site: Yourdomainname.com

You should get a Dialog Box like its in the picture.


Actually our Blog has been indexed but its dialog box is not appearing.I also don’t know the reason why its happening. So I am giving my example.

If it’s not indexed then it is time to work on the following given step and you get your site in Google within no time limit.

Reasons to Index a Website:

I know that if you are new in the blogging, then you not aware of the term indexing. Indexing means that search engine (i.e. Google, Yahoo etc.) keep a record of your Web Pages in search engine.
I am target major search engine like Bing, Google, and Yahoo etc. Here is the trick that I have used to put the website in search engine within 20 hours.
In addition to On-page SEO optimization like Meta keywords, Meta description and On-Site SEO (No-index, No-follow) robots.txt sitemap, main trick was to put the website in search engine in few hours.

Well, if you are trying to index a new website, make sure that your content is ready. No one want to Google bots to come and crawl your empty page homepage.
First make sure that you do all the basic On-Site SEO and then work on this trick.

Complete Guide to Index a Website in Google within few hours:

Submission to Blog networks
Many SEO experts think that submit new site to blog networks and blog directories were the things of past, but it’s not true. It also work today.
You don’t need to submit your site to all new network and blog directories. Instead of this submit your blog only to selected network and directories.
Here I have listed 3-4 Blog directories/network which I suggest to all my readers:-

It is the biggest blog directory in the world. When you submit your site in the Technorati, you not only boosting your website popularity but it also help your site indexed very fast.

This is my favorite blog network drive because it help to drive a lot of traffic and backlink to my blog.

Commenting Comment luv/Do-follow:
This job has to be done within given time frame. I have already added more than 50+ comment on both Do-follow blog and comment luv blog.
This confirmed that Google bots will follow the comment link and land into my blog and that’s what happened.

Social Bookmarking submission:
This is another very effective method. You can take the help of Digg, Delicious etc. social bookmarking sites.

Guest posting:
If you have patience then, prepare 8-15 quality posts and ask from other bloggers within your niche as guest author.
If you are doing it for a client, buy 10-15 articles and do the same. In addition to getting backlink it will help you to drive traffic on your blog.
Try to guest post on popular, high page rank website regularly.

Sitemap Submission:
Sitemap help the search engine to crawl your blog effectively. Make sure that you have created your site sitemap.
Now, submit your website sitemap to popular search engines like Google/Yahoo/Bing etc.
  
And you see the result within 10-15 hours of this experiment.