Pergutas básicas, tipo: Me conta um pouco sobre você, Qual a sua idade, onde mora, o que gosta de fazer.
Backend Software Engineer Interview Questions
9,102 backend software engineer interview questions shared by candidates
Delete a random node without root
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
Design patterns (factory, adapter, etc.)
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.
What are your responsibilities in your current role? Is your tech challenge atomic? Is your tech challenge idempotent?
Viewing 281 - 290 interview questions