question about the event loop
Backend Engineer Interview Questions
15,489 backend engineer interview questions shared by candidates
Java 8, Spring boot annotations, Basic microservices, SOLID principles.
What's clean code
Take home exam that involved back end coding
Design question: bitly
In a live coding session, the recruiter asked me to write the code to reverse the linked list.
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.)
Pair programming on basic tasks
REST API transactions implementation
Viewing 431 - 440 interview questions