Vanessa Fox reports that Google’s blog search engine changed the way it indexes blog posts. Until now, Google Blog Search only indexed feeds, so the results weren’t very good for sites that offered partial feeds. The site started to offer a more comprehensive search by indexing the entire content of the page, including comments, navigation links and blogrolls.

 

“We have changed the way we index blog posts to include the full content of the page. We’ve had occasional complaints about the use of the feed content, particularly the problem with partial feeds. The indexing change has improved the results for a lot of queries, both because we have the full content of the page and because we extract links that are missing from the feeds. The downside of this change is that we see more results that match only the blogroll and other parts of the page that are common to all of a blog’s posts,”  explains Jeremy Hylton. He says that the algorithm will be improved to exclude “the content that isn’t really part of the post” to make the results more useful.

RSS is a family of Web feed formats used to publish frequently updated works—such as blog entries, news headlines, audio, and video—in a standardized format : Wikipedia

They benefit readers who want to subscribe to timely updates from favored websites or to aggregate feeds from many sites into one place. RSS feeds can be read using software called an “RSS reader”, “feed reader”, or “aggregator”, which can be web-based or desktop-based.100px-feed-iconsvg

 

The initials “RSS” are used to refer to the following formats:

    * Rich Site Summary (RSS 0.91)

    * RDF Site Summary (RSS 0.9 and 1.0)

    * Really Simple Syndication (RSS 2.0)

 

 

This is the article that was published on searchenginewatch.com

 

How Easy Is RSS?

 

I’ve been exploring RSS because it was time that Search Engine Watch offered its own stories in this manner. I’ve read several tutorials about making a feed, and they generally suggest that it is easy. They often offer code that you can “cut-and-paste” and link over to specifications that I actually don’t find that clear.

 

For example, the RSS 2.0 specification has an “cloud” element that’s optional but which a lay person might still wonder if they should use it. Meanwhile, heaven help the person who stumbles into the RSS 1.0 specification and its complicated RDF syntax.

 

Sure, making an RSS file IS easy for many. If you understand HTML, you’ll probably understand enough to do a cut-and-paste from someone else’s RSS file to make your own file. Don’t know HTML? Start a blog, because several blogging tools automatically generates RSS files.

 

As for those non-technical people using WYSIWYG page building tools or personal home page building systems, have faith. Even you can build an RSS file from scratch, as long as you dispense with some of the extra features you probably don’t need. We’ll go through how to do this below. Later, I’ll also mention some tools that will even do some or all of the work for you.

The RSS File

 

At the heart of an RSS file are “items.” No matter what version of RSS you settle on, your file will have to include at least one item. Items are generally web pages that you’d like others to link to. For example, let’s say you just created a web page reviewing a new cell phone that’s being released. Information about that page would form an item.

 

To enter your item into the RSS file, you’ll need three bits of information:

 

    * Title

    * Description

    * Link

 

The title and description of your item need not match exactly the HTML title tag of the web page that the item refers to, nor the meta description tag, assuming you use these (don’t know what they are? See my How To Use HTML Tags article). You can write any title and description that you think will describe the page. However, using your page’s title and meta description tag certainly makes it easy to copy and paste to build your RSS feed.

 

In the case of our example page, let’s say this is the information we settle on to define it as an item:

 

    Nokia 3650 Combines Phone And Photos

 

    I’ve been playing with the new Nokia 3650. Finally, someone has got the combination of a cell phone with digital camera capabilities right!

    http://allgadgetsreviewed.com/nokia3650.html

 

Now we have to surround that information with XML tags. These are similar to HTML tags, with the exception that unlike with HTML, there’s no set definition of XML tags. Anyone can make up a particular XML tag. Whether it is useful depends on the program that reads the resulting XML file. In the case of RSS feeds, they have their own unique set of XML tags that are defined. Use these correctly, and then anything that reads RSS will understand your information.

 

Did that make your head spin? If so, don’t reread — just carry on to see how simple it is. First, open a text editor like Notepad. We’re going to build our RSS file using it.

 

For your title, you need to start it with the <title> tag, then follow this with the text of the title, then end with the </title> tag. It looks like this:

 

    <title>Nokia 3650 Combines Phone And Photos</title>

 

For your description, you do the same, starting out with the opening <description> tag, then following with the actual description, then “closing” with the </description> tag. Now you have this:

 

    <title>Nokia 3650 Combines Phone And Photos</title>

    <description>I’ve been playing with the new Nokia 3650. Finally, someone has got the combination of a cell phone with digital camera capabilities right!</description>

 

