Wednesday, April 21, 2010
off page optimization
Press releases
Article distribution
Social networking via sites like Digg and Slashdot
Link campaigns, such as asking complementary businesses to provide links
Directory listings
Link exchanges
Three-way linking
One-way linking
Blogging
Forum posting
Multiway linking
Internet Marketing
src="http://d.yimg.com/ds/badge2.in.js"
badgetype="square">
ARTICLEURL
Page Rank Algoritham
Algorithm
PageRank is a probability distribution used to represent the likelihood that a person randomly clicking on links will arrive at any particular page. PageRank can be calculated for collections of documents of any size. It is assumed in several research papers that the distribution is evenly divided between all documents in the collection at the beginning of the computational process. The PageRank computations require several passes, called "iterations", through the collection to adjust approximate PageRank values to more closely reflect the theoretical true value.
A probability is expressed as a numeric value between 0 and 1. A 0.5 probability is commonly expressed as a "50% chance" of something happening. Hence, a PageRank of 0.5 means there is a 50% chance that a person clicking on a random link will be directed to the document with the 0.5 PageRank.
[edit]Simplified algorithm

How PageRank WorksAssume a small universe of four web pages: A,B, C andD. The initial approximation of PageRank would be evenly divided between these four documents. Hence, each document would begin with an estimated PageRank of 0.25.
In the original form of PageRank initial values were simply 1. This meant that the sum of all pages was the total number of pages on the web. Later versions of PageRank (see the formulas below) would assume a probability distribution between 0 and 1. Here a simple probability distribution will be used- hence the initial value of 0.25.
If pages B, C, and D each only link to A, they would each confer 0.25 PageRank to A. All PageRank PR( ) in this simplistic system would thus gather to A because all links would be pointing to A.

This is 0.75.
Suppose that page B has a link to page C as well as to page A, while page D has links to all three pages. The value of the link-votes is divided among all the outbound links on a page. Thus, page B gives a vote worth 0.125 to page A and a vote worth 0.125 to page C. Only one third of D's PageRank is counted for A's PageRank (approximately 0.083).

In other words, the PageRank conferred by an outbound link is equal to the document's own PageRank score divided by the normalized number of outbound links L( ) (it is assumed that links to specific URLs only count once per document).

In the general case, the PageRank value for any page ucan be expressed as:
,
i.e. the PageRank value for a page u is dependent on the PageRank values for each page v out of the set Bu (this set contains all pages linking to page u), divided by the numberL(v) of links from page v.
[edit]Damping factor
The PageRank theory holds that even an imaginary surfer who is randomly clicking on links will eventually stop clicking. The probability, at any step, that the person will continue is a damping factor d. Various studies have tested different damping factors, but it is generally assumed that the damping factor will be set around 0.85.[5]
The damping factor is subtracted from 1 (and in some variations of the algorithm, the result is divided by the number of documents (N) in the collection) and this term is then added to the product of the damping factor and the sum of the incoming PageRank scores. That is,

So any page's PageRank is derived in large part from the PageRanks of other pages. The damping factor adjusts the derived value downward. The original paper, however, gave the following formula, which has led to some confusion:

The difference between them is that the PageRank values in the first formula sum to one, while in the second formula each PageRank gets multiplied by N and the sum becomes N. A statement in Page and Brin's paper that "the sum of all PageRanks is one"[5] and claims by other Google employees[7] support the first variant of the formula above.
Google recalculates PageRank scores each time it crawls the Web and rebuilds its index. As Google increases the number of documents in its collection, the initial approximation of PageRank decreases for all documents.
The formula uses a model of arandom surfer who gets bored after several clicks and switches to a random page. The PageRank value of a page reflects the chance that the random surfer will land on that page by clicking on a link. It can be understood as a Markov chain in which the states are pages, and the transitions are all equally probable and are the links between pages.
If a page has no links to other pages, it becomes a sink and therefore terminates the random surfing process. However, the solution is quite simple. If the random surfer arrives at a sink page, it picks another URL at random and continues surfing again.
When calculating PageRank, pages with no outbound links are assumed to link out to all other pages in the collection. Their PageRank scores are therefore divided evenly among all other pages. In other words, to be fair with pages that are not sinks, these random transitions are added to all nodes in the Web, with a residual probability of usually d= 0.85, estimated from the frequency that an average surfer uses his or her browser's bookmark feature.
So, the equation is as follows:

