Filter interviews by
I appeared for an interview before Jan 2023.
Terraform state in file system can be managed using remote backends or local state files.
Use remote backends like S3, Azure Blob Storage, or Google Cloud Storage for better collaboration and security.
If using local state files, store them in a version-controlled directory to track changes and prevent conflicts.
Consider using Terraform Cloud for centralized state management and collaboration among team members.
StatefulSet in Kubernetes manages stateful applications by providing stable, unique network identifiers and persistent storage.
StatefulSet ensures that each pod in the set has a unique identity and stable network hostname
StatefulSet pods are created and managed in a predictable order, with each pod having a persistent identifier
StatefulSet is useful for stateful applications like databases where data persistence and un
CICD process in a cloud environment involves automating the build, test, and deployment of applications in the cloud.
Automate the process of building, testing, and deploying code changes
Integrate code changes into a shared repository
Automatically trigger builds and tests upon code changes
Deploy applications to cloud environments using automation tools like Jenkins, GitLab CI/CD, or AWS CodePipeline
Handling issues in the working environment involves effective communication, problem-solving skills, and conflict resolution.
Effective communication is key to addressing and resolving issues in the working environment.
Develop problem-solving skills to tackle challenges that arise in the workplace.
Practice conflict resolution techniques to manage disagreements and maintain a positive work environment.
posted on 9 Jun 2022
I applied via Referral and was interviewed in Dec 2021. There were 2 interview rounds.
I applied via Walk-in and was interviewed before Aug 2023. There were 2 interview rounds.
It was deciphering spoken language to subtitle for a complicated accented show
I am passionate about the company's mission and values, and I believe my skills and experience align well with the opportunities here.
Passionate about company's mission and values
Skills and experience align well with opportunities
Excited about potential for growth and development
I am passionate about using data analysis to drive business decisions and improve processes.
I have always been fascinated by the power of data to uncover insights and drive strategic decision-making.
I enjoy working with large datasets and using statistical tools to extract meaningful information.
I believe that data-driven decision-making is crucial for businesses to stay competitive in today's market.
For example, in my...
I applied via Job Fair and was interviewed before Oct 2022. There were 3 interview rounds.
The case study revolves around a mock implementation of their product at a hypothetical customer. They give you the parameters and you are to configure their software to that need, and then present to a mock customer team. For the configuration, do your best to use the online documentation Veeva has made public for that product (ie: Veeva Vault Help) and configure accordingly. This will measure your technical aptitude. For the presentation, treat them like a customer, and understand that you will not always be correct. If they ask a question that you do not understand, do not lie and instead give them a proper consultant reply and say something along the lines of you will look into it and get back to them. best of luck, and do your best to understand what you are building, why, and vocalize your thought process to the team.
posted on 3 Mar 2022
I applied via LinkedIn and was interviewed in Sep 2021. There was 1 interview round.
Questions on abstract class vs interface, internal working of hashmap, and Java 8 features.
Abstract class is a class that cannot be instantiated and can have both abstract and non-abstract methods.
Interface is a collection of abstract methods and constants that can be implemented by a class.
HashMap is a data structure that stores key-value pairs and uses hashing to retrieve values.
Java 8 introduced features like lambda...
I applied via Approached by Company and was interviewed before Nov 2021. There were 4 interview rounds.
I applied via Campus Placement and was interviewed before May 2020. There were 5 interview rounds.
I applied via Campus Placement and was interviewed before Jun 2021. There were 2 interview rounds.
Current affairs - relevant things going on in the world especially financial/Fintech domain
I appeared for an interview before Apr 2021.
Round duration - 90 minutes
Round difficulty - Easy
It was on online objective test consisting of 4 sections: Aptitude, Technical MCQs, Code snippet based MCQs and Coding part.
Given a string 'STR' consisting solely of the characters “{”, “}”, “(”, “)”, “[” and “]”, determine if the parentheses are balanced.
The first line contains an...
The task is to determine if a given string of parentheses is balanced or not.
Iterate through the characters of the string and use a stack to keep track of opening parentheses.
When encountering an opening parenthesis, push it onto the stack. When encountering a closing parenthesis, check if it matches the top of the stack.
If the stack is empty at the end or there are unmatched parentheses, the string is not balanced.
Exa...
Determine if a given singly linked list of integers is a palindrome. Return true
if it is a palindrome, otherwise return false
.
1 -> 2 -> ...
Check if a given singly linked list of integers is a palindrome.
Use two pointers to find the middle of the linked list.
Reverse the second half of the linked list.
Compare the first half with the reversed second half to determine if it is a palindrome.
Round duration - 60 minutes
Round difficulty - Easy
This was a technical and managerial round. The interviewer gave me a situation where I am in testing team and I found that customer requirement was drop down list at a place but developer has used bullet selection, and is not ready to change it. How will you manage? I gave some good replies and he was convinced.
A virtual function is a function in a base class that is declared using the keyword 'virtual' and can be overridden by a function with the same signature in a derived class.
Virtual functions allow for dynamic polymorphism in object-oriented programming.
They are used to achieve runtime polymorphism by enabling late binding.
Virtual functions are declared in a base class and can be overridden in derived classes.
Example: v...
Level order traversal of a binary tree in spiral form involves alternating between left and right while traversing each level.
Start by pushing the root node into a queue.
While the queue is not empty, pop a node, print its value, and push its children into the queue.
For each level, alternate between popping nodes from the queue and printing their values from left to right or right to left.
Continue this process until all
Abstract classes in C++ are classes that cannot be instantiated and are designed to be base classes for other classes.
Abstract classes may contain pure virtual functions, making them incomplete and unable to be instantiated.
Derived classes must implement all pure virtual functions from the abstract class in order to be concrete classes.
Abstract classes can have non-virtual functions and member variables like regular cl...
Round duration - 60 minutes
Round difficulty - Easy
This was also a technical round. He asked to optimize the code I wrote in coding round. Then he asked me a few puzzles and questions on OOPS, OS and DBMS.
ACID properties are a set of properties that guarantee the reliability of transactions in database management systems.
ACID stands for Atomicity, Consistency, Isolation, and Durability.
Atomicity ensures that either all operations in a transaction are completed successfully or none of them are.
Consistency ensures that the database remains in a consistent state before and after the transaction.
Isolation ensures that the e...
Paging and segmentation are memory management techniques in operating systems.
Paging divides physical memory into fixed-size blocks called pages, while segmentation divides logical memory into variable-size segments.
Paging allows for efficient memory allocation and management, while segmentation provides protection and sharing of memory.
Paging is simpler to implement but can lead to internal fragmentation, while segmen...
Concurrency control is a technique used in databases to manage simultaneous access and modification of data by multiple users or processes.
Concurrency control ensures that transactions are executed in a way that maintains data consistency and integrity.
Techniques like locking, timestamp ordering, and optimistic concurrency control are used to implement concurrency control.
For example, in a banking system, concurrency c...
String Buffer is synchronized and thread-safe, while String Builder is not synchronized and faster.
String Buffer is synchronized, making it thread-safe for use in multi-threaded environments.
String Builder is not synchronized, resulting in faster performance but not thread-safe.
String Builder is preferred for single-threaded operations, while String Buffer is preferred for multi-threaded operations.
Smart pointers in C++ are objects that act like pointers but provide automatic memory management.
Smart pointers help prevent memory leaks by automatically managing memory allocation and deallocation.
Examples include unique_ptr, shared_ptr, and weak_ptr.
unique_ptr is used for exclusive ownership, shared_ptr for shared ownership, and weak_ptr to prevent circular references.
Mutex is used for exclusive access to a resource, while semaphore is used for controlling access to a resource by multiple threads.
Mutex is binary and allows only one thread to access the resource at a time.
Semaphore can have a count greater than one, allowing multiple threads to access the resource simultaneously.
Mutex is typically used for protecting critical sections of code, while semaphore is used for synchronizat...
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.
based on 3 interviews
Interview experience
based on 4 reviews
Rating in categories
Member Technical Staff
20
salaries
| ₹25 L/yr - ₹38 L/yr |
Senior Cloud Engineer
6
salaries
| ₹23.8 L/yr - ₹25 L/yr |
Solution Architect
5
salaries
| ₹22.5 L/yr - ₹36 L/yr |
Engineer
4
salaries
| ₹11.5 L/yr - ₹14 L/yr |
Senior Software Engineer
4
salaries
| ₹19.4 L/yr - ₹24 L/yr |
Prime Focus Technologies
Yodlee
Global Edge Software
Bravura Solutions