Software De Backend Interview Questions

15,486 software de backend interview questions shared by candidates

- Calculating highest number of steps taken by a person in last 5 minutes, from a data, from a device like fit bit, which stored the information for many people. (Approaches, pseudo code, data storage structure) - Discussions on how an app like split wise could be made.
avatar

Backend Engineer

Interviewed at smallcase

3.8
Apr 7, 2021

- Calculating highest number of steps taken by a person in last 5 minutes, from a data, from a device like fit bit, which stored the information for many people. (Approaches, pseudo code, data storage structure) - Discussions on how an app like split wise could be made.

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
avatar

Senior Backend Software Engineer

Interviewed at HiBob

4.4
May 1, 2025

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

Viewing 441 - 450 interview questions

Glassdoor has 15,486 interview questions and reports from Software de backend interviews. Prepare for your interview. Get hired. Love your job.