where p1,p2,...,pN are the pages under consideration, M(pi) is the set of pages that link to pi,L(pj) is the number of outbound links on page pj, and N is the total number of pages.
The PageRank values are the entries of the dominant eigenvector of the modified adjacency matrix. This makes PageRank a particularly elegant metric: the eigenvector is

where R is the solution of the equation

where the adjacency function
is 0 if page pj does not link to pi, and normalised such that, for each i
,
i.e. the elements of each column sum up to 1 (for more details see the computation section below). This is a variant of the eigenvector centrality measure used commonly in network analysis.
Because of the large eigengap of the modified adjacency matrix above, [8] the values of the PageRank eigenvector are fast to approximate (only a few iterations are needed).
As a result of Markov theory, it can be shown that the PageRank of a page is the probability of being at that page after lots of clicks. This happens to equal t − 1 where t is the expectationof the number of clicks (or random jumps) required to get from the page back to itself.
The main disadvantage is that it favors older pages, because a new page, even a very good one, will not have many links unless it is part of an existing site (a site being a densely connected set of pages, such as Wikipedia). The Google Directory (itself a derivative of the Open Directory Project) allows users to see results sorted by PageRank within categories. The Google Directory is the only service offered by Google where PageRank directly determines display order.[citation needed] In Google's other search services (such as its primary Web search) PageRank is used to weigh the relevance scores of pages shown in search results.
Several strategies have been proposed to accelerate the computation of PageRank.[9]
Various strategies to manipulate PageRank have been employed in concerted efforts to improve search results rankings and monetize advertising links. These strategies have severely impacted the reliability of the PageRank concept, which seeks to determine which documents are actually highly valued by the Web community.
Google is known to penalize link farms and other schemes designed to artificially inflate PageRank. In December 2007 Google started activelypenalizing sites selling paid text links. How Google identifies link farms and other PageRank manipulation tools are among Google's trade secrets.
[edit]Computation
To summarize, PageRank can be either computed iteratively or algebraically. Alternatively, the power iteration method[10][11], or power method, can be employed.
[edit]Iterative
In the former case, at t = 0, an initial probability distribution is assumed, usually
.
At each time step, the computation, as detailed above, yields
,
or in matrix notation
, (*)
where
and
is the column vector of length Ncontaining only ones.
The matrix
is defined as

i.e.,
,
where A denotes the adjacency matrix of the graph and K is the diagonal matrix with the outdegrees in the diagonal.
The computation ends when for some small ε
,
i.e., when convergence is assumed.
[edit]Algebraic
In the latter case, for
(i.e., in the steady state), the above equation (*) reads
. (**)
The solution is given by
,
with the identity matrix
.
The solution exists and is unique for 0 < d <>. This can be seen by noting that
is by construction a stochastic matrix and hence has an eigenvalue equal to one because of thePerron-Frobenius theorem.
[edit]Power Method
If the matrix
is a transition probability, i.e., column-stochastic with no columns consisting of just zeros and
is a probability distribution (i.e.,
,
where
is matrix of all ones), Eq. (**) is equivalent to
. (***)
Hence PageRank
is the principal eigenvector of
. A fast and easy way to compute this is using the power method: starting with an arbitrary vectorx(0), the operator
is applied in succession, i.e.,
,
until
- | x(t + 1) − x(t) | < ε.
Note that in Eq. (***) the matrix on the right-hand side in the parenthesis can be interpreted as
,
where
is an initial probability distribution. In the current case
.
Finally, if
has columns with only zero values, they should be replaced with the initial probability vector
. In other words
,
where the matrix
is defined as
,
with

