Explain this: var Bob = { name: "Bob", name_fn: function(){ return this.name; } } console.log(Bob.name_fn()) //"Bob" var fn = Bob.name_fn console.log(fn()) //undefined
Engineer Developer Interview Questions
467,545 engineer developer interview questions shared by candidates
You climb a 60 foot tree and have the ability to span up to 3 feet at a time. What's the minimum number of branches you'd have to touch to get the top?
simple leetcode medium questions based on trees, sliding window and one design question. Be careful since they do not understand basic algorithm terms and data structures since they were all contractors before.
How to implement a class without instance..?
Find the kth largest element collectively from 2 sorted integer arrays.
Given an array of numbers. Find out the number with odd frequency of occurrence.
if a function returns itself, what will happen if it's called.
Why are manhole covers round.
All questions were pretty straight forward... you better know C++ or any similar language though ;)
Q1. Singly linked list, know header node, but do not know how many nodes in a list. find out 2nd last node
Viewing 1411 - 1420 interview questions