Medium to Hard level DSA questions Knowledge about process, threads,DBMS are important.
Backend Software Engineer Interview Questions
2,333 backend software engineer interview questions shared by candidates
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 a live coding session, the recruiter asked me to write the code to reverse the linked list.
How do you implement a set?
Explain the process of a HTTP request get to the server and its return.
difference between c and c ++?
Given a matrix, print the elements in spiral order.
Design a service to support billions of devices. Problem solving questions. Engineering process questions. Talk with other engineers, product managers, development managers. At the end of the day, I even talked with the founder/co-founder, which helped me a lot to understand more about OfferUp. Eventually helped me to decide which startup offer to take.
Given an array of transactions, figure out the shortest timeframe in which Fundbox loaned a million dollars
They work with TypeScript instead of just JavaScript. So they also asked few basic questions of TypeScript.
Viewing 81 - 90 interview questions