In this case, the above two computations using
only give the same PageRank if their results are normalized:
.
Friday, April 9, 2010
SEO Interview Questions
SEO Interview Questions
Death by interview has been known so I wouldn’t recommend asking all of these questions. Pick and choose at will…
Open-ended SEO questions
- What is your favourite aspect of SEO?
- What is the most difficult aspect of SEO for you?
- What has been your biggest mistake in optimising a website for search engines?
- What has been you biggest success in SEO?
- Do you have your own website(s)? What are they? What is their purpose? How effective have they been?
- What business sectors have you previously worked in as a SEO?
- What is the most competitive sector you have worked in as a SEO specialist?
- Do you like Matt Cutt’s?!
- What is your favourite SEO website/blog, and why?
- Who do you most respect in the SEO industry, and why?
- Who do you least respect in the SEO industry, and why?
- Which website do you go to learn something new every time?
- What Analytics packages have you used?
- Talk me through the process of setting conversion goals?
- Explain the process of advanced segmentation and an example of why you might use this?
- If you could develop a new feature for an analytics package that is not currently/easily available what would it be?
- Please explain the PageRank algorithm…
- What is the most important aspect to you of the PageRank algorithm for link-building?
- What is page segmentation?
- What is LSI / LSA and its relevance to SEO?
- Explain to me how phrase-base algorithms work? Clustering?
- Describe any perceived differences in the main search engines?
- Have you noticed any algorithm changes lately that you believe to have affected your rankings? How do you work to protect your online visibility?
- What process do you typically go through when researching keywords?
- How could this process be improved?
- How do you carry out competitive analysis of keywords/SERPs as part of the keyword research process?
- When targeting keywords on-page, discuss some considerations you might make?
- What factors hinder search engines access to a website’s content?
- What is the most responsible way of using Flash?
- Tell me how you might use the Robots.txt file?
- What is the difference between an xml sitemap and an html sitemap?
- If you were reviewing a landing page, what on-page ranking factors would you consider?
- How would you analyse the strength of that page as part of the site?
- Are you competent with HTML and CSS?
- Talk me through factors you would consider in building an optimised website. (Possible answers might include the discussion around information architecture, site structure, title tags, link structures, keyword relevance, etc).
- What are onsite ranking factors for building a successful landing page strategy?
- Please provide examples of blackhat SEO techniques?
- What are your thoughts on blackhat SEO techniques? What, if any, have you used, or tested?
- What would the perfect inbound link look like?
- What do you like and not like about link-building?
- Explain to me your involvement in link-building in the past?
- What approach to link-building have you had most success?
- Would you consider yourself as creative?
- Have you ever successfully carried out a linkbait campaign for a client / in-house? What was the success?
- Talk me through the process you might go through in developing a linkbait strategy?
- Are you confident writing and publishing content online?
- Please provide examples of the content that you have written. What was the purpose of this content and what keywords were you targeting?
- What keyword research tools do you use and why?
- What is your favourite ‘SEO tool’? Why?
- Do you think SEO tools are effective in competitive markets? Why?
- Have you carried-out split-testing / multivariate testing of content?
- What did you learn from this process?
- What factors can you do to encourage the chance of ranking for images?
- What is hotlinking? How can this be successfully optimised?
- Have you ever carried out video optimisation?
- What are a few considerations of optimising video content?
- Which social media sites do you most like? Why?
- Which social media sites do you most dislike? Why?
- What has been your biggest achievement in SMM?
- Do you feel that you are well connected in Social media spheres? Does your social media account carry influence?
- Do you prefer to use the same pseudonym across your social media profiles? What are the pros and cons of doing this?
- When did you get into social media (and marketing)?
- What is your oldest social media profile?
- Would you ever sell or buy social media profiles?
- What has been the most effective social media marketing campaign you have been involved in? How was it effective? Metrics / exposure / links?
- How do you effectively use social media to support SEO campaigns, or vice versa?
- Although not strictly SEO, the understanding of the cross-over of visibility in paid-listings can be very important for effective SEO campaigns.
- Have you worked on/with PPC accounts? How did it go?
- How do you integrate PPC and SEO?
- What considerations might you make when carrying out paid search competitive analysis?
- What are the key performance metrics you have previously reported to clients?
- What are effective metrics for highlighting return on investment from SEO?
- What would you like to change about the SEO reporting process?
- What other areas of business present opportunities for organic search visibility?
- If your SEO efforts aren’t getting the visibility you would hope, what would you do?
- Have you prepared proposals for SEO clients?
- Have you presented proposals to SEO clients? How did it go?
- What was the biggest mistake you have made in a meeting with a client?
- What is your greatest strength when presenting to prospective SEO clients?
- What do you think is the most important factor in retaining a client?
- From the previous company that you worked for, what was one process that they could have improved in retaining and gaining clients?
- Where do you see yourself in 5 years time?
- What are you salary expectations? Availability? Etc, etc…
- How did you feel the interview went?!
Knowledge of the SEO Industry / engagement in learning about SEO and engagement with the SEO Community
Analytics
Algorithms
Keywords
Accessibility
On-page Ranking Factors
Onsite Ranking Factors
Offsite Ranking Factors
Linkbait Development and Marketing
Copywriting
SEO Tools
Testing
Image Optimisation
Video optimisation
Social Media Interview Questions
Open-ended Social Media Questions
PPC Interview questions
Business Acumen and ROI
Pitching for Business
Retaining Business
Closing questions
Search engine optimization
Wednesday, April 21, 2010
off page optimization
Press releases
Article distribution
Social networking via sites like Digg and Slashdot
Link campaigns, such as asking complementary businesses to provide links
Directory listings
Link exchanges
Three-way linking
One-way linking
Blogging
Forum posting
Multiway linking
Internet Marketing
src="http://d.yimg.com/ds/badge2.in.js"
badgetype="square">
ARTICLEURL
Page Rank Algoritham
Algorithm
PageRank is a probability distribution used to represent the likelihood that a person randomly clicking on links will arrive at any particular page. PageRank can be calculated for collections of documents of any size. It is assumed in several research papers that the distribution is evenly divided between all documents in the collection at the beginning of the computational process. The PageRank computations require several passes, called "iterations", through the collection to adjust approximate PageRank values to more closely reflect the theoretical true value.
A probability is expressed as a numeric value between 0 and 1. A 0.5 probability is commonly expressed as a "50% chance" of something happening. Hence, a PageRank of 0.5 means there is a 50% chance that a person clicking on a random link will be directed to the document with the 0.5 PageRank.
[edit]Simplified algorithm

