Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Ideas2IT Technologies Team. If you also belong to the team, you can get access from here

Ideas2IT Technologies Verified Tick

Compare button icon Compare button icon Compare
3.8

based on 136 Reviews

Filter interviews by

Ideas2IT Technologies Software Engineer Interview Questions and Answers

Updated 25 Sep 2024

Ideas2IT Technologies Software Engineer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

As usual interview with an aptitude test

Round 2 - Technical 

(2 Questions)

  • Q1. Two coding questions
  • Q2. Two puzzle and iq
Round 3 - One-on-one 

(2 Questions)

  • Q1. Subject and project
  • Q2. Puzzle and iq test

Interview Preparation Tips

Interview preparation tips for other job seekers - It’s a fresher interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Move negative elements to right side of array
  • Ans. 

    Move negative elements to right side of array

    • Iterate through the array and swap negative elements to the right side

    • Use two pointers approach to keep track of positive and negative elements

    • Maintain the order of elements while moving negatives to the right side

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Basic string manipulation and general DSA questions

Round 2 - Technical 

(2 Questions)

  • Q1. Tree traversal iteratively
  • Q2. Implement DFS,BFS on graph
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Approached by Company and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. They simply ask what you are doing
  • Q2. How much you used skill in current project
  • Ans. 

    I utilized my skills extensively in the current project, contributing to its success.

    • I applied my knowledge of programming languages such as Java and Python to develop new features.

    • I used my problem-solving skills to troubleshoot and resolve technical issues efficiently.

    • I leveraged my experience with database management to optimize data storage and retrieval processes.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Anything they ask even very old versions
Round 3 - HR 

(2 Questions)

  • Q1. Where u from and check attitude
  • Ans. 

    I am from XYZ city. My attitude is positive and professional.

    • I am from XYZ city

    • My attitude is positive and professional

  • Answered by AI
  • Q2. Can you join immediately
  • Ans. 

    Yes, I can join immediately.

    • Yes, I am available to start right away.

    • I have no prior commitments that would prevent me from starting immediately.

    • I am excited about the opportunity and ready to hit the ground running.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Technical persons are rude so as hr as well, Neetu was constantly not responsive very rude recruiter
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - One-on-one 

(1 Question)

  • Q1. Questions on OOPS, Core Concepts of C#, SQL
Round 2 - One-on-one 

(1 Question)

  • Q1. Questions on System Design and tricky questions on OOPS
Round 3 - HR 

(1 Question)

  • Q1. Previous organization work culture and expectations
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was consisted of cloud, docker related questions and some logical questions. There were 5 coding questions 3 were easy level coding questions and 2 were on sql schema realated quetions.

Round 2 - Group Discussion 

GD was good HR was too supportive everyone got chance to keep and express their points.

Round 3 - Technical 

(2 Questions)

  • Q1. Oops related questions
  • Q2. Sql and some php related questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Coding Test 

There will be 3 coding questions given to us for solving,we need solve two questions compulsory.

Round 2 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a software engineer with 5 years of experience in developing web applications using Java, Spring, and Angular.

    • 5 years of experience in software development

    • Proficient in Java, Spring, and Angular

    • Strong problem-solving skills

  • Answered by AI
  • Q2. Questions related to frontend
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Reverse Linked List
Pallindrome of String

Round 2 - Group Discussion 

Flyover building in team with strength

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Standard question on linked list and tres

Round 2 - Coding Test 

Long coding test for system test lld

I was interviewed in May 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 120 Minutes
Round difficulty - Easy

  • Q1. 

    Rectangle Area Calculation

    Given a list of rectangles, where each rectangle is represented by an array of four integers indicating its bottom-left and top-right corners, calculate the total area covered b...

  • Ans.  Coordinate Compression
    • As we can have only 200 distinct rectangles with us so we don’t need to worry about point constraint, we can use the coordinate compression technique to map these points all The x-axis points and y-axis points as well.
    • Now these mapped coordinates can be used to form our grid. we can make a grid grid[x][y] = True for rx1 <= x < rx2 and ry1 <= y < ry2. Where rx1 , rx2, ry1, ry2 correspo...
  • Answered Anonymously
Round 2 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Oops concepts and 1 DSA problem

  • Q1. 

    Bit Set Problem Statement

    You are provided with a string, termed as DIGIT_PATTERN, which consists solely of digits. The objective is to identify the first digit that repeats in the sequence. If there's no...

  • Ans. Brute Force

    The basic idea of the approach is that we iterate for each index ‘i’ digit in the string ‘DIGIT_PATTERN’, and store the occurrence of that digit in the array/list ‘store’. At any index ‘i’, if the occurrence of the digit is already 1 in the array/list ‘store’, then we would return that digit Or else if the digit has occurred for the first time in the iteration then make the value 1 at index ‘digit’ in the ar...

  • Answered Anonymously
Round 3 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Firstly Some general questions and then suddenly a cosing question with modifications

  • Q1. 

    Print All Permutations of a String

    Given an input string STR, generate and print all possible permutations of the string.

    Input:

    str

    Output:

    All permutations of the input string, each on a new line.

    ...

  • Ans. 

    Recursively solved 1stl one
    Then applied set data structure to solve second one

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from TIET - Thapar Institute of Engineering And Technology. I applied for the job as Software Engineer in GurgaonEligibility criteria7.5 CgpaGreyOrange interview preparation:Topics to prepare for the interview - DSA, OOPs, OS, DBMS, projects, PuzzlesTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : You should be perfect in what you know
Tip 2 : Prepare atleast DSA standard questions very well
Tip 3 : Don't ignore OOPs, they are asked very frequently.

Application resume tips for other job seekers

Tip 1 : Add good projects
Tip 2 : Must mention all your coding profiles and github where you worked.

Final outcome of the interviewSelected

Skills evaluated in this interview

Ideas2IT Technologies Interview FAQs

How many rounds are there in Ideas2IT Technologies Software Engineer interview?
Ideas2IT Technologies interview process usually has 3 rounds. The most common rounds in the Ideas2IT Technologies interview process are Aptitude Test, Technical and One-on-one Round.
How to prepare for Ideas2IT Technologies Software Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Ideas2IT Technologies. The most common topics and skills that interviewers at Ideas2IT Technologies expect are Data Architecture, Data Modeling, Data migration, NoSQL and PAAS.
What are the top questions asked in Ideas2IT Technologies Software Engineer interview?

Some of the top questions asked at the Ideas2IT Technologies Software Engineer interview -

  1. Two coding questi...read more
  2. Two puzzle and...read more
  3. Subject and proj...read more

Tell us how to improve this page.

Ideas2IT Technologies Software Engineer Interview Process

based on 2 interviews

Interview experience

2.5
  
Poor
View more
Ideas2IT Technologies Software Engineer Salary
based on 49 salaries
₹3 L/yr - ₹10.4 L/yr
27% less than the average Software Engineer Salary in India
View more details

Ideas2IT Technologies Software Engineer Reviews and Ratings

based on 17 reviews

3.5/5

Rating in categories

3.6

Skill development

3.2

Work-life balance

3.2

Salary

4.2

Job security

3.0

Company culture

3.3

Promotions

3.3

Work satisfaction

Explore 17 Reviews and Ratings
Senior Software Engineer
148 salaries
unlock blur

₹6.3 L/yr - ₹19 L/yr

Technical Analyst
72 salaries
unlock blur

₹10 L/yr - ₹24 L/yr

Senior Technical Analyst
56 salaries
unlock blur

₹11 L/yr - ₹27.5 L/yr

Software Engineer
49 salaries
unlock blur

₹3 L/yr - ₹10.4 L/yr

Senior Test Engineer
33 salaries
unlock blur

₹6.5 L/yr - ₹15 L/yr

Explore more salaries
Compare Ideas2IT Technologies with

Freshworks

3.5
Compare

Zoho

4.3
Compare

TCS

3.7
Compare

Wipro

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