Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by i-exceed technology solutions Team. If you also belong to the team, you can get access from here

i-exceed technology solutions Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

i-exceed technology solutions Java Full Stack Developer Interview Questions and Answers

Updated 14 Dec 2024

i-exceed technology solutions Java Full Stack Developer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Java principals
  • Q2. Basic problem solvings

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. System design interview

I was interviewed in Jul 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 Minutes
Round difficulty - Medium

This was a coding round conducted from 12 PM to 2 PM and it was not proctored but we could not switch the tabs. There were 2 coding questions each of 100 marks. The MCQ had HTML,CSS, JS, SQL, Coding and aptitutude questions.

  • Q1. 

    N Queens Problem

    Given an integer N, find all possible placements of N queens on an N x N chessboard such that no two queens threaten each other.

    Explanation:

    A queen can attack another queen if they ar...

  • Ans. Backtracking
    1. Instead of checking all the places on the chessboard, we can use backtracking and place queen row-wise or column-wise.
    2. Suppose we place queens row-wise, and we start with the very first row. Place the queen and move to the next row until either there is a solution or there are no viable cells left.
    3. As we backtrack, check to place the queen in the different columns of the same row.
    4. When we can place a queen at ...
  • Answered Anonymously
  • Q2. 

    Rearrange String Problem Statement

    Given a string ‘S’, your task is to rearrange its characters so that no two adjacent characters are the same. If it's possible, return any such arrangement, otherwise re...

  • Ans. Brute force

    In this approach, we will generate all the possible rearrangements of the string and check if the current string in our rearrangement does not have any two adjacent characters that are the same. If we can find any string which satisfies our criteria then we will return that string else we will return “not possible”.

     

    We can implement the above approach by – 

    1. Generate all permutations of a string.
    2. For ...
  • Answered Anonymously
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

