Quick Sort Algorithm and its time complexity in best case & worst case
Backend Software Engineer Interview Questions
2,345 backend software engineer interview questions shared by candidates
Delete a specific node
Medium to Hard level DSA questions Knowledge about process, threads,DBMS are important.
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.
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
In the online code test they ask me about anagrams and well-formed xml.
What dB do you use daily
What was asked in HR round?
Explain the process of a HTTP request get to the server and its return.
difference between c and c ++?
Viewing 81 - 90 interview questions