Webmaster

  Home  World Wide Web  Webmaster


“Webmaster frequently Asked Questions in various Webmasters job Interviews by interviewer. The set of questions here ensures that you offer a perfect answer posed to you. So get preparation for your new job hunting”



45 Webmaster Questions And Answers

21⟩ Do I need to learn HTML to create a website?

When you write a normal document using a word processor like Microsoft Word/Office, your text is saved in a file with a special format. It is not simply saved as the string of words you typed since the document needs to preserve things like the font you chose, the size of the text, which words are in bold, which italics, and so on. The special format includes not only your words, but all these extra information so that the next time Word opens your document, it can display the document with the exact appearance you created earlier.

In the same way, web pages are simply strings of words put in a special format that web browsers are able to display. While the format of Word documents is simply called "Word format" (or "doc format"), loosely speaking, one might say that web pages are formatted using "HTML".

 198 views

22⟩ Do I need to learn CSS to create a website?

Cascading Style Sheets, or CSS, allow you to specify things like the font you want on your page, the size of your text, whether the page is to have 2 columns, whether your text is to be in bold or italics, and so on. In other words, it is the part that lets you control the appearance of your web page.

You may be used to the Microsoft Word "doc" format, where everything from the text you type to the appearance of the document is specified in a single file, transparent to you. On the web, the raw information is specified in HTML and most of the appearance is determined by the CSS.

 177 views

23⟩ What are JavaScript, PHP and Perl?

JavaScript, PHP and Perl are three of the most commonly-used programming languages on the Internet. They are used by websites to carry out more complicated operations.

 158 views

24⟩ Will I have continue to pay fee to keep my domain name after I buy it?

The fee you pay the domain name registrar is an annual fee. In other words, you "own" the domain only as long as you keep paying the yearly fee for it. In this sense, the "ownership" of the name is not like the ownership of a physical object (eg, a car) that you buy, where once you pay for it you own it permanently. Instead, it's more like a rental fee where, as long as you pay the "rent", you can continue to point that domain name to your website.

The good news is that nowadays, because of heavy competition, domain name fees are very low. At the time I write this, prices at most registrars hover around $10 to $15 per annual.

 158 views

25⟩ Tell me will the registrar try to charge me more when my site is on successful stage?

It's true that prices change over time. When I first started my websites, my first domain name cost me $50 per annual. With the competition that exists in the domain name industry today, the prices have dropped tremendously. But they may still go up in the future. Or perhaps go down even further. I've absolutely no idea.

 164 views

28⟩ How to set suhosin.post.max_vars in a htaccess file?

The problem is that Apache doesn't know what to do with those values, hence the internal server error. You need to change the lines to the following:

1) php_value suhosin.post.max_vars 8000

2) php_value suhosin.request.max_vars 8000

The php_value causes the setting to be passed along to PHP. If you were setting boolean values (true/false), you would use php_flag instead. This will only work if you are running PHP as an Apache module. Otherwise you have to edit the php.ini file, which may not be an option.

 186 views

30⟩ Tell me when responding with a HTTP 3xx redirect status, should there still be a response body?

Adding a link to a target page is used traditionally within pages that use a refresh header to redirect users. This is not optimal and not the same as a traditional 301 redirect which is transparent to the user. If you provided HTML as part of the 301 redirect, it will not likely be seen. As well, for may redirects, this opportunity does not exist such as in the case of using an .htaccess Rewrite-Rule.

 175 views

31⟩ How to redirect visitors when site is too busy?

When your website is too busy due to a large traffic, the best way of redirection is using custom error documents. So, when a user gets 503 error code, the server will redirect visitors to the custom error document page you have defined.

There are different ways for different servers to customize error document pages.

1) For Apache server, add the following code in .htaccess file.

2) For IIS 7 server, add the following code in web.config

3) For Tomcat 7 server, add the following code in WEB-INF/web.xml file.

 192 views

32⟩ Tell me what websites have you mastered?

Be specific. Mention websites you were responsible for, and web projects and their duration. Describe yourself participating in website development from a particular stage or doing maintenance work on an existing site.

 142 views

35⟩ Tell me your experience about customer communication and instruction?

You can describe any relevant communication experience: acting as main point of contact with affiliates; personal, phone, and email contact; internal and external coaching (on topics like content optimization, etc.), management reports and presentations, customer support, routine advisory tasks, etc.

 149 views

36⟩ Tell me have you ever been responsible for SEO?

Search Engine Optimization is part of any website optimization and promotion expertise; describe specific situations and the SEO strategies you have used, such as link building, content SEO and site structure.

 173 views

37⟩ Do you like to work as a team player?

Describe any projects which required team work or collaboration with at least one other individual beside yourself; work with operations director and close coordination with the management of your organization.

 167 views

39⟩ Explain Google webmaster tools?

☛ Submit and check a sitemap

☛ Check and set the crawl rate, and view statistics about how Googlebot accesses a particular site

☛ Generate and check a robots.txt file. It also helps to discover pages that are blocked in robots.txt by chance.

☛ List internal and external pages that link to the site

☛ Get a list of broken links for the site

☛ See what keyword searches on Google led to the site being listed in the SERPs, and the click through rates of such listings

☛ View statistics about how Google indexes the site, and if it found any errors while doing it

☛ Set a preferred domain (e.g. prefer example.com over www.example.com or vice versa), which determines how the site URL is displayed in SERPs

☛ Highlight to Google Search elements of structured data which are used to enrich search hit entries (released in December 2012 as Google Highlighter)[1]

☛ Receive notifications from Google for manual penalties.

 222 views

40⟩ What Google webmaster tools give us?

Google Webmaster Tools shows traffic for each keyword separately; it gives more information about website performance according to Google search query. This tool does not cover search results from other search engines, such as Bing, Yahoo, or Baidu.

 156 views