Next, we add the link information, beginning with <link>, following with the actual hyperlink, then closing with </link>. That gives us this:

 

    <title>Nokia 3650 Combines Phone And Photos</title>

    <description>I’ve been playing with the new Nokia 3650. Finally, someone has got the combination of a cell phone with digital camera capabilities right!</description>

    <link>http://allgadgetsreviewed.com/nokia3650.html</link>

 

Now there’s one more thing we need to do. We actually have to define all this information as forming a particular “item,” which we do using a special item tag.

 

You place the opening item tag, <item> at the top or start of all the information we’ve listed. You then place the closing item tag, </item>, at the bottom or “end” of the item information. The finished product looks like this:

 

    <item>

    <title>Nokia 3650 Combines Phone And Photos</title>

    <description>I’ve been playing with the new Nokia 3650. Finally, someone has got the combination of a cell phone with digital camera capabilities right!</description>

    <link>http://allgadgetsreviewed.com/nokia3650.html</link>

    </item>

 

Congratulations! You’ve now made your first item. There’s a bit more to do to finish our RSS file. First, what if we have other items we want to syndicate? Then we simply add more item elements, just as we did above. You can have up to 15 items. New items tend to be inserted at the top, with old items removed from the bottom, to make room for new stuff.

 

With our example, let’s see how things look if we add two more items:

 

    <item>

    <title>Nokia 3650 Combines Phone And Photos</title>

    <description>I’ve been playing with the new Nokia 3650. Finally, someone has got the combination of a cell phone with digital camera capabilities right!</description>

    <link>http://allgadgetsreviewed.com/nokia3650.html</link>

    </item>

 

    <item>

    <title>Sanyo Tablet PC Amazes!</title>

    <description>I was dubious about the new Tablet PCs, but then I saw the latest from Sanyo. Wow, cool looks and it works!</description>

    <link>http://allgadgetsreviewed.com/sanyotablet.html</link>

    </item>

 

    <item>

    <title>Canon MegaTiny Digital Camera Too Small</title>

    <description>OK, there is a limit to just how small is too small. Canon’s MetaTiny, no larger than a quarter, simply is too little to use properly</description>

    <link>http://allgadgetsreviewed.com/metatiny.html</link>

    </item>

 

Having defined items we want to distribute, we now have to define our site as a “channel.” You’ll use the same tags as with the items: title, description and link. However, this time the information will be about your entire site, rather than a particular page. That means our channel information would look like this:

 

    <title>All Gadgets Reviewed</title>

    <description>If it’s a gadget, we review it. Learn what gadgets are hot and what’s not!</description>

    <link>http://allgadgetsreviewed.com</link>

 

Now, how does something reading our RSS file know that the information above is for our “channel” when it looks just like item information? Simple. As long as we don’t surround this information with an opening and closing <item> tags, it won’t be seen as item information but rather as channel information. That gives us this:

 

    <title>All Gadgets Reviewed</title>

    <description>If it’s a gadget, we review it. Learn what gadgets are hot and what’s not!</description>

    <link>http://allgadgetsreviewed.com</link>

 

    <item>

    <title>Nokia 3650 Combines Phone And Photos</title>

    <description>I’ve been playing with the new Nokia 3650. Finally, someone has got the combination of a cell phone with digital camera capabilities right!</description>

    <link>http://allgadgetsreviewed.com/nokia3650.html</link>

    </item>

 

    <item>

    <title>Sanyo Tablet PC Amazes!</title>

    <description>I was dubious about the new Tablet PCs, but then I saw the latest from Sanyo. Wow, cool looks and it works!</description>

    <link>http://allgadgetsreviewed.com/sanyotablet.html</link>

    </item>

 

    <item>

    <title>Canon MegaTiny Digital Camera Too Small</title>

    <description>OK, there is a limit to just how small is too small. Canon’s MetaTiny, no larger than a quarter, simply is too little to use properly</description>

    <link>http://allgadgetsreviewed.com/metatiny.html</link>

    </item>

 

There are a few last things we need to do. First, we need to add a tag at the very top of the file saying that this is written according to the XML 1.0 specifications. Right under this, we also have to say what RSS version we are using.

 

So far, everything we’ve done is compatible with UserLand’s popular RSS 0.91 version. However, it also matches UserLand’s latest RSS 2.0 version, as well, so we’ll define the file as meeting that specification. This will allow us to add other neat features in the future, if we want.

 