There were two interviewers. They started by asking me to introduce myself and asked me to explain any one of my projects in my resume and after that, they asked me about the ML algorithms used in my project and about the difficulties faced. What is NaN property in JavaScript? This took around 10 minutes. They also asked 2 coding questions.
It was conducted at 10 AM on CodePair and MS Teams. Interviewers were friendly.

  • Q1. 

    Group Anagrams Together

    Given an array/list of strings STR_LIST, group the anagrams together and return each group as a list of strings. Each group must contain strings that are anagrams of each other.

    E...

  • Ans. Sorting based Approach

    The idea behind this approach is that two or more than two strings are anagrams if and only if their sorted strings are equal. So we will use a HashMap, let’s say “anagramGroup”, where each key is a sorted string, and the key will be mapping to the list of indices from the given list of strings that form a group of anagrams. This means that if we sort the strings at those indices, we will get the ...

  • Answered Anonymously
  • Q2. 

    Friends Pairing Problem

    The task is to determine the total number of ways to pair up 'N' friends or leave some of them single, following these rules:

    1. Each friend can either pair with one other friend ...
  • Ans. Bruteforce

    The idea is to solve the problem using recursion and break down the problem into different subproblems.

    Let’s define NUMBER_OF_WAYS(N) as the total number of ways ‘N’ friends can be paired up or remain single.

    The N-th person has two choices - either remain single or pair up with one of the other ‘N - 1’ friends.

    If he remains single, then the number of possible pairings are NUMBER_OF_WAYS(N - 1) as there are (N...

  • Answered Anonymously
Round 3 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

There were 2 questions based on data structures, the round started from 1.15 PM .Some SQL questions like What is a Subquery? What are its types? What are UNION, MINUS and INTERSECT commands?

  • Q1. 

    Vertical Order Traversal Problem Statement

    You are given a binary tree, and the task is to perform a vertical order traversal of the values of the nodes in the tree.

    For a node at position ('X', 'Y'), th...

  • Ans. Efficient Approach

    The intuition is to find the breadth of the tree first so that we can beforehand know the maximum horizontal distance and minimum horizontal distance of a node from the root node. We can use the absolute value of minimum horizontal distance as an offset. Now we can use an array/list visited to store the visited nodes where ith element will store the node at (i - offset”) distance horizontally from the...

  • Answered Anonymously
  • Q2. 

    Divide Two Integers Problem Statement

    You are given two integers dividend and divisor. Your task is to divide the integers without using multiplication, division, and modular operators. Return the quotien...

  • Ans. Using Subtraction

    We can subtract the divisor from the dividend until the dividend is greater than the divisor. The quotient will be equal to the number of total subtractions performed.

     

    Below is the detailed algorithm:

     

    1. Store the ‘IS_DIVIDEND_NEGATIVE = false’ and ‘IS_DIVISOR_NEGATIVE = false’.
    2. Check if the ‘DIVIDEND’ and ‘DIVISOR’ are positive or negative and update the values of ‘IS_DIVIDEND_NEGATIVE’ and ...
  • Answered Anonymously
Round 4 - HR 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

The round was at 7.30 PM and I was asked to introduce myself and we had basic talk on where I live and my interests. I asked about the work culture and about the role at the end.

  • Q1. You are presented with a puzzle where there are n balloons, and your task is to burst the maximum number of balloons using an arrow. How would you approach solving this puzzle?
  • Ans. 

    This was basically finding a maximum number of points in a line. I coded that but he wanted an improved solution. He told me to assume the positions of balloons in a matrix where 1 represents if the balloon is present and vice versa. Then I had to find which row or column or diagonal had the maximum number of 1’s. Later he asked me if I had some questions.

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from VIT University. I applied for the job as Fullstack Developer in ChennaiEligibility criteriaPercentage Criteria in X and XII: 85% or 8.5 CGPA, Pursuing Degree: 85% or 8.5 CGPA, No Standing ArrearsPaypal interview preparation:Topics to prepare for the interview - Trees, Graphs, Dynamic Programming, Arrays, StacksTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Practice atleast 400 questions of leetcode topics wise.
Tip 2 : Participate in hackathons.
Tip 3 : Have 2 good projects atleast and be very good in project concepts.

Application resume tips for other job seekers

Tip 1 : Have good projects in your resume and have clear idea of what you have done in those.
Tip 2 : Mention languages, frameworks, subjects only when you have proper hold on them, don't mention things you don't know properly.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

4 Questions

  • Q1. React questions How do you organize code in react (components, containers, separation of logic) ? MVC patterns UI design Finding local maxima in series of numbers
  • Q2. Basics of HTML, CSS, Javascript css transform properties implement redux publish subscribe model
  • Q3. Singleton pattern Few algorithmic questions Anagram problems Design patterns
  • Q4. JSON.stringify implementation Problem solving methodology Array - sorting and finding maxium related problem middlewares in node js

Interview Preparation Tips

Round: Test
Experience: Hacker rank testing round

The questions were based on dynamic programming


i-exceed technology solutions Interview FAQs

How many rounds are there in i-exceed technology solutions Java Full Stack Developer interview?
i-exceed technology solutions interview process usually has 1 rounds. The most common rounds in the i-exceed technology solutions interview process are One-on-one Round.
What are the top questions asked in i-exceed technology solutions Java Full Stack Developer interview?

Some of the top questions asked at the i-exceed technology solutions Java Full Stack Developer interview -

  1. Basic problem solvi...read more
  2. Java princip...read more

Tell us how to improve this page.

i-exceed technology solutions Java Full Stack Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Software Engineer
292 salaries
unlock blur

₹2.8 L/yr - ₹9.2 L/yr

Senior Software Engineer
187 salaries
unlock blur

₹5 L/yr - ₹17.5 L/yr

Team Lead
84 salaries
unlock blur

₹9.4 L/yr - ₹21.1 L/yr

Software Developer
36 salaries
unlock blur

₹4.5 L/yr - ₹9.6 L/yr

Project Lead
25 salaries
unlock blur

₹15 L/yr - ₹28.5 L/yr

Explore more salaries
Compare i-exceed technology solutions with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview