i
i-exceed technology solutions
Filter interviews by
I applied via Naukri.com and was interviewed before May 2023. There was 1 interview round.
Agile process is a software development methodology that emphasizes flexibility, collaboration, and iterative development.
Iterative development with short cycles called sprints
Frequent collaboration between cross-functional teams
Continuous feedback and adaptation
Prioritization of customer satisfaction and delivering working software
Use of tools like Scrum, Kanban, or XP
Scrum is an agile framework for managing work on complex projects.
Scrum involves breaking down work into small, manageable tasks called user stories.
It includes sprint planning, daily stand-up meetings, sprint review, and sprint retrospective.
Scrum teams are self-organizing and cross-functional.
The product backlog is a prioritized list of user stories.
Sprints are time-boxed iterations, usually 2-4 weeks long.
Scrum emph
I applied via Referral and was interviewed in May 2022. There were 2 interview rounds.
Yes, I have knowledge of Core Java.
I have a strong understanding of object-oriented programming concepts in Java.
I am familiar with the Java syntax and can write and debug Java code.
I have experience in using Java libraries and frameworks for test automation.
I can create and execute test cases using Java-based testing tools like JUnit or TestNG.
I am proficient in handling exceptions, file I/O, and multithreading in Jav
Top trending discussions
I appeared for an interview in Feb 2022.
Round duration - 30 minutes
Round difficulty - Easy
Manual testing is done by humans, while automated testing is done using tools and scripts.
Manual testing involves testers executing test cases manually without the use of automation tools.
Automated testing involves using tools and scripts to execute test cases automatically.
Manual testing is time-consuming and prone to human error, while automated testing is faster and more reliable.
Manual testing is suitable for explo...
Cross-browser testing is the process of testing a website or web application across different web browsers to ensure consistent functionality and appearance.
Ensures compatibility with various browsers such as Chrome, Firefox, Safari, and Internet Explorer
Identifies and fixes any issues related to browser-specific behaviors
Helps in delivering a seamless user experience across different platforms
Uses tools like Selenium,...
A test automation framework consists of different parts like libraries, tools, and guidelines to support automated testing.
Libraries: reusable code modules for common functions like data manipulation, assertions, and interactions with the application under test
Tools: software programs used to create, execute, and manage automated tests, such as Selenium, Appium, or JUnit
Guidelines: best practices and standards for writ...
Round duration - 30 minutes
Round difficulty - Easy
A locator in Selenium is used to identify web elements on a web page. There are different types of locators like ID, class name, xpath, etc.
Locators are used to find and interact with web elements on a web page
Some common types of locators in Selenium are ID, class name, xpath, CSS selector, name, tag name, link text, and partial link text
Each locator type has its own syntax and usage, for example, ID locator uses 'id=
XPath is a query language used to navigate through XML documents and locate elements based on their attributes or structure.
XPath stands for XML Path Language.
It is used to select nodes or elements in an XML document.
XPath uses path expressions to navigate through the document tree.
Examples: //div[@class='example'] selects all div elements with class 'example'.
Examples: /bookstore/book[1] selects the first book element
Tip 1 : Must do Previously asked Interviews 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.
I applied via Naukri.com and was interviewed in Jan 2022. There were 2 interview rounds.
I applied via Company Website and was interviewed in Oct 2020. There was 1 interview round.
I appeared for an interview before Dec 2020.
Round duration - 60 Minutes
Round difficulty - Easy
The interview was held in the evening on a weekday, Interview was nice and quite experienced, he asked me about my previous experience in the area and they told me about the team and work for which they were hiring, we did some discussion on that. Meanwhile, I was also asked a few questions on Database and SQL.
Given a sorted array A consisting of N integers, your task is to find the magic index in the given array, where the magic index is defined as an index i such that A[i] = i...
Find the magic index in a sorted array where A[i] = i.
Iterate through the array and check if A[i] = i for each index i
Utilize binary search for a more efficient solution
Handle cases where there are multiple magic indices or none at all
Round duration - 60 minutes
Round difficulty - Medium
The interview was in the afternoon. There were some glitches with the teams meeting but it got sorted out in a few minutes. This round was purely coding based. He started with questions on arrays, linked lists, and string manipulation with an increasing level of hardness. The tricky part was that the online editor I was given for writing the code was not an IDE but a simple text editor, so I wasn't getting any help in terms of code completion or syntax errors or syntax highlighting.
Given an array of integers ARR
of length N
and an integer Target
, your task is to return all pairs of elements such that they add up to the Target
.
The first line ...
The task is to find all pairs of elements in an array that add up to a given target.
Iterate through the array and for each element, check if the difference between the target and the element exists in a hash set.
If it exists, add the pair to the result. If not, add the element to the hash set.
Handle cases where the same element is used twice in a pair.
Return (-1, -1) if no pair is found.
Tip 1 : Always keep your focus on learning the basics, they should be rock solid
Tip 2 : Don't try to cram things days or weeks before interviews, that never helps. Try to learn little by little every day incrementally.
Tip 3 : Don't try to target any specific company, it almost never works out, just stay true to yourself and keep doing the hard work, opportunity will come to you eventually.
Tip 4 : If you need to prepare in a short time, I would suggest doing the 30-day interview challenge on Leetcode
Tip 1 : Keep it short and simple, don't clutter with lots of text, try to convey things using bullet points instead of paragraphs
Tip 2 : Don't use fancy graphics and make sure the resume is not more than 1 page (or maybe 2 in case you have more experience)
MongoDB is scalable due to its ability to horizontally partition data across multiple servers.
MongoDB uses sharding to distribute data across multiple servers.
Sharding allows for horizontal scaling by adding more servers to the cluster.
MongoDB also supports replica sets for high availability and fault tolerance.
Indexes can be created on any field in a MongoDB document, allowing for efficient querying of large datasets.
String manipulation problems involve modifying or analyzing strings of characters.
Use built-in string methods like substring, replace, and split.
Regular expressions can be powerful tools for pattern matching and manipulation.
Be mindful of edge cases like empty strings and null values.
Consider the time and space complexity of your solution.
Practice with coding challenges on websites like LeetCode and HackerRank.
Autocomplete in IDEs helps developers write code faster by suggesting code snippets and completing code as they type.
Autocomplete should suggest code snippets based on the context of the code being written
Autocomplete should prioritize suggestions based on frequency of use
Autocomplete should also suggest variable and function names
Autocomplete should be customizable to allow for user-defined snippets and suggestions
Exa...
My weakness is public speaking.
I tend to get nervous when speaking in front of large groups.
I am working on improving my public speaking skills by practicing and seeking feedback.
I have taken courses and attended workshops to help me overcome my fear of public speaking.
Comparing 2 basketball game scenarios with different number of trials and baskets required to win
Calculate the probability of winning in each game scenario using binomial distribution formula
Compare the probabilities to determine which game scenario is preferable
In game1, the probability of winning is p. In game2, the probability of winning is the sum of probabilities of making 2 or 3 baskets
If p is high, game1 is pref...
based on 1 interview
Interview experience
based on 1 review
Rating in categories
Software Engineer
296
salaries
| ₹2.8 L/yr - ₹9.8 L/yr |
Senior Software Engineer
195
salaries
| ₹5 L/yr - ₹18 L/yr |
Team Lead
86
salaries
| ₹9.4 L/yr - ₹21.1 L/yr |
Software Developer
39
salaries
| ₹4.5 L/yr - ₹9.6 L/yr |
Project Lead
28
salaries
| ₹17.6 L/yr - ₹31 L/yr |
Broadridge Financial Solutions
MasterCard
PayPal
HighRadius