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
Backend Software Interview Questions
15,481 backend software interview questions shared by candidates
In a live coding session, the recruiter asked me to write the code to reverse the linked list.
Nous développons sur Elixir. As tu une expérience sur ce langage ?
REST API transactions implementation
Differences between multithreading,multiprocessing and concurrency.
Why did you respond to our invitation?
Networking, Database, Java etc.
TDD, SOLID, basic Java questions from the list provided by Engineers.
What was asked in HR round?
Inverse binary tree in c#
Viewing 451 - 460 interview questions