Create an Elixir (Phoenix) API.
Backend Engineer Interview Questions
14,358 backend engineer interview questions shared by candidates
no. of islands in the graph
The codility problems where medium level I would say. The HR interview is a standard one: you got to talk a little bit about your previous experience (in my case was mainly University since I'm a fresh graduate) and then you got the usual questions about how to deal with situation in the specific case and so forth. The technical interview was pretty standard as well: the interviewer presented a coding problem and ask me to solve it. It took me a while to do that but eventually I was able to solve it and had some question about code complexity and the data structure used in my code.
What is the difference between buffered and unbuffered channels?
question about the event loop
Java 8, Spring boot annotations, Basic microservices, SOLID principles.
What's clean code
Hai altre domande che vorresti fare?
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
Differences between multithreading,multiprocessing and concurrency.
Viewing 421 - 430 interview questions