Finally, after the RSS tag, we need to add an opening “channel” tag. That gives us this at the top of the file:

 

    <?xml version=”1.0″?>

    <rss version=”2.0″>

    <channel>

 

At the bottom of the file, after all the items we want to syndicate, we have to insert a closing channel and RSS tag, in that order. Those look like this:

 

</channel>

</rss>

 

This means our complete file looks like this:

 

    <?xml version=”1.0″ ?>

    <rss version=”2.0″>

 

    <channel>

 

    <title>All Gadgets Reviewed</title>

    <description>If it’s a gadget, we review it. Learn what gadgets are hot and what’s not!</description>

    <link>http://allgadgetsreviewed.com</link>

 

    <item>

    <title>Nokia 3650 Combines Phone And Photos</title>

    <description>I’ve been playing with the new Nokia 3650. Finally, someone has got the combination of a cell phone with digital camera capabilities right!</description>

    <link>http://allgadgetsreviewed.com/nokia3650.html</link>

    </item>

 

    <item>

    <title>Sanyo Tablet PC Amazes!</title>

    <description>I was dubious about the new Tablet PCs, but then I saw the latest from Sanyo. Wow, cool looks and it works!</description>

    <link>http://allgadgetsreviewed.com/sanyotablet.html</link>

    </item>

 

    <item>

    <title>Canon MegaTiny Digital Camera Too Small</title>

    <description>OK, there is a limit to just how small is too small. Canon’s MetaTiny, no larger than a quarter, simply is too little to use properly</description>

    <link>http://allgadgetsreviewed.com/metatiny.html</link>

    </item>

 

    </channel>

 

    </rss>

 

Mind Blowing Options

 

Everything shown above is the bare basics you need to create a file and start syndicating content from your web site. However, there are additional things you could do.

 

For example, rather than your entire web site being a “channel,” you could actually have different content from within the web site be defined into separate channels. That’s something I’m not going to explore in this article, but some of the resources below will guide you through this, when you feel more comfortable.

 

As hinted at, RSS 2.0 allows you to insert all types of additional information into your feed. It can make your head spin to look at these and decide what to use. The easy answer is, don’t bother with anything you don’t know. Not every aggregator supports all the options offered. As long as you provide the minimum information suggested above, you should be fine.

Did I Choose The Right RSS Version?

 

Earlier, I’d mentioned there are different versions of RSS. Even though we entered the bare minimum of information, it turned out that we were able to have a file that was easily considered to be RSS 2.0, the latest version promoted by UserLand and which is widely used.

 

Indeed, the Syndic8 site reports that the most popular format of RSS by far is RSS 0.91 — and though we’ve used RSS 2.0, our file as shown is entirely compatible with RSS 0.91. In short, we’re in safe company.

 

What about that RSS 1.0 version that I said was complicated. Well, it is complicated. However, some people might want to make use of some of the special capabilities that it offers. If you are interested in it, then check out the official specification.

Saving The File

 

Now that we’re done adding to the file, we need to save it. But what name shall we give it? I’ve looked and not seen any guidance on this. I imagine that’s because as long as the file is valid (more below), it probably doesn’t matter what it’s called.

 

To make my own decision for Search Engine Watch, I decided to imitate what I saw out at UserLand, which promotes the RSS 2.0 standard that we used. UserLand’s example feeds all ended .xml, so let’s do the same. As for the first part, that really can be whatever you like. For our example, let’s say we just call it feed.xml.

 

Now that our file is saved, we can place it anywhere we want on our web server. Let’s say we put it in the root or home directory. Then the address to our RSS file would be:

 

    http://allgadgetsreviewed.com/feed.xml

 

Validating The File

 

Now our RSS file is done, but did we do it right? To find out, we need to validate it. Use the aptly named Feed Validator service. Simply enter the address to your RSS file, and you’ll be told if everything is OK — or if there’s something wrong you need to fix.

 

How about a quick preview of how your new feed actually looks? Then pay a visit to Wytheville Community College News Center. Again, enter your feed URL, and you’ll see the clickable headlines and story descriptions nicely assembled inside a box.

 

The service will also generate a JavaScript code that you can post on your site. Anyone copying the JavaScript can automatically have your feed syndicated into their pages — pretty neat!

 

 


Here are some very good keyword research tools that helps you alot.

