Q: more technical questions based on your past experiences and lots of behavioural questions
Senior Backend Engineer Interview Questions
2,034 senior backend engineer interview questions shared by candidates
Coding task deep dive and behavioral and cultural fit
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
Have you seen our handbook?
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/
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.
REST API transactions implementation
What you don't like in your job
Viewing 51 - 60 interview questions