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
Senior Backend Developer Interview Questions
1,024 senior backend developer interview questions shared by candidates
Design patterns (factory, adapter, etc.)
During the in-house interview, I was asked to design an API that provided filtering capabilities for the data arriving from an external, high volume API. If this scares you, you shouldn't bother applying.
Design a service to support billions of devices. Problem solving questions. Engineering process questions. Talk with other engineers, product managers, development managers. At the end of the day, I even talked with the founder/co-founder, which helped me a lot to understand more about OfferUp. Eventually helped me to decide which startup offer to take.
Theoretical questions about .net framework technologies (differences between IEnumerable and IQueriable, Dependency Injection scopes etc.)
Qual a sua pretenção salarial?
Which statement is true about HTTP/2 in Node?
1. Strengths and weaknesses 2. What draws you to our company
Write a function that can be called like so: say(“Hello”)(“World”) and will log “Hello, World!” to the console
What is the default variable scope in Node.js applications?
Viewing 31 - 40 interview questions