Google Keyword Tool - Search for keywords in over 50 languages. It features a very high quality, clean and frequently updated keyword database, with estimated search volume. The down side – keywords that don’t meet Google’s search volume criteria don’t make it to the database, rendering this tool useless for long keyword phrases (four to eight words in length). Regardless, this is one of the best keyword research tools.mag1

Wordtracker – Their free tool has a limit of 100 results. If you want to see all keywords, you must pay. Its free database is very detailed, so in most cases 100 results is enough. Wordtracker gathers keyword data from two meta search engines – Dogpile and Metacrawler. Both search engines hold around a one percent market share, so to estimate real search volume numbers across all search engines you must multiply Wordtracker numbers by 99.

Keyword Discovery - This tool has a noisy database, so use it with caution. It gathers data from toolbars installed on many computers. I find their free database needs a huge clean up.

Yahoo Search Marketing – Follow these steps to get to Yahoo’s keyword research tool. When you click on the link, you will get to a page that says: “Start Advertising with Yahoo! Search Marketing in 5 Simple Steps.” On the right side, select your “market” and “time zone,” then click on “Get Started.” You will see Yahoo say: “1. Target Customers by Geographic Location.” Leave everything as is and click on “Next: Keywords.” You now have access to Yahoo’s keyword tool. There’s no need to register further. Copy your keywords when finished and close the window.

There is a big down side to using this tool; you have to go through this process every time. If you don’t like the hassle, you can pay Yahoo $50 to open an account with their pay-per-click service.

SEO Book Keyword Research Tool – This tool gives exactly the same results as Wordtracker (above). In fact, its database relies on Wordtracker. What you will like about the SEO Book tool is all the extras that come on top of regular keyword research. You can search Yahoo Suggest, Google Suggest, Google Traffic Estimator, Google Insights, Quintra, News Search, Directories, Blog Search, Tag Search and more, all in one place. Play around with it a little.

Now you know where to find keywords. To find more, search with “keyword research” or “keyword research tool” on search engines.

Search engine optimization, and search engine marketing in general, can serve a number of different purposes. It can generate sales, both online and offline. It can generate leads. It can convince search engine users to take the actions you desire, such as signing up for your newsletter, downloading white papers from your site, registering for a seminar, and so on. And while it is doing all this, your website’s prominent position on the search engine results pages (SERPs) contributes to branding and name recognition.

When done correctly, search engine optimization can bring people to your site that are actually looking for what you are offering. You know they’re looking for it because they typed in a key word or phrase that is directly related to your content. Most consumers are really tired of being inundated with marketing everywhere they look, but are still receptive to the kind of “just-in-time” marketing represented by a high placement in search engine results.

Search engine optimization is a necessary part of any website trying to make money or attract attention online. The majority of web traffic is driven by the major commercial search engines: Yahoo!, MSN, Google, and AskJeeves. (As of this writing, AOL’s search engine uses Google for its search results). According to various studies, most people prefer to click on organic search results rather than sponsored results, by a very wide margin. This shows that importance of website position in Search engine results page.

This doesn’t mean that ads placed with search engine programs (like Google’s AdSense) are worthless, but it does mean that they shouldn’t be the be-all and end-all of a company’s website marketing campaign. Search engine users tend to trust organic results more than paid ads, which means that they’re more likely to click on them – and more likely to convert. There is a catch, though: they have to see you in the results to click on you. A good position in the search engines can’t be bought in the same way as a banner ad or a sponsored listing.

Studies have shown that most search engine users don’t click past the first three pages of search results; many don’t even click past the first page if they find what they’re looking for. Your own experience using search engines probably confirms this. What does this mean? It doesn’t matter how many search engines spider your site; if it isn’t listed in the first three pages, it might as well be invisible. Indeed, getting on the first page, among the top three results, is even better.

To have the Best and Ethical Seo services, visit us at www.seowebsitetraffic.com

Search engine optimization (SEO) is the process of improving the volume and quality of traffic to a web site from search engines via “natural” (“organic” or “algorithmic”) search results. Usually, the earlier a site is presented in the search results, or the higher it “ranks,” the more searchers will visit that site. SEO can also target different kinds of search, including image search, local search, and industry-specific vertical search engines.