How PageRank WorksAssume a small universe of four web pages: A,B, C andD. The initial approximation of PageRank would be evenly divided between these four documents. Hence, each document would begin with an estimated PageRank of 0.25.
In the original form of PageRank initial values were simply 1. This meant that the sum of all pages was the total number of pages on the web. Later versions of PageRank (see the formulas below) would assume a probability distribution between 0 and 1. Here a simple probability distribution will be used- hence the initial value of 0.25.
If pages B, C, and D each only link to A, they would each confer 0.25 PageRank to A. All PageRank PR( ) in this simplistic system would thus gather to A because all links would be pointing to A.

This is 0.75.
Suppose that page B has a link to page C as well as to page A, while page D has links to all three pages. The value of the link-votes is divided among all the outbound links on a page. Thus, page B gives a vote worth 0.125 to page A and a vote worth 0.125 to page C. Only one third of D's PageRank is counted for A's PageRank (approximately 0.083).

In other words, the PageRank conferred by an outbound link is equal to the document's own PageRank score divided by the normalized number of outbound links L( ) (it is assumed that links to specific URLs only count once per document).

In the general case, the PageRank value for any page ucan be expressed as:
,
i.e. the PageRank value for a page u is dependent on the PageRank values for each page v out of the set Bu (this set contains all pages linking to page u), divided by the numberL(v) of links from page v.
[edit]Damping factor
The PageRank theory holds that even an imaginary surfer who is randomly clicking on links will eventually stop clicking. The probability, at any step, that the person will continue is a damping factor d. Various studies have tested different damping factors, but it is generally assumed that the damping factor will be set around 0.85.[5]
The damping factor is subtracted from 1 (and in some variations of the algorithm, the result is divided by the number of documents (N) in the collection) and this term is then added to the product of the damping factor and the sum of the incoming PageRank scores. That is,

So any page's PageRank is derived in large part from the PageRanks of other pages. The damping factor adjusts the derived value downward. The original paper, however, gave the following formula, which has led to some confusion:

The difference between them is that the PageRank values in the first formula sum to one, while in the second formula each PageRank gets multiplied by N and the sum becomes N. A statement in Page and Brin's paper that "the sum of all PageRanks is one"[5] and claims by other Google employees[7] support the first variant of the formula above.
Google recalculates PageRank scores each time it crawls the Web and rebuilds its index. As Google increases the number of documents in its collection, the initial approximation of PageRank decreases for all documents.
The formula uses a model of arandom surfer who gets bored after several clicks and switches to a random page. The PageRank value of a page reflects the chance that the random surfer will land on that page by clicking on a link. It can be understood as a Markov chain in which the states are pages, and the transitions are all equally probable and are the links between pages.
If a page has no links to other pages, it becomes a sink and therefore terminates the random surfing process. However, the solution is quite simple. If the random surfer arrives at a sink page, it picks another URL at random and continues surfing again.
When calculating PageRank, pages with no outbound links are assumed to link out to all other pages in the collection. Their PageRank scores are therefore divided evenly among all other pages. In other words, to be fair with pages that are not sinks, these random transitions are added to all nodes in the Web, with a residual probability of usually d= 0.85, estimated from the frequency that an average surfer uses his or her browser's bookmark feature.
So, the equation is as follows:

