Have you watched that show "Silicon Valley"?
Junior Front End Developer Interview Questions
17,095 junior front end developer interview questions shared by candidates
Questions were on experience and scenarios, but again, like a conversation and not a back and forth deal. It was like I was part of the team and we were hashing out ideas and a best path forward for various scenarios.
One leetcode question
How can you optimize this Angular template? ``` <div ng-bind="name"></div> <div ng-bind="age"></div> <div ng-bind="accountValue"></div> ```
Code snippet, something like: what would you see in the DOM? @Component({ selector: 'cmp', template: '{{value}}' }) export class Cmp implements OnInit, onChanges { value = 10; ngOnInit() { this.value += 5 } ngOnchanges(){ this.value += 1 } }
Square an array of sorted numbers
Here are the requirements, 1. It should allow users to create a new Google Meet meeting and quickly share the meeting link with others. 2. It should allow users to choose which email to create meetings if they have multiple Google Accounts signed in. 3. Cache the selected email for further meetings. 4. Make it easy to create and share new meeting links only using Keyboard shortcuts.
How to check for duplicates in an array in the most time efficient way(JS)
1. Implement a password check. Essentially, evaluate if a string contains one uppercase, one lowercase, one digit, and one "special character". I had to ask for clarification on what a "special character" is here and was told anything that does not fall in the above. 2. Refactor a React component from the existing lifecycle methods into a functional component with hooks. This also came up multiple times in step 2, which was a bit of a yellow flag for me as they really honed in on this relatively simple problem. 3. Center a div inside its parent. 4. A tooltip is appearing inside a div, move it outside.
Why do you want to work at Kmart?
Viewing 1281 - 1290 interview questions