
Interview Questions for Front End Developer

Hi, today I will share some interview questions for Front End Developer, Web Designers. This article may help you to prepare yourself for interview to get a good job.
Interview questions for Front End Developer
1 : What is DOM?
Answer : Document Object Model. It is a W3C standard. It defines a standard for accessing documents like HTML and XML. You should read about DOM on w3schools.com. Here is the url https://www.w3schools.com/js/js_htmldom.asp
2 : What is the full form of CSS?
Answer : Cascading Style Sheet. You can describe in brief after learning more about it from w3schools.com. Here is the url https://www.w3schools.com/css/
3 : What is Javascript ?
Answer : Javascript is a programming language of HTML and Web. You can learn more about it on w3schools.com. Here is the url https://www.w3schools.com/js/
4 : What is the difference between Tags and Attributes ?
Answer : For Example : <img> is a tag and src=”” is a attribute.
5 : Can you tell me something about latest tags and attributes of HTML5 ?
Answer : You can read about this on w3schools.com. Here is the url https://www.w3schools.com/html/html5_new_elements.asp6 : What is the use of z-index ? Answer : We use z-index property to specify the stack order of an element. An element with greater stack order is always in front of an element with a lower stack. z-index works only on positioned elements. Learn more about it on w3schools.com. Here is the url https://www.w3schools.com/cssref/pr_pos_z-index.asp