where p1,p2,...,pN are the pages under consideration, M(pi) is the set of pages that link to pi,L(pj) is the number of outbound links on page pj, and N is the total number of pages.
The PageRank values are the entries of the dominant eigenvector of the modified adjacency matrix. This makes PageRank a particularly elegant metric: the eigenvector is

where R is the solution of the equation

where the adjacency function
is 0 if page pj does not link to pi, and normalised such that, for each i
,
i.e. the elements of each column sum up to 1 (for more details see the computation section below). This is a variant of the eigenvector centrality measure used commonly in network analysis.
Because of the large eigengap of the modified adjacency matrix above, [8] the values of the PageRank eigenvector are fast to approximate (only a few iterations are needed).
As a result of Markov theory, it can be shown that the PageRank of a page is the probability of being at that page after lots of clicks. This happens to equal t − 1 where t is the expectationof the number of clicks (or random jumps) required to get from the page back to itself.
The main disadvantage is that it favors older pages, because a new page, even a very good one, will not have many links unless it is part of an existing site (a site being a densely connected set of pages, such as Wikipedia). The Google Directory (itself a derivative of the Open Directory Project) allows users to see results sorted by PageRank within categories. The Google Directory is the only service offered by Google where PageRank directly determines display order.[citation needed] In Google's other search services (such as its primary Web search) PageRank is used to weigh the relevance scores of pages shown in search results.
Several strategies have been proposed to accelerate the computation of PageRank.[9]
Various strategies to manipulate PageRank have been employed in concerted efforts to improve search results rankings and monetize advertising links. These strategies have severely impacted the reliability of the PageRank concept, which seeks to determine which documents are actually highly valued by the Web community.
Google is known to penalize link farms and other schemes designed to artificially inflate PageRank. In December 2007 Google started activelypenalizing sites selling paid text links. How Google identifies link farms and other PageRank manipulation tools are among Google's trade secrets.
[edit]Computation
To summarize, PageRank can be either computed iteratively or algebraically. Alternatively, the power iteration method[10][11], or power method, can be employed.
[edit]Iterative
In the former case, at t = 0, an initial probability distribution is assumed, usually
.
At each time step, the computation, as detailed above, yields
,
or in matrix notation
, (*)
where
and
is the column vector of length Ncontaining only ones.
The matrix
is defined as

i.e.,
,
where A denotes the adjacency matrix of the graph and K is the diagonal matrix with the outdegrees in the diagonal.
The computation ends when for some small ε
,
i.e., when convergence is assumed.
[edit]Algebraic
In the latter case, for
(i.e., in the steady state), the above equation (*) reads
. (**)
The solution is given by
,
with the identity matrix
.
The solution exists and is unique for 0 < d <>. This can be seen by noting that
is by construction a stochastic matrix and hence has an eigenvalue equal to one because of thePerron-Frobenius theorem.
[edit]Power Method
If the matrix
is a transition probability, i.e., column-stochastic with no columns consisting of just zeros and
is a probability distribution (i.e.,
,
where
is matrix of all ones), Eq. (**) is equivalent to
. (***)
Hence PageRank
is the principal eigenvector of
. A fast and easy way to compute this is using the power method: starting with an arbitrary vectorx(0), the operator
is applied in succession, i.e.,
,
until
- | x(t + 1) − x(t) | < ε.
Note that in Eq. (***) the matrix on the right-hand side in the parenthesis can be interpreted as
,
where
is an initial probability distribution. In the current case
.
Finally, if
has columns with only zero values, they should be replaced with the initial probability vector
. In other words
,
where the matrix
is defined as
,
with