From the early 1990’s, website owners woke up to the idea that having highly visible sites in the search engines brought valuable business results.  In tandem, the idea of gaining higher rank, which brought higher visibility, would drive increased traffic. Initially, all a webmaster needed to do was submit a page, or URL, to the various engines which would send a spider to “crawl” that page, extract links to other pages from it, and return information found on the page to be indexed. The process involves a search engine spider downloading a page and storing it on the search engine’s own server, where a second program, known as an indexer, extracts various information about the page, such as the words it contains and where these are located, as well as any weight for specific words, as well as any and all links the page contains, which are then placed into a scheduler for crawling at a later date.

Here is the brief History of Search Engine Optimization

1995 - The early days of Yahoo.

Optimization was born out of the roots of AAA, A#1, and Acme style yellow pages/white pages alphabetical optimizations.

1996 – Blind luck and keyword seasoning to taste.

The early days were stabs in the dark using simple keyword seasoning. Poke it here, and look for a reaction there. The first concepts of density and location started to be used.

You could still get a site listed in Yahoo by merely submitting it. As long as it wasn’t too gaudy, you were in within 72 hours.

Late 96 – The first papers begin to appear on the web about text matching, data mining, and interviews with se programmers.

Light bulbs of understanding begin going off around the early seo community. People began to realize just how databases work to match text and how they would be applied to the greater database of the web.

1997 – The first algo crackers appear.

The first algo crackers were quite rudimentary by simply studying the make up of pages in the results many of the major clues to the algo’s could be understood.

More specifically, several seo’s decoded all 35 parameters to Excite and were able to build pages precisely to the algo; thus, generating #1 pages at will.

Se’s begin waking up to the fact that their sites are “portals” (in one door and out the other). Se’s begin their first attempts at keeping people on the site in various ways. Some were intentional algo manipulations designed to keep people around the se and searching longer than they should have. (There are some big time stories here if any se techs would like to talk)

Spam becomes a very serious problem for the SE’s as unscrupulous spam sites began to understand algos and how to manipulate them. Hotbot and Altavista were next to useless in late 97 due to spam (last half of 97 and most of 98 were the dark ages for se’s).

More page jacking incidents happen regularly. Hardly any top seo doesn’t have top ranked pages stolen and copied. often copied into foreign domains out of jurisdiction.

Algo crackers begin to talk about the first cloaked pages appearing in the insurance and auto sectors.

1998 – Let’s get serious.

After several papers were delivered at the WWW conferences, it became clear se’s were going to move to off-The-Page criteria. Prerequisites such as link pop, directory listings, and listings age were going to be main parts of the new algo’s.

Decoding algo’s became very sophisticated in mid 98 and 99. Several optimization firms hired programmers to write efficient algo crackers.

Se’s begin to modernize with multi-languages, word lists (term vectors), and other language expertise – the era of the word guru is born.

Google hits the scene in earnest. Page and Brin founded Google in 1998. Google attracted a loyal following among the growing number of Internet users, who liked its simple design. Off-page factors (such as PageRank and hyperlink analysis) were considered as well as on-page factors (such as keyword frequency, meta tags, headings, links and site structure) to enable Google to avoid the kind of manipulation seen in search engines that only considered on-page factors for their rankings. Although PageRank was more difficult to game, webmasters had already developed link building tools and schemes to influence the Inktomi search engine, and these methods proved similarly applicable to gaining PageRank. Many sites focused on exchanging, buying, and selling links, often on a massive scaleTheir first build of 25million urls makes it clear they have a future. I review it and am the first (beep beep) to propose link programs. People begin thinking in earnest about link pop and how to effect it.

Spam page/doorway page auto generators show up on the web every where and some are very good.

Referrals hold steady for those that know the game and stay off the radar. Using quality seo – that doesn’t look like seo – rules the day.

Late 98-early 99 – Altavista fights back with “too many urls” and bans huge segments of sites and sites with auto doorway page generators. Other engines begin out-and-out wars against seo. If a site said “we optimize” or “we promote” anywhere on it, they were banned in massive quantities. Much of that same mentality still exists today in many search engine offices.

Although the algo crackers are at their peak of performance, their utility falls as off-the-page factors such as link popularity become main stream in the se’s. Decoding what makes a page top ten has never been more difficult. Those that know, now spend 10 times (literally) as much time to acheive half the rankings they did in 98. Algo crackers are not much more than statistic generators now.

Google’s PageRank begins to bear fruit while the other se’s self destruct under management chaos and mountains of red ink.

Cloaking becomes almost mandatory on many se’s to protect rankings and code. It is unfortunately used by those not so interested in those factors and more interested in spamming for the sake of instant successes.

