Filter interviews by
Cloud concepts refer to the delivery of computing services over the internet, including storage, databases, networking, and more.
Cloud computing allows users to access and use resources on-demand over the internet.
It provides scalability, flexibility, and cost-efficiency compared to traditional on-premises solutions.
Examples include Amazon Web Services (AWS), Microsoft Azure, and Google Cloud Platform.
Implement a library management system using OOP concepts like classes, inheritance, and polymorphism.
Create a base class 'Book' with attributes like title, author, and ISBN.
Derive classes 'Fiction' and 'NonFiction' from 'Book' to represent different genres.
Implement a method 'displayInfo()' in each class to show book details.
Use a 'Library' class to manage a collection of books, allowing adding and removing books.
...
Program to print HCF of numbers as output
Take input of two numbers from user
Find the smaller number between the two
Run a loop from 1 to the smaller number
Check if both numbers are divisible by the current loop variable
If yes, update the HCF variable
Print the HCF as output
I am proficient in Java and Python.
Strong understanding of object-oriented programming concepts
Experience with Java frameworks such as Spring and Hibernate
Proficient in Python libraries such as NumPy and Pandas
OOPS is a programming paradigm that uses objects to represent real-world entities. Modular code is code that is divided into separate, independent parts.
OOPS stands for Object-Oriented Programming System
It focuses on creating reusable code and reducing complexity
Modular code is easier to maintain, test, and debug
It involves breaking down code into smaller, self-contained modules
Each module performs a specific task...
Affirmative action is a complex issue with both pros and cons.
Affirmative action can help promote diversity and equal opportunities for underrepresented groups.
However, it can also lead to reverse discrimination and undermine merit-based hiring practices.
Ultimately, the effectiveness of affirmative action depends on how it is implemented and monitored.
For example, some companies may set quotas for hiring certain g...
Given a string str
and a character 'X', develop a function to eliminate all instances of 'X' from str
and return the resulting string.
The first line...
Develop a function to remove all instances of a given character from a string.
Iterate through the string and build a new string excluding the specified character.
Use a StringBuilder or similar data structure for efficient string manipulation.
Handle edge cases such as empty string or character not found in the input string.
Given an array of strings A
of size N
, determine the longest complete string. A string is deemed complete if every prefix of the string also appears in the array. If multi...
Find the longest complete string in an array of strings, where every prefix of the string also appears in the array.
Iterate through each string in the array and check if all its prefixes exist in the array.
Keep track of the longest complete string found so far, and return the lexicographically smallest one if multiple exist.
If no complete string is found, return 'None'.
Given a Binary Tree with 'N' nodes, compute and return the sum of all its boundary nodes. The boundary nodes include the root node, leftmost external nodes, rightmost externa...
The Boundary Sum Problem involves calculating the sum of boundary nodes in a binary tree.
Traverse the tree in a specific order to identify the boundary nodes (root, leftmost, rightmost, and leaves)
Keep track of the sum of these boundary nodes as you traverse the tree
Handle cases where nodes have no children (-1)
In a wedding ceremony at NinjaLand, attendees are divided into two groups: bride’s side and groom’s side. Attendees from the bride’s side hold odd numbers, while those ...
Rearrange attendees from bride's side and groom's side while maintaining original order within each group.
Iterate through the linked list and separate odd and even numbers into two separate lists.
Merge the two lists while maintaining the original order within each group.
Output the rearranged linked list with bride's side attendees followed by groom's side attendees.
I applied via Job Portal and was interviewed in Oct 2024. There was 1 interview round.
I appeared for an interview in Dec 2024.
Given a project and add a new feature with test cases
I applied via Nextwave and was interviewed in Dec 2023. There were 3 interview rounds.
I got the opportunity through Nextwave. In the coding test I’m supposed to solve few aptitude questions and around 5-6 coding questions. Out of them 2 are of easy level ,2 are medium and 2 are of hard level.
I solved 2 easy, 1 medium and 1 hard problem.
I applied via Campus Placement and was interviewed in Feb 2022. There were 4 interview rounds.
OOP mcq, 3 coding questions on array and string (easy and medium level),pseudo code etc
Implement a library management system using OOP concepts like classes, inheritance, and polymorphism.
Create a base class 'Book' with attributes like title, author, and ISBN.
Derive classes 'Fiction' and 'NonFiction' from 'Book' to represent different genres.
Implement a method 'displayInfo()' in each class to show book details.
Use a 'Library' class to manage a collection of books, allowing adding and removing books.
Demon...
I applied via Recruitment Consulltant and was interviewed before Mar 2022. There were 6 interview rounds.
OOPS is a programming paradigm that uses objects to represent real-world entities. Modular code is code that is divided into separate, independent parts.
OOPS stands for Object-Oriented Programming System
It focuses on creating reusable code and reducing complexity
Modular code is easier to maintain, test, and debug
It involves breaking down code into smaller, self-contained modules
Each module performs a specific task and ...
It was 2 medium Leetcode questions. I did 1 well and the other one with an okayish approach.
For web development, I'd use MERN stack. For mobile development, I'd use React Native. For data analysis, I'd use Python stack.
MERN stack (MongoDB, Express.js, React.js, Node.js) for web development
React Native for mobile development
Python stack (NumPy, Pandas, Matplotlib) for data analysis
Consider the project requirements and scalability before choosing a tech stack
Affirmative action is a complex issue with both pros and cons.
Affirmative action can help promote diversity and equal opportunities for underrepresented groups.
However, it can also lead to reverse discrimination and undermine merit-based hiring practices.
Ultimately, the effectiveness of affirmative action depends on how it is implemented and monitored.
For example, some companies may set quotas for hiring certain groups...
I appeared for an interview before May 2021.
Round duration - 180 Minutes
Round difficulty - Easy
it was an coding round. i was not able to solve questions
Your task is to determine if two given strings are anagrams of each other. Two strings are considered anagrams if you can rearrange the letters of one string to form the...
Determine if two strings are anagrams of each other by checking if they contain the same characters.
Create character frequency maps for both strings and compare them.
Sort both strings and compare if they are equal.
Use a hash table to store character counts and check if they are the same for both strings.
Given a string str
and a character 'X', develop a function to eliminate all instances of 'X' from str
and return the resulting string.
The first lin...
Develop a function to remove all instances of a given character from a string.
Iterate through the string and build a new string excluding the specified character.
Use a StringBuilder or similar data structure for efficient string manipulation.
Handle edge cases such as empty string or character not found in the input string.
Given an array of strings A
of size N
, determine the longest complete string. A string is deemed complete if every prefix of the string also appears in the array. If mult...
Find the longest complete string in an array of strings, where every prefix of the string also appears in the array.
Iterate through each string in the array and check if all its prefixes exist in the array.
Keep track of the longest complete string found so far, and return the lexicographically smallest one if multiple exist.
If no complete string is found, return 'None'.
In a wedding ceremony at NinjaLand, attendees are divided into two groups: bride’s side and groom’s side. Attendees from the bride’s side hold odd numbers, while those...
Rearrange attendees from bride's side and groom's side while maintaining original order within each group.
Iterate through the linked list and separate odd and even numbers into two separate lists.
Merge the two lists while maintaining the original order within each group.
Output the rearranged linked list with bride's side attendees followed by groom's side attendees.
Given a Binary Tree with 'N' nodes, compute and return the sum of all its boundary nodes. The boundary nodes include the root node, leftmost external nodes, rightmost extern...
The Boundary Sum Problem involves calculating the sum of boundary nodes in a binary tree.
Traverse the tree in a specific order to identify the boundary nodes (root, leftmost, rightmost, and leaves)
Keep track of the sum of these boundary nodes as you traverse the tree
Handle cases where nodes have no children (-1)
Tip 1 : Stay focused
Tip 2 : Practice coding questions.
Tip 3 : View previous interviews of the companies
Tip 1 : Don't lie on resume
Tip 2 : Just write in format that is catchy
I applied via Walk-in and was interviewed before Jun 2021. There were 3 interview rounds.
Quantitative ability and logical ability
I am proficient in Java and Python.
Strong understanding of object-oriented programming concepts
Experience with Java frameworks such as Spring and Hibernate
Proficient in Python libraries such as NumPy and Pandas
Program to print HCF of numbers as output
Take input of two numbers from user
Find the smaller number between the two
Run a loop from 1 to the smaller number
Check if both numbers are divisible by the current loop variable
If yes, update the HCF variable
Print the HCF as output
Top trending discussions
I appeared for an interview in Jun 2017.
I applied via LinkedIn and was interviewed before Jun 2020. There were 3 interview rounds.
I applied via Naukri.com and was interviewed before Feb 2021. There were 2 interview rounds.
based on 5 interview experiences
Difficulty level
Duration
based on 3 reviews
Rating in categories
Senior Consultant
951
salaries
| ₹17.9 L/yr - ₹33 L/yr |
Application Developer
665
salaries
| ₹6.8 L/yr - ₹20 L/yr |
Consultant
299
salaries
| ₹6.8 L/yr - ₹22 L/yr |
Lead Consultant
296
salaries
| ₹23 L/yr - ₹65.5 L/yr |
Software Developer
158
salaries
| ₹6.7 L/yr - ₹27.5 L/yr |
Synechron
Movate
Sopra Steria
NCR Corporation