Posts

Showing posts from July, 2015

Difference between array, arraylist, List, Hashtable, Dictionary and SortedList in c#

Basic difference is that arrays are of fixed size. Whereas an ArrayList implements the list data structure and can dynamically grow. While arrays would be more performance that a list, a list would be far more flexible since you don't need to know the required size initially. Array - represents an old-school memory array - kind of like a alias for a normal type[] array. Can enumerate. Can't grow automatically. I would assume very fast insertion, retrieve and speed. ArrayList - automatically growing array. Adds more overhead. Can enum., probably slower than a normal array but still pretty fast. These are used a lot in .NET List - one of my favorites - can be used with generics, so you can have a strongly typed array, e.g. List . Other than that, acts very much like ArrayList. Hashtable - plain old hashtable. O(1) to O(n) worst case. Can enumerate the value and keys properties, and do key/val pairs. Dictionary - same as above only strongly typed via generics, such a...

. What is Cross Linking?

It is considered as one of the best strategy that can come in handy to yield high search engine rankings, by leveraging several domains owned by you

What do you know about Keyword stemming ?

It is trick to find out root word from search . For instance, a keyword like “house design” will be split to the word “house” by stemming algorithm that turns it possible. Thus, the search result appears on the screen will contain the word “house” in it

What is robots.txt?

It is a kind of text file utilized to provide the instructions to the crawlers about the caching and indexing of a website, directory, domain or a file of a webpage.

What methods would you apply for decreasing the loading time of a website

We can use the external style sheets, minimum images, decrease the file size of the images that we use, without compromising on the quality and use the CSS sprites to regulate the HTTP requests.

What is Google Sandbox

This is the place where the fresh and less authoritative sites were kept for a certain time period, till their establishment in the search results. This may happens due to the building of so many links within a short time span.

What is Googlebot

Googlebot is a kind of software used by the Google as a search bot to index a webpage. This software collects the information from every webpage by doing the crawling, caching and then indexing of a webpage. ..

What is a Back link in seo

Back links are the incoming links to your webpage or website and getting these back links from good PR and relevant site is always better for your site.