Q: more technical questions based on your past experiences and lots of behavioural questions
Senior Backend Engineer Interview Questions
2,038 senior backend engineer interview questions shared by candidates
Coding task deep dive and behavioral and cultural fit
Not correct reporting here the questions
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?
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
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.
Q.) Parse file directories to a tree structure 2.)Prime numbers till n 3.)Print a table based on List of Maps
Talk about race conditions in the context of database transactions, and possible mitigations and solutions to problems in this domain.
Pair programming on basic tasks
Viewing 51 - 60 interview questions