Basic questions about the subject
Senior Software Developer Interview Questions
6,888 senior software developer interview questions shared by candidates
Take this code and try to explain what is the behavior...
What is OOP?
var funcs = {}; for (var i=0; i<3; i++){ funcs[i] = function(){ alert[i); } } for (var j = 0; j < 3; j++){ funcs[j](); } the code should print 0, 1, 2. but there is a bug, what is it and how should you fix it?
Given a code A wrote, putting the code in a given code B. there is the same parameter 'i' in A code & B code. the code doesn't work: 1. why? 2. how to fix. 3. how to make it generic
2. Code the UI of the particular page using bootstrap.
3. Color Palate using HTML , JS , jQuery
¿Sabrías decir qué es un JWT?
given the method: function foo( array accounts, int account, int amount) { if (accounts[account]>=amount) accounts[account]-=amount } what does the method do?
how do you solve the problem above?
Viewing 421 - 430 interview questions