The Job
Front-end web developers work on user-facing features, and combine their programming expertise with their creative skills to build the interactive and visual elements of web applications. They build reusable code, and are responsible for optimizing web applications for high performance, speed and scalability.
Front-end developers translate the UI/UX design to code in order to create the visual components of web applications. This requires working with the UI/UX designer to integrate elements of graphic design with technical aspects. Front-end developers will also work with back-end developers to assist with the integration of user-facing features with server-side logic. This includes ensuring that user input is validated before it is submitted to the back-end. Front-end developers will therefore have good interpersonal skills, and can expect to problem solve and think critically in a collaborative environment.
The Interview
If you have the necessary skills and experience to land yourself an interview for a front-end web development position, then this guide gives you an idea on the sorts of technical questions you could be asked. Front-end developers should have a good understanding of HTML, CSS and JavaScript, so the following questions are divided up into corresponding sections.
General
1. What role does UX (User Exp.) have in front-end development?
Front-end developers work on the client side to build user-facing features. As a result, they ensure a good user experience by designing visual elements and content that looks seamless on a company’s site. Front-end developers are likely to work with the UX team to create web pages that both represent the brand, and deliver a highly user-centric experience. Candidates should think about the ways UX and front-end development come together in the process of web design when answering this question.
2. What can you do to increase page performance?
There are various methods candidates can name here: Reduce external HTTP requests, use compressed or smaller images, incorporate JavaScript on the bottom of the page, clean up the HTML document, and minify CSS, JavaScript and HTML.
HTML
3. Describe the function of the doctype.
<!DOCTYPE> is a required declaration, and the first line of code in an HTML file. This tells the browser the version of HTML the page uses. Candidates should know that this declaration helps the browser interpret content correctly.
4. How does XHTML differ from HTML?
XHTML is optional, and used to provide more accessibility to a webpage. When used, it adds the XML markup language to a webpage.
5. Describe the difference between cookies, local storage and session storage.
Cookies allow applications to store data in a client’s browser. Local storage allows applications to store data without expiry limits. Session storage allows applications to store data for the duration that a window is open.
6. Describe the new elements to HTML.
Answering this question well indicates that a candidate understands and keeps up with changes to HTML. Candidates can discuss both design-related and more technical elements that are new to HTML. Some features candidates could mention are changes to the multimedia and graphic elements available (ex. Audio, canvas), and semantic tags (ex. Header, footer etc.).
CSS
7. When would you use CSS or JavaScript for animations?
Understanding when and why to use one over another tells employers that the candidate can differentiate between CSS and JavaScript appropriately. CSS is better suited for simple state transitions, but JavaScript leverages better backwards compatibility.
8. Describe the difference between classes and IDs.
Classes and IDs are hooks for CSS styles. Classes are used to style different elements in the same way (ex. Various links). IDs are used to style elements that are only featured once on a page (ex. One instance of a navigation menu).
9. What is the box model? How do you tell the browser to use it?
The box model is useful to designing the layout of a webpage. All elements on a page are boxes. As a result, the box model is used to position elements on a webpage. The box model consists of:
- Content: Where the content is located; the innermost part
- Padding: Transparent area surrounding the content
- Border: Border that frames the content
- Margin: Transparent area outside the border
10. How do floats work?
A CSS float pushes an element to the left or right. A float property has four values: left, right, inherit, and none.
11. What is the purpose of the z-index?
The z-index stacks elements on the z-axis. It only applies to positioned elements, and overrides the default stacking order of HTML.
12. How do you deal with browser-specific style incompatibility?
Candidates may identify various methods to answer this question. For example, using a conditional statement in the head tag of the HTML will allow you to identify the browser and load an external stylesheet.
13. What is the function of pseudo-elements?
Pseudo-elements style an aspect of an element (ex. The first letter of a paragraph). It also allows you to wrap text around images, create a body border or make multiple shapes using a single element.
JavaScript
14. What is the function of CoffeeScript and how does it differ to JavaScript?
CoffeeScript is a programming language that uses all the ‘good aspects’ of JavaScript in a compressed and simple way. It’s useful when writing JavaScript code, offering clearer and constant syntax. In CoffeeScript, elements don’t need semicolons at the end of them to execute, whereas they do in JavaScript. CoffeeScript has lightweight add-ons (ex. Python style list comprehension), and uses shorter code than JavaScript to express a program. It also helps to make JavaScript more readable.
15. What is functional programming?
Functional programming uses mathematical functions to produce programs. It’s essential in JavaScript. Lisp is the better-known programming language that uses it. Functional programming is supported by first-class and higher-order functions, and functions as arguments or values. Mentioning other languages that support functional programming is useful in an interview, as well as the features that support it.
16. What are the benefits and downsides to functional programming versus object-oriented programming (OOP)?
Functional programming avoids shared state or side effects. It also offers features like point freestyle (tacit programming), and highly simplified functions that are more easily re-composed for reusable code than OOP. However, if these features are overused, the readability of the code may become jeopardized. Functional programming is also harder to learn than OOP due because it requires prior, foundational knowledge on various forms of mathematical theory.
As a result, OOP is easier to understand, and uses an imperative style, which means that it reads more like a set of instructions for the computer. However, OOP depends on shared state. Objects and behaviors tend to be attached to the same entity, and this leads to behaviors like race conditions.
17. What is asynchronous programming and why is it important in JavaScript?
Asynchronous programming is unique to JavaScript, and the ability to identify its purpose and use in JavaScript is important for all front-end developers using this language. Asynchronous programming allows web pages to handle large volumes of client requests in one, single thread. This means that it is event-driven, and optimized for real-time web applications as well as applications that require scalability.
More Questions?
These are some of the common questions that come up in front-end developer interviews, and we know plenty more! At Elevano, we’re experts in the hiring process. We know position and company-specific interview processes, and are with candidates every step of the way.
The post Front-End Developer Jobs: Interview Questions and Answers in 2019 appeared first on Elevano.
source https://www.elevano.com/front-end-developer-jobs-interview-questions-and-answers-in-2019/
No comments:
Post a Comment