Coding task deep dive and behavioral and cultural fit
Senior Backend Engineer Interview Questions
2,047 senior backend engineer interview questions shared by candidates
Not correct reporting here the questions
Q.) Parse file directories to a tree structure 2.)Prime numbers till n 3.)Print a table based on List of Maps
Given a list of timestamped server requests with IPs and IDs, implement rate limiting: reject requests if an IP exceeds N requests within 1000ms. Return IDs of rejected requests.
export class MeetingRoom { roomName: string; capacity: number; constructor(roomName: string, capacity: number) { this.roomName = roomName; this.capacity = capacity; } } import { MeetingRoom } from "./MeetingRoom"; export class MeetingRoomFinder { private meetingRooms: MeetingRoom[]; constructor(meetingRooms: MeetingRoom[]) { this.meetingRooms = meetingRooms; } bookMeetingRoom(numberOfPeople: number, date: Date): MeetingRoom | null { return null; // Default implementation } } add your code to here bookMeetingRoom make sure to handle
Codding test + Logic tests than Interview.
Talk about race conditions in the context of database transactions, and possible mitigations and solutions to problems in this domain.
1st round: 1. Time and Space complexity of all the data structures and algorithms. 2. What is Scaling? What is Vertical and Horizontal Scaling? 3. Questions on Java 8 2nd round: 3 coding questions, I attended only two 1. Balancing brackets like "()[]{}" and "([)]" . Push in stack if open bracker is encountered and pop from Stack if closing bracket is the and match them. https://leetcode.com/problems/valid-parentheses/ 2. Given a linked list, determine if it has a cycle in it https://leetcode.com/problems/linked-list-cycle/
Have you seen our handbook?
Pair programming on basic tasks
Viewing 51 - 60 interview questions