Filter interviews by
I applied via Campus Placement and was interviewed in May 2024. There were 2 interview rounds.
Basic Aptitude questions and some questions related to testing faulty code.
Developed a web application for task management using React and Node.js, enhancing team collaboration and productivity.
Utilized React for the front-end, creating a responsive user interface.
Implemented Node.js and Express for the back-end, managing API requests.
Integrated MongoDB for data storage, allowing for efficient task retrieval.
Incorporated user authentication using JWT for secure access.
Deployed the application...
I applied via Campus Placement and was interviewed in Jan 2024. There were 2 interview rounds.
It was good and easy test, all are aptitude questions, at least one coding question was there
Developed a web application for tracking personal fitness goals and progress.
Used HTML, CSS, and JavaScript for front-end development
Implemented a RESTful API using Node.js and Express for back-end functionality
Utilized MongoDB for database management
Incorporated chart.js for visualizing progress data
Reverse a string
Use a loop to iterate through the characters of the string
Swap the characters from start to end of the string
Repeat until the entire string is reversed
Top trending discussions
posted on 19 May 2022
I appeared for an interview before May 2021.
Round duration - 120 minutes
Round difficulty - Medium
It was in the morning. It had basic questions and 2 programming questions(1 string and 1 Data Structure)
Generate a pattern based on the input number of rows N. Each row i should start with the i-th letter of the alphabet, and the number of letters in the row should match ...
Generate a character pattern based on the input number of rows N, where each row starts with the i-th letter of the alphabet and contains i letters.
Create an array to store each row of the pattern
Iterate from 1 to N, for each row i, generate the string starting with the i-th letter of the alphabet and containing i letters
Add each generated string to the array
Return the array of strings as the output
Develop a Stack Data Structure to store integer values using two Queues internally.
Your stack implementation should provide these public functions:
Implement a stack using two queues to store integer values with specified functions.
Use two queues to simulate stack operations efficiently.
Maintain one queue for storing elements and another for temporary storage during push operation.
Ensure to handle edge cases like empty stack and maximum size limit.
Example: Push operation involves transferring elements from one queue to another before adding the new element.
Example...
Round duration - 60 minutes
Round difficulty - Medium
My interviewer asked me about my projects and the concepts involved in making it. Then he asked me to solve a string problem which was not very difficult followed by basic questions on array and it's properties. He also asked HTML tags.
You are given a string STR
which contains alphabets, numbers, and special characters. Your task is to reverse the string.
STR = "abcde"
"e...
Reverse a given string containing alphabets, numbers, and special characters.
Iterate through the string from the end to the beginning and append each character to a new string.
Use built-in functions like reverse() or slicing to reverse the string.
Handle special characters and numbers while reversing the string.
Ensure to consider the constraints on the input string length and number of test cases.
Round duration - 150 minutes
Round difficulty - Easy
This round for Sapient was based on it's core values and how I've implemented these once or more in life. It mostly involved discussion around my leadership, team player, problem solving and innovative skills as a part of the clubs in college. Also, what are my expectations from Sapient and what I bring to them
Tip 1 : Be confident, clear and calm with the answers during interview
Tip 2 : Practice coding questions on based on different difficulty
Tip 3 : Prepare the topics thoroughly the questions might not be tough but they would be based on the core concept
Tip 4 : You should have at least 2 projects - JAVA and database related or Data Analytics
Tip 1 : Projects are mandatory you can steer the interview in that direction
Tip 2 : Resume should only have what you actually know and did
Tip 3 : Add extra-curriculars (for Sapient it really matters if you have incidents related team building, leadership, conflict resolution experiences)
I appeared for an interview in Sep 2020.
Round duration - One hour aptitude,1.5 hour coding
Round difficulty - Medium
First round was of aptitude that was easy and second round was of coding which had medium level questions.
Given a positive integer N
, your task is to identify all prime numbers less than or equal to N
.
A prime number is a natural number greater than 1 that has no po...
Identify all prime numbers less than or equal to a given positive integer N.
Iterate from 2 to N and check if each number is prime
Use the Sieve of Eratosthenes algorithm for efficient prime number identification
Optimize by only checking up to the square root of N for divisors
Round duration - 20 minutes
Round difficulty - Medium
First I was asked about my projects and then 2 questions on array were given.
Given an integer array/list arr
and an integer 'Sum', determine the total number of unique pairs in the array whose elements sum up to the given 'Sum'.
The first line c...
Count the total number of unique pairs in an array whose elements sum up to a given value.
Use a hashmap to store the frequency of each element in the array.
Iterate through the array and for each element, check if (Sum - current element) exists in the hashmap.
Increment the count of pairs if the complement exists in the hashmap.
Divide the count by 2 to avoid counting duplicates (arr[i], arr[j]) and (arr[j], arr[i]) separ...
Tip 1 : Data structures should be on your tips.
Tip 2 : Learn how to make logic.
Tip 3 : Be confident while giving the interview.
Tip 1 : Add projects with description.
Tip 2 : Be true to yourself in resume.
I appeared for an interview in Nov 2020.
Round duration - 180 minutes
Round difficulty - Medium
Design and implement a data structure for a Least Recently Used (LRU) cache to support two operations:
get(key)
- Returns the value for the given key if it exists in the cac...Design and implement a Least Recently Used (LRU) cache data structure supporting get and put operations with specified constraints.
Implement a data structure for LRU cache with get and put operations
Maintain a capacity limit and remove least recently used item when exceeding capacity
Handle get operation by returning value for given key or -1 if key does not exist
Handle put operation by inserting or updating key-value p...
Round duration - 30 minutes
Round difficulty - Hard
Round duration - 15-20 minutes
Round difficulty - Easy
Tip 1 : First of all you have to clear first round so make sure you practice aptitude questions daily
Tip 2 : Learn each and every topic of Oops with real life examples
Tip 3 : Write limited thing in your resume and make sure everything you write in your resume you must have a great knowledge of them.
Tip 1: mention atleast two projects
Tip 2:if you have a patent then it is plus point for you.
posted on 2 Jun 2022
I appeared for an interview in Sep 2021.
Round duration - 90 minutes
Round difficulty - Easy
First Round-It was 90 minutes round and basically contains aptitude question which you need to solve quickly.
Normal aptitude and English and reasoning questions.
The question involves multiple choice questions on aptitude, English, and reasoning.
Practice solving different types of aptitude questions like numerical reasoning, logical reasoning, and data interpretation.
Improve your English skills by reading books, newspapers, and practicing grammar exercises.
Enhance your reasoning abilities by solving puzzles, brain teasers, and logical reasoning problems.
Round duration - 40 minutes
Round difficulty - Easy
My interview started and the interviewer asked me to introduce myself. Also he asked me some questions related to my hobbies like the last movie I saw in theatre (these questions are asked to make you comfortable and familiarise you with the interview) .
After this he asked me about my projects.
In which technology did I work. What is my project all about , what are its features and how is it useful in the real world.
After this, since I made my project in native Android using Java he asked me some conceptual questions in Java.He asked me about Collection framework.
After this he asked me about OOPs.What is OOPs, then he asked me about polymorphism and told me to explain it.
Finally, he gave me a question and asked me to code it.
Q. Find the second largest element in the given array (don't use sorting ).
Eg. arr={6,7,8,9,0}
Then, output=8
Interview took around 35-40 min .
At last he asked me if I had any questions for him to which I replied in what technologies do I get to work on if I get selected.
Given an array or list of integers 'ARR', identify the second largest element in 'ARR'.
If a second largest element does not exist, return -1.
ARR = [2,...
Find the second largest element in an array of integers.
Iterate through the array to find the largest and second largest elements.
Handle cases where all elements are identical.
Return -1 if second largest element does not exist.
Tip 1 : Consistency-Solving problems daily
Tip 2 : Quality over quantity
Tip 3 : build confidence by solving problems till you confident about any topic (don't go over number of questions)
Tip 1 : Be Precise
Tip 2 : mention only important tech related things like projects and experiences
I appeared for an interview in Jan 2021.
Round duration - 40 minutes
Round difficulty - Medium
You are provided with an array of positive integers ARR
that represents the strengths of different “jutsus” (ninja techniques). You are also given the strength of the ene...
Count the number of subarrays whose combined strength matches the given enemy strength.
Iterate through the array and maintain a running sum to check for subarrays with sum equal to the enemy strength.
Use a hashmap to store the running sum frequencies and increment the count of subarrays accordingly.
Return the count of subarrays that sum up to the given enemy strength.
Round duration - 15 minutes
Round difficulty - Easy
It was in the night around 7:00PM-7:15PM. Platform used for this round was skype. Interviewer was very friendly in nature. This round focusses more on your personality rather than knowledge.
Tip 1 : Practice Coding questions
Tip 2 : Try not to lie on resume
Tip 1 : It should not be too long or too short.
Tip 2 : Do not put false thing
posted on 30 May 2022
I applied via Campus Placement and was interviewed in Nov 2021. There were 2 interview rounds.
I applied via Campus Placement and was interviewed in Oct 2021. There were 2 interview rounds.
Basic aptitude questions
I expect a salary that reflects my skills, the industry standard, and the value I can bring to the team.
Research industry standards: For example, internships in my area typically range from $15 to $25 per hour.
Consider my skills: If I have specific skills like proficiency in Python or Java, I might expect a higher rate.
Value to the company: I believe my contributions can help improve project efficiency, which justifies...
The needed one refers to identifying essential skills or qualities for a software developer intern role.
Strong programming skills: Proficiency in languages like Python, Java, or JavaScript.
Problem-solving ability: Ability to tackle coding challenges, e.g., solving algorithmic problems on platforms like LeetCode.
Team collaboration: Experience working in teams, such as contributing to group projects in school or open-sou...
based on 2 interview experiences
Difficulty level
Duration
based on 1 review
Rating in categories
Associate Technical Support Engineer
21
salaries
| ₹3.8 L/yr - ₹7 L/yr |
Senior Software Engineer
15
salaries
| ₹18 L/yr - ₹28 L/yr |
Technical Support Engineer
15
salaries
| ₹4 L/yr - ₹6.4 L/yr |
Data Analyst
14
salaries
| ₹4 L/yr - ₹7.6 L/yr |
Software Engineer
13
salaries
| ₹11.3 L/yr - ₹19 L/yr |
Cognizant
EXL Service
Optum Global Solutions
Hexaware Technologies