Late 99 the effects of the end of seo begin to sink in.

Goto begins to make it’s major push. seo’s begin ppc’izing their billing with store-front redirect sites showing up every where.

Link pop schemes explode.

Other se’s cut huge swaths out of their db’s for unknown reasons. Part of it was size, some of it was spam, and some what just because they could.

seo and traditional algo decoding techniques as we knew it, are all but relegated to the ash heap of history.

Referrals begin to plummet as competition sky rockets and the web matures. I secretly think 99 was when people “settled in” to a daily routine and began using search engines less and less. It was no longer this huge mystery that needed to be explored – they now used it to do productive things. eg: sites such as news take off in record numbers.

2000 – A fairly deep shudder goes through the remaining industry as the end of what was left of Infoseek is gone.

The paid for play schemes and ppc schemes crank up in rapid succession in 2000. From Ink, to Alta, to even buying banners based on keywords – ppc and pfp is every where.

Meanwhile back in the real search industry, surfers look for an engine that actually works at finding them info – Google solidifies its position as the new defacto se.

The link pop craze of 99 begins to fade as it becomes very clear they are risky items – too easily tracked.

The last gasp for link pop programs is the building of fake awords programs, fake guestbooks, fake directories, and fake forum systems just to build fake link pop.

2001-Bought and Paid For listings are everywhere. Goto is on all the major hubs from Yahoo, AOL, to even MSN. People abandon other se’s such as Hotbot, Altavista, and Excite in record numbers. It’s an exodus.

seo is we knew it, is all but over. We are down to talking about the few remaining free specific engines and their systems. There is now a major difference in how se’s work and how to “work them”.

Welcome to the era of “All Google All The Time”.

2002 – Underneath all this was the growing realization that linking was driving our listings, our process of linking new clients to old in an effort to get them spidered was originally designed to avoid the use of automated submission software and also cut down on the lead time for getting indexed. We now realized that ‘inadvertently’ link popularity had driven our clients to the top. In addition to this, working in vertical markets had ensured that the links were on topic and themed to each business type.

This was also the year that Google started to get tough with its linking algorithm; websites that were found to be linking with each other from the same server or IP address were penalized.

2003 – The momentum continued with the anti spam band wagon, and finally companies realized that their websites were going to have to change if they wanted to get listed in search engines. Website design changed radically, flash was now a code to be used carefully, content was now a growing part of any presentation by smaller web agencies

This was the year that saw the complete demise of search engines such as Alta Vista, sold then resold for paltry sums of money, Inktomi once led search technology but was now in Google’s wake. Google maintained its strangle hold and ever tightened it.

2004 – In many ways 2004 was the year the industry will never forget, it benchmarked the sheer power that Google had.

The Florida Update changed the industry forever, ethical website improvement is the only way forward and there is now no room for smart ‘black hat’ tactics. PPC is now firmly embedded in the marketing strategy and SEO is a part of SEM and each few months there will be further shake ups as the technology employed by search facilities just gets better and better

2005 – This was a settling year, the industry was adjusting.

Websites were being designed with functionality, the .com boom and bust was just a memory and many businesses realized that spending money on their Internet facility was money well spent. Google’s database was doubling in size, its indexing rate was slow and the ‘Google Dance’ was a thing of the past. Forums became less busy and dull and the industry became calm.


This year saw the rise of the stealth cull, many websites vanishing from page1 positions with little publicity. Much of this was due to Google testing new algorithms, working on its plan to eradicate artificial link generation. It’s incredible to think that all those years ago Google was created with linking as its core doctrine and now as 2006 arrives Google launches its anti link-spam filters, this update was implemented in three phases, Jagger 1, 2 and 3.

2006- So here we are, full circle, from linking to linking, but once again compliance dictates that a website’s linking must conform to strict guidelines. We are now at a point where Google has publicly stated, “get compliant as we are now able to tell if you are not”. If you don’t think that’s true then just ask the marketing director at BMW and how he felt when Google publicly threw them out for being non compliant with regulations.

By 2007, search engines had incorporated a wide range of undisclosed factors in their ranking algorithms to reduce the impact of link manipulation. Google says it ranks sites using more than 200 different signals. The three leading search engines, Google, Yahoo and Microsoft’s Live Search, do not disclose the algorithms they use to rank pages.

 

Sources – http://www.webmasterworld.com/

                  http://www.highposition.net/

                 http://en.wikipedia.org/wiki/Search_engine_optimization