Friday, February 17, 2017

Interview Questions for SQL - 1

Q1. What are SQL functions?

Q2. "SQL is not case sensitive.". Is this statement true or false?

Q3. What is SQL?

Q4. "Some database systems require a semicolon at the end of each SQL statement.". Is this statement true or false?

Q5. What is RDBMS?


Wait for Answers .......Till Next Post.....Interview questions' answers.

Check here for Answer.

Free Download SQL Interview Questions and Answers 


Tuesday, February 14, 2017

Answers --- Interview Questions for CSS-4

Back - Interview Questions for CSS-4


Q1. Answer: Yes, True

Q2. Answer: (b) Horizontal

Q3. Answer: The text- property is property which used to set or remove decorations from text. It is mostly used to remove underlines from links for design purposes.

Example : a { text-decoration:none; }
                  h1 { text-decoration:underline; }
                  h2 { text-decoration:overline; }
                  h3 { text-decoration:line-through; }

Q4. Answer: CSS background properties are used to define the background effects of an element.

CSS properties used for background effects:
  1. background-color
  2. background-image
  3. background-repeat
  4. background-attachment
  5. background-position
Q5. Answer: The background-color property specifies the background color of an element.
The background color of a page is defined in the body selector:

Example:
                   body { background-color:"blue"; }

Monday, February 13, 2017

Interview Questions for CSS-4

Q1. "If you define the color property, you must also define the background-color property.". Is this true or false statement?

Q2. The text-align property is used to set the____________alignment of a text.
       (a) Vertical (b) Horizontal.

Q3. What is use of text decoration property.

Q4. What is use of CSS background.

Q5. How to change background color?

Wait for Answers .......Till Next Post.....Interview questions' answers.

Click Here---Interview questions for CSS -4-  Answers 

Free Download PHP Interview Questions and Answers 

Sunday, February 12, 2017

Interview Questions for CSS-3-Answers

Back To Questions

Q1. Answers: Yes, True

Q2. Answers: The CSS ID is an Id selector which used to specify a style for single, Unique element. It uses with HTML elements and is defined with a "#".

Example:
                #Ehtml
                {
                     text-align:left;
                     color:blue;
                  }

Q3. Answer: Yes, True.

Q4. Answer: The CSS Class is a class selector which used to specify a style for a group of elements. It uses with HTML elements and is defined with a ".".

Examle:
                .center
                {
                    text-align:center;
                  }

Q.5 Answer:  Inline Style Sheet