Posts

Showing posts from May, 2012

How to Hire The Right Web Design Firm

Regardless whether you manage a small business, charitable organization, or Fortune 500 company, choosing the right web design firm can quickly become a full-time research project. With thousands of design firms to choose from, what factors truly determine which design firm is best for your business? The primary considerations for choosing a web design firm are: * Price * Customer service/access to support * Credibility indicators of the design firm * Portfolio and design experience * Other services offered (domain renewal, hosting, SEO) * Turnaround time Let's take a closer look at each consideration in detail, and explore how to identify and qualify the right design firm. Price Like many products and services we purchase, both personally and professionally, deciding on a web design firm can often come down to price. But the value of the services rendered is really what's important. A $200 web site usually turns out to look, feel and perform like a $200 web site. The price of

CSS Interview Question and Answers

1. Explain in brief about the term CSS .          A stylesheet language used to describe the presentation of a document written in a markup language. Cascading Style Sheets are a big breakthrough in Web design because they allow developers to control the style and layout of multiple Web pages all at once. 2. Can CSS be used with other than HTML documents?          Yes. CSS can be used with any structured document format. e.g. XML, however, the method of linking CSS with other document types has not been decided yet. 3. Can Style Sheets and HTML stylistic elements be used in the same document?          Yes. Style Sheets will be ignored in browsers without CSS-support and HTML stylistic elements used. 4. What is CSS rule ‘at-rule’? There are two types of CSS rules: ruleset and at-rule. At-rule is a rule that applies to the whole style sheet and not to a specific selector only (like in ruleset). They all begin with the @ symbol followed by a keyword made up of letters a-z, A-Z, digits 0-9

Discover How To Make Your Web Design Easier

Whenever I thought of web design my face would frown, I just hated the fact that I had to do any kind of web design. I just couldn't see why web design was simple for others and not for me. Well, that all changed when I discovered this simple program, a web design machine made for those who just don't understand that you can do it yourself if, you would only keep your web design as simple as possible. Since using this program I have been able to launch two websites with my own web design style within two months, these websites aren't perfect, but they do look very professional. And, they carry my touch, yes, at last I can boost to my friends how easy web design is for me, because they have no clue that I am using my little secret weapon for my web design. What does it take to design your own website? Now, for those who don't understand what it takes to design your own website from scratch, I will give you five important steps you need to master, before you can get your

Mysql Interview questions and answers

Image
1 :What's MySQL ?            MySQL (pronounced "my ess cue el") is an open source relational database management system (RDBMS) that uses Structured Query Language (SQL), the most popular language for adding, accessing, and processing data in a database. Because it is open source, anyone can download MySQL and tailor it to their needs in accordance with the general public license. MySQL is noted mainly for its speed, reliability, and flexibility. 2: What is DDL, DML and DCL ?          If you look at the large variety of SQL commands, they can be divided into three large subgroups. Data Definition Language deals with database schemas and descriptions of how the data should reside in the database, therefore language statements like CREATE TABLE or ALTER TABLE belong to DDL. DML deals with data manipulation, and therefore includes most common SQL statements such SELECT, INSERT, etc. Data Control Language includes commands such as GRANT, and mostly concerns with right

How to differentiate Chrome and Safari - PHP

We would always like to provide our website visitors different services based their browser like Chrome Extension, Opera Add-on, Internet Explorer Tool-Bar etc. For which we need to find what kind of browser our user is using to view our website. So how do we find it? Its simple : we use a preg_match() function for the purpose. It takes basically two parameters : The first is a  search key enclosed in both "" as well as // . Example : "/chrome/" The second is the string in which we need to search the Key. Following is the codes for analyzing the famous browsers; Chrome, IE, FireFox, Opera and Safari. if ( preg_match( "/chrome/" , strtolower ( $_SERVER [ 'HTTP_USER_AGENT' ])))     echo "This is Google Chrome code" ; elseif ( preg_match( "/msie/" , strtolower ( $_SERVER [ 'HTTP_USER_AGENT' ])))     echo "This is Internet Explorer code" ; elseif ( preg_match( "/opera/" , strtolower ( $_SERVER [ &

oops interview questions and answers

1: What is Object Oriented Programming ?        It is a problem solving technique to develop software systems. It is a technique to think real world in terms of objects. Object maps the software model to real world concept. These objects have responsibilities and provide services to application or other objects.   OR       Object-oriented programming is a method of programming based on a hierarchy of classes, and well-defined and cooperating objects. 2: What is a Class ?           A class describes all the attributes of objects, as well as the methods that implement the behavior of member objects. It is a comprehensive data type which represents a blue print of objects. It’s a template of object. OR           Class is a template for a set of objects that share a common structure and a common behavior.   3: What is an Object ?           It is a basic unit of a system. An object is an entity that has attributes, behavior, and identity. Objects are members of a class. Attributes and behav

php interview questions and answers for experienced

1: What is the value of $b in the following code?     $a="5 USD";     $b=10+$a;     echo $b; ?> Ans:15 2: What are the differences between Get and post methods in form submitting, give the case where we can use get and we can use post methods?   In the get method the data made available to the action page ( where data is received ) by the URL so data can be seen in the address bar. Not advisable if you are sending login info like password etc. In the post method the data will be available as data blocks and not as query string. 3:What is GPC? G – Get P – Post C – Cookies 4: What are super global arrays? All variables that come into PHP arrive inside one of several special arrays known collectively as the superglobals. They're called superglobal because they are available everywhere in your script , even inside classes and functions. 5:Give some example for super global arrays? $GLOBALS $_GET $_POST $_SESSION $_COOKIE $_REQUEST $_ENV $_SERVER 6: What's the di