1. Explain me what motivates you as a Web Content Developer?

I believe this role comes with loads of challenges, which is motivates me to achieve the goals as web content developer.

2. Tell me are you happy with your career as a Web Content Developer?

Of course I can grow just because I am interested in this profile as well this work is creative.

3. Please explain what major challenges and problems did you face at your last position?

I was to upload a registration form online, a night before only to find out back at home that my internet subscription just expired and deadline was 9:00am.

4. Tell me where does my project rank in your schedule? And, tell me about how you'll make my project?

Great website designers and developers typically have a backlog of client work. Ask where your project falls into the production line, and how it ranks with other works in process. Once the ink has dried on the contract, most likely you'll have homework to complete before any design work can commence. Discuss milestones, who will do what and by when.

5. Do you know what is Composer?

Composer is an application-level package manager for the PHP.

6. Do you know why Composer is used?

☛ Composer provides a standard format for managing dependencies of PHP software.
☛ Composer installs the dependencies libraries.
☛ Composer provides autoload capabilities for libraries.

7. Explain me what is the coolest thing you ever coded? Do you have any personal projects you are working on?

These two questions are interchangeable. Any developer worth his weight had to practice somewhere or on something before they landed their first gig. If not, how did you get this interview anyway?! Review your past experiences, and even if they were boring to you, figure out a new frame of reference that demonstrates passion and a zest for learning.

8. Please explain what does DOCTYPE mean?

The term DOCTYPE tells the browser which type of HTML is used on a webpage. In turn, the browsers use DOCTYPE to determine how to render a page. Failing to use DOCTYPE or using a wrong DOCTYPE may load your page in Quirks Mode. See example:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">.

9. Tell us how many HTML tags are should be used for the most simple of web pages?

total. 4 pairs of tags.
<HTML>
<HEAD>
<TITLE>Simplest page ever!</TITLE>
</HEAD>
<BODY>
Doesn’t get simpler than this.
</BODY>
</HTML>

10. Do you know what is the new DOCTYPE?

Instead of typing out a ridiculously long DOCTYPE statement to tell the browser how to render your webpage, this long line of code has been truncated to <!doctype html>.

Download Interview PDF

11. What is the difference between SVG and <Canvas>?

<Canvas> is an element that manipulates two-dimensional (2D) pixels while Scalable Vector Graphics works in 2D and three-dimensional (3D) vectors. Essentially, <Canvas> is to SVG as Photoshop is to Illustrator.

12. Please explain the difference between cookies, sessionStorage, and localStorage?

Cookies are small text files that websites place in a browser for tracking or login purposes. Meanwhile, localStorage and sessionStorage are new objects, both of which are storage specifications but vary in scope and duration. Of the two, localStorage is permanent and website-specific whereas sessionStorage only lasts as long as the duration of the longest open tab.

13. Which blogs do you read the most?

You're looking for a writer who's committed to keeping his or her skills sharp, and that includes reading some of the better blogs on the subject of content creation.Two that come to mind are ProBlogger and CopyBlogger, but any marketing- or content-focused blog would be an acceptable answer.

14. Are you a detail oriented person?

Yes, I am someone who pays attention to minute detail. I am a perfectionist to be specific.

15. Tell me what individual has had the greatest influence on you?

There are many infact, when ever I see successful females at the top level of the organisation I wish to be like them.

16. Tell us who owns the code?

Not that you'll want to become a website coder (or maybe you do), ask who owns the code after the website is launched. We're a fan of WordPress websites because they are scalable, created by a flourishing open-source community, and is provides an easy-to-use Web Content Management System for non-technical clients to manage. If your developer makes changes to core code, that means that routine updates from WordPress can't be automatically made. Don't be held hostage by a developer who has created modifications that can't be easily managed. Not to put too fine a point on it, you're creating a website to make money for your business. Your online storefront should continually evolve as your business grows.

17. Explain do you work well under pressure?

Yes I can definitely work under pressure because then only I wouuld be able to grow myself.

18. Tell me where composer is used?

When we need manage the dependencies of PHP application, we can use Composer.

20. Tell me how Composer Works?

It works commond line.

21. Explain me what is the difference between HTML elements and tags?

HTML elements communicate to the browser how to render text. When surrounded by angular brackets <> they form HTML tags. For the most part, tags come in pairs and surround text.

22. What elements have disappeared?

As mentioned above, <frame> and <frameset> have been eliminated. Other elements that are no longer supported include: <noframe>, <applet>, <bigcenter> and <basefront>.

23. Tell me are you able to cope with stressful situations?

Yes, I am able to work I'm stressful situation because the self confidence I possess assures me that I can get the job done.

25. Tell me who developed the Composer?

☛ Nils Adermann.
☛ Jordi Boggiano.