Delete a random node without root
Backend Software Engineer Interview Questions
9,094 backend software engineer interview questions shared by candidates
Quick Sort Algorithm and its time complexity in best case & worst case
Delete a specific node
Medium to Hard level DSA questions Knowledge about process, threads,DBMS are important.
Build a project architecture that you made in your previous role, and explain the components and also best practices
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.
Why do you want to work for this company
They asked to design the system for restaurant table booking system.
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
there was one exercise to implement a function which takes a number as a parameter "A" and must draw a X of stars and spaces and height "A" for example for A=5 * * * * * * * * *
Viewing 271 - 280 interview questions