Coding task deep dive and behavioral and cultural fit
Senior Backend Engineer Interview Questions
2,786 senior backend engineer interview questions shared by candidates
Not correct reporting here the questions
How would you handle various failure scenarios, for example a message was failed to process, or only part of its data processing failed
why you are leaving your current position?
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
TDD, SOLID, basic Java questions from the list provided by Engineers.
Viewing 71 - 80 interview questions