Medium to Hard level DSA questions Knowledge about process, threads,DBMS are important.
Backend Software Engineer Interview Questions
2,346 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.
What dB do you use daily
In the online code test they ask me about anagrams and well-formed xml.
What was asked in HR round?
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
How do you implement a set?
In a live coding session, the recruiter asked me to write the code to reverse the linked list.
Explain the process of a HTTP request get to the server and its return.
difference between c and c ++?
Viewing 81 - 90 interview questions