About my thoughts in bpo industry
Engineer 1 Interview Questions
3,931 engineer 1 interview questions shared by candidates
Describe how you handle problems in difficult project
1st Qn: Strings/Stack 2nd Qn: 3D DP 2nd round: Graph questions
1. Tell me about yourself 2. Tell me about ur last day or current day till now 3. Write or share something about ur hometown
technical round: circuit breaker LLD implementation, with concurrency, thread safety etc
Leetcode problem, Computer Science Concepts Projects
You are part of a university admissions office and need to keep track of the kth highest test score from applicants in real-time. This helps to determine cut-off marks for interviews and admissions dynamically as new applicants submit their scores. You are tasked to implement a class which, for a given integer k, maintains a stream of test scores and continuously returns the kth highest test score after a new score has been submitted. More specifically, we are looking for the kth highest score in the sorted list of all scores. Implement the KthLargest class: KthLargest(int k, int[] nums) Initializes the object with the integer k and the stream of test scores nums. int add(int val) Adds a new test score val to the stream and returns the element representing the kth largest element in the pool of test scores so far. Example 1: Input: ["KthLargest", "add", "add", "add", "add", "add"] [[3, [4, 5, 8, 2]], [3], [5], [10], [9], [4]] Output: [null, 4, 5, 5, 8, 8]
Data Structures & Algorithms Question
Asked whether I have classes or will have classes
What is your preferred management style?
Viewing 1391 - 1400 interview questions