About assignment and scenario based
Senior Backend Developer Interview Questions
1,028 senior backend developer interview questions shared by candidates
What made TBK stand out to you?
- System Design Interview, draw the architecture of a system with some specific requirements on the white board.
Do you know TDD?
Are you prepared to work 60-80 hours per week for the glory of Gelato?
How would you write a function to divide two numbers if you didn't have the division operator?
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
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
why you are leaving your current position?
Viewing 21 - 30 interview questions