Interviews regarding python
Software Engineer Senior Interview Questions
67,446 software engineer senior interview questions shared by candidates
What is MVC? What is Filters in MVC? What is Routes in MVC? What is Data-table in jquery? What is Use of Partial View? write sql for the customer order problem top 1 thing. what REST advantage over WCF?
Explain and draw application architecture of one of the systems you developed in the past
Write Thread safe singleton class
Flatten a binary tree
Design a system as a microservice with APIs, DB etc, whatever is needed for an app that needs to show the status of users i.e., online or offline. Mention any assumptions made.
A system is getting logs continuously. Write logic for a module that only prints the log if it is unique among logs in the past 10 minutes.
Write modular, readable code for determining best route and vehicle for given weather. Table containing speed of vehicles on different routes and allowed vehicles for different weathers was given.
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
hackerrank questions were good. iterate over the string and find something out of it. F2F, binary tree - find max sum, write square root function.
Viewing 2771 - 2780 interview questions