Tell me about Java multi-thread
Backend Software Engineer Interview Questions
2,350 backend software engineer interview questions shared by candidates
Find minimum number of words in a sentence, given a document, using white-space as separator for words and (!, ?, .) as the separator for sentence. There can be multiple white-spaces between two words.
Coding over the phone as listed in the description
porque decidiu usar a linguagem de programação que usou para resolver o teste?
Questions based on company values.
Not correct reporting here the questions
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
Delete a random node without root
Quick Sort Algorithm and its time complexity in best case & worst case
Delete a specific node
Viewing 71 - 80 interview questions