i
Razorpay
Filter interviews by
I applied via Referral and was interviewed in Sep 2022. There were 2 interview rounds.
15 MCQs and 2 coding questions were given. MCQs include questions from topics like dbms, system design, oops etc.
1st coding question was of dp and 2nd was of a good question of graph.
Create and delete a node in a linked list and print the updated list.
Create a Node class with data and next pointer attributes
Create a LinkedList class with head attribute and methods to add, delete and print nodes
To delete a node, traverse the list and update the next pointer of the previous node to skip the node to be deleted
Print the list by traversing and printing the data of each node
Reverse the first K characters of a given string.
Take the first K characters of the string.
Reverse the selected substring.
Concatenate the reversed substring with the rest of the original string.
Top trending discussions
posted on 23 Sep 2022
I applied via Job Fair and was interviewed in Aug 2022. There were 4 interview rounds.
This round contained 2 coding questions.
posted on 5 Feb 2023
I applied via Instahyre and was interviewed before Feb 2022. There were 4 interview rounds.
Count the number of islands in a 2D grid.
Iterate through the grid and for each '1', perform a depth-first search to mark all connected '1's as visited.
Increment the count of islands for each new '1' encountered.
Return the total count of islands.
The coin change problem involves finding the minimum number of coins needed to make a certain amount of change.
Use dynamic programming to solve the problem efficiently
Start with a base case where the amount of change is 0
Iterate through each coin denomination and calculate the minimum number of coins needed for each amount of change
Store the results in a table and use them to calculate the minimum number of coins for l
posted on 16 Mar 2022
I was interviewed in Feb 2022.
3 coding question 1 SQL query
Find the first repeated element in an array of strings in O(n) time complexity.
Create a hash table to store the frequency of each element.
Traverse the array and check if the element is already present in the hash table.
If it is present, return the element as the first repeated element.
If no element is repeated, return null or -1.
Example: ['apple', 'banana', 'orange', 'apple'] => 'apple'
Question about finding complexity of multiplying big integers.
Big integers require more memory and processing power than regular integers.
Multiplying two n-digit integers takes O(n^2) time using the standard algorithm.
There are faster algorithms like Karatsuba and FFT which have lower complexity.
The complexity of multiplying two n-digit integers using Karatsuba algorithm is O(n^log2(3)).
The complexity of multiplying tw...
posted on 28 Aug 2024
75 min test with 18 Java theory questions
The synchronized keyword in Java is used to control access to shared resources in a multithreaded environment.
Synchronized keyword can be used to synchronize access to critical sections of code to prevent race conditions.
It can be applied to methods or code blocks to ensure only one thread can access them at a time.
Example: synchronized void myMethod() { // code }
Example: synchronized(this) { // code }
posted on 5 Jun 2024
I applied via Approached by Company and was interviewed in Jul 2024. There were 3 interview rounds.
Normal DSA round from hacker rank
DSA round from hacker rank or leetcode
I applied via LinkedIn and was interviewed before Oct 2023. There were 3 interview rounds.
It was more based on array/string manipulation, stack/queue based, if you have solved questions before then it will be easy/medium difficulty level for yo
I applied via LinkedIn and was interviewed in Apr 2024. There was 1 interview round.
Concurrency is the ability of a system to execute multiple tasks simultaneously.
Concurrency allows multiple tasks to run concurrently, improving performance and efficiency.
Concurrency can be achieved through multithreading or multiprocessing.
Example: A web server handling multiple requests simultaneously using multithreading.
ACID principles are a set of properties that guarantee database transactions are processed reliably.
Atomicity: Transactions are all or nothing. If one part of the transaction fails, the entire transaction is rolled back.
Consistency: Transactions bring the database from one valid state to another. All constraints are satisfied.
Isolation: Transactions are isolated from each other until they are completed.
Durability: Once...
based on 1 review
Rating in categories
Analyst
93
salaries
| ₹3.5 L/yr - ₹7 L/yr |
Junior Analyst
93
salaries
| ₹2.4 L/yr - ₹5.5 L/yr |
Senior Software Engineer
90
salaries
| ₹15.5 L/yr - ₹50 L/yr |
Software Engineer
89
salaries
| ₹8 L/yr - ₹27 L/yr |
Software Development Engineer
80
salaries
| ₹8 L/yr - ₹34 L/yr |
Paytm
PayPal
BharatPe
BillDesk