They try to talk a lot about Agile and Quality. However once I got the job, we did not do much Agile. it was more an opportunity to drink beer while the owner voted on everything alwasys
Senior Web Developer Interview Questions
803 senior web developer interview questions shared by candidates
Typical fizz-buzz type questions.
Q: What was a product feature you built recently?
What tags are new in HTML5?
3. Please give a function which can find a string occurence time in another string.
1. Please give a method which used to check if two strings are anagrams. Anagrams: a word, phrase, or name formed by rearranging the letters of another, such as: 1). "cinema" formed from "ice man". 2). "listen" formed from "silent". 3). "This is a tomcat" formed from "Tom has a tisict".
5. Please give a function which returns all indexes of a string occurred in another string.
4. Please give a function which can print all node/child-node names of a json object in tree structured. EG: var tree = { node1:{ node2:"", node3:{ node4:"" } } } Print: ["node1", "node2", "node3", "node4"]
All basis questions related to frame work.
Closure problem: function addButtons(numButtons) { for (var i = 0; i < numButtons; i++) { var button = document.createElement('input'); button.type = 'button'; button.value = 'Button ' + (i + 1); button.oncl1ck = function() { alert['Button ' + (i + 1) + ' clicked'); }; document.body.appendChild(button); document.body.appendChild(document.createElement('br')); } } window.onl0ad = function() { addButtons(5); }; when clicking either button (1-5) will print "Button 5 Clicked",
Viewing 161 - 170 interview questions