In this case, the above two computations using
only give the same PageRank if their results are normalized:
.
Friday, April 9, 2010
SEO Interview Questions
SEO Interview Questions
Death by interview has been known so I wouldn’t recommend asking all of these questions. Pick and choose at will…
Open-ended SEO questions
- What is your favourite aspect of SEO?
- What is the most difficult aspect of SEO for you?
- What has been your biggest mistake in optimising a website for search engines?
- What has been you biggest success in SEO?
- Do you have your own website(s)? What are they? What is their purpose? How effective have they been?
- What business sectors have you previously worked in as a SEO?
- What is the most competitive sector you have worked in as a SEO specialist?
- Do you like Matt Cutt’s?!
- What is your favourite SEO website/blog, and why?
- Who do you most respect in the SEO industry, and why?
- Who do you least respect in the SEO industry, and why?
- Which website do you go to learn something new every time?
- What Analytics packages have you used?
- Talk me through the process of setting conversion goals?
- Explain the process of advanced segmentation and an example of why you might use this?
- If you could develop a new feature for an analytics package that is not currently/easily available what would it be?
- Please explain the PageRank algorithm…
- What is the most important aspect to you of the PageRank algorithm for link-building?
- What is page segmentation?
- What is LSI / LSA and its relevance to SEO?
- Explain to me how phrase-base algorithms work? Clustering?
- Describe any perceived differences in the main search engines?
- Have you noticed any algorithm changes lately that you believe to have affected your rankings? How do you work to protect your online visibility?
- What process do you typically go through when researching keywords?
- How could this process be improved?
- How do you carry out competitive analysis of keywords/SERPs as part of the keyword research process?
- When targeting keywords on-page, discuss some considerations you might make?
- What factors hinder search engines access to a website’s content?
- What is the most responsible way of using Flash?
- Tell me how you might use the Robots.txt file?
- What is the difference between an xml sitemap and an html sitemap?
- If you were reviewing a landing page, what on-page ranking factors would you consider?
- How would you analyse the strength of that page as part of the site?
- Are you competent with HTML and CSS?
- Talk me through factors you would consider in building an optimised website. (Possible answers might include the discussion around information architecture, site structure, title tags, link structures, keyword relevance, etc).
- What are onsite ranking factors for building a successful landing page strategy?
- Please provide examples of blackhat SEO techniques?
- What are your thoughts on blackhat SEO techniques? What, if any, have you used, or tested?
- What would the perfect inbound link look like?
- What do you like and not like about link-building?
- Explain to me your involvement in link-building in the past?
- What approach to link-building have you had most success?
- Would you consider yourself as creative?
- Have you ever successfully carried out a linkbait campaign for a client / in-house? What was the success?
- Talk me through the process you might go through in developing a linkbait strategy?
- Are you confident writing and publishing content online?
- Please provide examples of the content that you have written. What was the purpose of this content and what keywords were you targeting?
- What keyword research tools do you use and why?
- What is your favourite ‘SEO tool’? Why?
- Do you think SEO tools are effective in competitive markets? Why?
- Have you carried-out split-testing / multivariate testing of content?
- What did you learn from this process?
- What factors can you do to encourage the chance of ranking for images?
- What is hotlinking? How can this be successfully optimised?
- Have you ever carried out video optimisation?
- What are a few considerations of optimising video content?
- Which social media sites do you most like? Why?
- Which social media sites do you most dislike? Why?
- What has been your biggest achievement in SMM?
- Do you feel that you are well connected in Social media spheres? Does your social media account carry influence?
- Do you prefer to use the same pseudonym across your social media profiles? What are the pros and cons of doing this?
- When did you get into social media (and marketing)?
- What is your oldest social media profile?
- Would you ever sell or buy social media profiles?
- What has been the most effective social media marketing campaign you have been involved in? How was it effective? Metrics / exposure / links?
- How do you effectively use social media to support SEO campaigns, or vice versa?
- Although not strictly SEO, the understanding of the cross-over of visibility in paid-listings can be very important for effective SEO campaigns.
- Have you worked on/with PPC accounts? How did it go?
- How do you integrate PPC and SEO?
- What considerations might you make when carrying out paid search competitive analysis?
- What are the key performance metrics you have previously reported to clients?
- What are effective metrics for highlighting return on investment from SEO?
- What would you like to change about the SEO reporting process?
- What other areas of business present opportunities for organic search visibility?
- If your SEO efforts aren’t getting the visibility you would hope, what would you do?
- Have you prepared proposals for SEO clients?
- Have you presented proposals to SEO clients? How did it go?
- What was the biggest mistake you have made in a meeting with a client?
- What is your greatest strength when presenting to prospective SEO clients?
- What do you think is the most important factor in retaining a client?
- From the previous company that you worked for, what was one process that they could have improved in retaining and gaining clients?
- Where do you see yourself in 5 years time?
- What are you salary expectations? Availability? Etc, etc…
- How did you feel the interview went?!