What is the difference between buffered and unbuffered channels?
Backend Developer Interview Questions
15,469 backend developer interview questions shared by candidates
question about the event loop
Java 8, Spring boot annotations, Basic microservices, SOLID principles.
What's clean code
Where do you see yourself in five years
Hai altre domande che vorresti fare?
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
Design patterns (factory, adapter, etc.)
How do you implement operations process automations ?
Analyze a real business case
Viewing 451 - 460 interview questions