i
Protium Finance
Filter interviews by
I appeared for an interview in Mar 2022.
Round duration - 75 minutes
Round difficulty - Easy
Easy to Medium questions based on Arrays and Hashmap.
Given an array ARR
and an integer K
, determine the number of sub-arrays in which the sum is divisible by K
.
ARR = {5, 0, 2, 3, 1}, K = 5
The task is to count the number of subarrays in an array whose sum is divisible by a given integer.
Iterate through the array and calculate the cumulative sum at each index.
Store the remainder of each cumulative sum divided by K in a hashmap.
If the remainder is already present in the hashmap, increment the count by the value in the hashmap.
If the remainder is 0, increment the count by 1.
Update the hashmap with the remai
Given a tree with a root at node 0 and N vertices connected with N-1 edges, and an array QUERY
of size Q, where each element in the array represents a node in the tree. For each ...
This question is about finding the XOR of all values of nodes in the sub-tree of a given node in a tree.
Read the input values for the number of test cases, number of nodes, and number of queries.
Construct the tree using the given edges.
For each query, traverse the sub-tree of the given node and calculate the XOR of all node values.
Print the XOR values for each query.
Round duration - 40 minutes
Round difficulty - Easy
Standard DS/Algo round with 2 questions of Easy-Medium level of question
Sort a given array of integers in ascending order using the Quick Sort algorithm.
Quick Sort is a divide and conquer algorithm that involves selecting a pivot element and partit...
Implement Quick Sort to sort an array of integers in ascending order.
Choose a pivot element from the array
Partition the array into two parts: elements smaller than the pivot and elements larger than the pivot
Recursively apply quick sort on the left and right parts
Combine the sorted left and right parts with the pivot element
Given a sorted array of distinct integers that has been rotated clockwise by an unknown amount, you need to search for a specified integer in the array. Fo...
This is a problem where a sorted array is rotated and we need to search for given numbers in the array.
The array is rotated clockwise by an unknown amount.
We need to search for Q numbers in the array.
If a number is found, return its index, otherwise return -1.
The search needs to be done in O(logN) time complexity.
The input consists of the size of the array, the array itself, the number of queries, and the queries.
Round duration - 40 minutes
Round difficulty - Easy
Questions related to DSA - Prime Factorisation of a number
Questions related to OS - Difference between orphan and zombie process and few more questions from OS
Questions related to Java- Internal working , Threading, Debugging, OOPs
Garbage collector in JAVA is an automatic memory management system that frees up memory by identifying and removing unused objects.
Garbage collector is responsible for reclaiming memory occupied by objects that are no longer in use.
It automatically identifies and removes objects that are no longer reachable by the program.
Garbage collector helps prevent memory leaks and improves performance by freeing up memory.
It uses...
Abstract class is a class that cannot be instantiated and can have both abstract and non-abstract methods. Interface is a blueprint for classes to implement and can only have abstract methods.
Abstract class can have constructors, while interface cannot.
A class can only extend one abstract class, but can implement multiple interfaces.
Abstract class can have instance variables, while interface cannot.
Abstract class can p...
Exception handling is a mechanism in programming to handle and manage errors or exceptional situations that may occur during program execution.
Exception handling is a way to gracefully handle errors or exceptional situations in a program.
It involves catching and handling exceptions, which are unexpected events that disrupt the normal flow of program execution.
Exception handling allows the program to recover from errors...
User threads are non-daemon threads that keep the application alive until they complete, while daemon threads are background threads that do not prevent the application from terminating.
User threads are created by the application and are responsible for executing the main logic.
Daemon threads are created by the JVM and are used for background tasks.
User threads prevent the application from terminating until they comple...
Orphan process is a process whose parent process has terminated, while a zombie process is a process that has completed execution but still has an entry in the process table.
Orphan process: Parent process has terminated, but the child process is still running.
Zombie process: Child process has completed execution, but the parent process has not yet collected its exit status.
Orphan processes are adopted by the init proce...
Given several queries each containing a single integer 'N', the task is to find the prime factorization of each integer using a sieve method.
N = 1...
The task is to find the prime factorization of given integers using a sieve.
Implement a function to find the prime factors of each integer using a sieve algorithm.
Use the given input format to read the number of test cases and queries.
For each query, iterate through numbers from 2 to sqrt(N) and check if they are prime factors of N.
If a number is a prime factor, divide N by that number and continue the process until N ...
Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
Top trending discussions
I applied via LinkedIn and was interviewed in Sep 2023. There were 2 interview rounds.
Its a combination of all the questions like aptitude , logical questions, programming questions, sql, etc,...
I applied via Referral and was interviewed in Mar 2024. There were 2 interview rounds.
Its mostly on Train, Pipes and Cistern, Dice reasoning
Data Structures medium level question
I applied via Campus Placement
Low-level design interview
I need to design a Music player app using oops concept
Use an additional stack to store sorted elements and maintain the minimum element at the top of the original stack.
Create a new stack to store sorted elements.
Pop elements from the original stack and compare with the top element of the new stack.
If the popped element is smaller, push it to the new stack. If larger, keep popping from the new stack and push to the original stack until the correct position is found.
Repeat...
A process is an instance of a program running on a computer, while a thread is a smaller unit of execution within a process.
A process has its own memory space, while threads within the same process share memory.
Processes are independent of each other, while threads within the same process can communicate with each other.
Processes are heavyweight, requiring separate memory and resources, while threads are lightweight an...
Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.
Abstract class can have constructor, fields, and methods, while interface cannot have any of these.
A class can implement multiple interfaces but can only inherit from one abstract class.
Abstract class is used to provide a common base for multiple derived classes, while interface is used to define a contract fo...
A race condition is a situation in which the outcome of a program depends on the order of execution of its threads or processes.
Occurs when multiple threads or processes access shared data or resources concurrently
Can lead to unpredictable behavior or bugs in the program
Prevented by using synchronization mechanisms like locks or semaphores
Example: Two threads trying to increment a shared variable simultaneously
Normalization in DBMS is the process of organizing data in a database to reduce redundancy and improve data integrity.
Normalization involves breaking down a database into smaller, more manageable tables.
It helps in reducing data redundancy by storing data in a structured way.
There are different normal forms like 1NF, 2NF, 3NF, BCNF, etc.
Example: In a database of students, instead of storing student details in multiple ...
I applied via Walk-in and was interviewed in Sep 2023. There were 3 interview rounds.
An aptitude has exam used to determine an individual skills a given activity
I applied via Recruitment Consulltant and was interviewed before Apr 2023. There were 4 interview rounds.
It was a online hacker rank type test with medium hard question
Print left view of binary tree
Traverse the binary tree level by level
Print the first node at each level encountered
I applied via Referral and was interviewed in Jul 2024. There were 2 interview rounds.
Leet code problem. Sliding window
Handler Looper in Android is a class used to handle messages and run tasks on a specific thread.
Handler Looper is used to manage a queue of messages and execute them on a specific thread.
It works in conjunction with Handler and Message classes to send and process messages.
Looper.loop() method is used to start the message loop for a thread.
Example: Creating a new Handler with a Looper from the main thread to post messag
Credit Manager
106
salaries
| ₹2.8 L/yr - ₹11 L/yr |
Sales Manager
100
salaries
| ₹3.5 L/yr - ₹10.3 L/yr |
Relationship Manager
84
salaries
| ₹2 L/yr - ₹4.2 L/yr |
Senior Relationship Manager
77
salaries
| ₹2.7 L/yr - ₹4.1 L/yr |
Credit Processing Associate
65
salaries
| ₹2 L/yr - ₹4.6 L/yr |
SBI Cards & Payment Services
Axis Direct
Kotak Securities
Aadhar Housing Finance