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

Filter interviews by

Ideas2IT Technologies Interview Questions, Process, and Tips

Updated 26 Oct 2024

Top Ideas2IT Technologies Interview Questions and Answers

View all 20 questions

Ideas2IT Technologies Interview Experiences

Popular Designations

49 interviews found

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

I applied via Walk-in and was interviewed in Jul 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

There was an basic question in Aptitude

Round 2 - Group Discussion 

They told me to tell about social media goods and Bad in Future

Round 3 - Coding Test 

Array Questions,Number Coadings,Basics of OOPS

Round 4 - HR 

(2 Questions)

  • Q1. Tell about yourself
  • Ans. 

    I am a passionate software developer with experience in building web applications using various technologies.

    • Experienced in developing web applications using HTML, CSS, JavaScript, and frameworks like React and Angular

    • Proficient in backend development with Node.js and databases like MongoDB and MySQL

    • Familiar with version control systems like Git and deployment tools like Heroku

    • Strong problem-solving skills and ability

  • Answered by AI
  • Q2. They are logical question, Cake Question

Interview Preparation Tips

Interview preparation tips for other job seekers - Be rdy to Answer for all Question.....don't scare

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Its very easyier than we thing

Round 2 - Coding Test 

Palindrome ,evenor odd numbers count in any languagess

Interview Preparation Tips

Interview preparation tips for other job seekers - be brave always to answer in any suituation

Software Engineer Trainee Interview Questions asked at other Companies

Q1. Palindromic Linked List Problem Statement Given a singly linked list of integers, determine if it is a palindrome. Return true if it is a palindrome, otherwise return false. Example: Input: 1 -> 2 -> 3 -> 2 -> 1 -> NULL Outpu... read more
View answer (1)
Ideas2IT Technologies Interview Questions and Answers for Freshers
illustration image

Software Engineer Trainee Interview Questions & Answers

user image Dharshini Nathamuni

posted on 10 Jul 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Easy questions only
Focus on patterns, time and speed, age problems, work and time
25 questions will be given. It'll be at the office. They'll explain about the company objectives clearly and then the aptitude test.

Round 2 - Coding Test 

Go with basic coding knowledge and syntax knowledge. If not pseudo code will be considered

Interview Preparation Tips

Interview preparation tips for other job seekers - They'll treat you good and every one there are friendly

Software Engineer Trainee Interview Questions asked at other Companies

Q1. Palindromic Linked List Problem Statement Given a singly linked list of integers, determine if it is a palindrome. Return true if it is a palindrome, otherwise return false. Example: Input: 1 -> 2 -> 3 -> 2 -> 1 -> NULL Outpu... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic questions from maths to english

Round 2 - Coding Test 

Coding questions with an puzzle

Graduate Engineer Trainee (Get) Interview Questions asked at other Companies

Q1. Q: 1 What is IC engine? What is the types of IC engine? Q:2 Difference between Otto cycle and Diesel cycle? What is the process of both cycle and what is the effeciency of both cycle ? Which one is good in effeciency? Q:3 Difference between... read more
View answer (2)

Ideas2IT Technologies interview questions for popular designations

 Software Engineer Trainee

 (12)

 Software Developer

 (8)

 Senior Software Engineer

 (5)

 Data Scientist

 (2)

 Technical Architect

 (2)

 Software Developer Trainee

 (2)

 Java Developer

 (2)

 Software Engineer

 (1)

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Company Website and was interviewed in Oct 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all Resume tips
Round 2 - Aptitude Test 

Online basic aptitude test

Round 3 - Technical 

(1 Question)

  • Q1. Included solving logical questions, puzzle and programming questions and then one on one technical interview
Round 4 - HR 

(1 Question)

  • Q1. Again you would be asked to solve logics, puzzles and programming questions and questions about yourself and the projects you have done

Interview Preparation Tips

Interview preparation tips for other job seekers - I attended the interview and even got mail saying i got selected and they asked my docs for document verification.
But after 2 weeks they said they are not going to hire anyone because the management is going to change their hiring process.
*It's totally waste of time to attend the interview here*
"You will not be hired even after you went through all the interviews and passed all the screening tests"

Software Engineer Trainee Interview Questions asked at other Companies

Q1. Palindromic Linked List Problem Statement Given a singly linked list of integers, determine if it is a palindrome. Return true if it is a palindrome, otherwise return false. Example: Input: 1 -> 2 -> 3 -> 2 -> 1 -> NULL Outpu... read more
View answer (1)

Get interview-ready with Top Ideas2IT Technologies Interview Questions

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

(2 Questions)

  • Q1. Debouncing in react
  • Ans. 

    Debouncing in React is a technique used to limit the number of times a function is called in a specified time frame.

    • Debouncing helps in improving performance by reducing unnecessary function calls.

    • It is commonly used in scenarios like search bars where we want to wait for user to finish typing before making an API call.

    • Example: Using lodash debounce function to delay API call until user stops typing.

  • Answered by AI
  • Q2. Throttling in react
  • Ans. 

    Throttling in React helps limit the number of times a function is called within a specified time frame.

    • Throttling is used to improve performance by reducing the number of times a function is executed.

    • It is commonly used in scenarios like handling scroll events or input changes.

    • Example: Using lodash's throttle function to limit the rate of execution of a function.

  • Answered by AI
Round 2 - Coding Test 

Basic in array and function and es6 concepts

Skills evaluated in this interview

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing Array Problem Statement Given an integer array ARR of size N, determine if it can be transformed into a non-decreasing array by modifying at most one element. An array is defined as non-decreasing if ARR[i] <= ARR[i + 1] f... read more
View answer (3)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

I was just attend the interview online. They share the apps link all are mcq questions.

Round 2 - Coding Test 

Video conference. Questions based on Array Matrix, String

Round 3 - One-on-one 

(1 Question)

  • Q1. They asked basic questions in programming

Software Engineer Trainee Interview Questions asked at other Companies

Q1. Palindromic Linked List Problem Statement Given a singly linked list of integers, determine if it is a palindrome. Return true if it is a palindrome, otherwise return false. Example: Input: 1 -> 2 -> 3 -> 2 -> 1 -> NULL Outpu... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Apr 2024.

Round 1 - Aptitude Test 

Basic Aptitude questions computer based, prepare from interviewbit website

Round 2 - Coding Test 

Basic programming questions and puzzle from interviewbit, indeed, geekforgeeks

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was easy
You can clear with the basic knowledge

Round 2 - Coding Test 

Easy coding test it was also medium

Round 3 - Coding Test 

Moderate it was difficult round

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic knowledge of programming and critical thinking

Software Engineer Trainee Interview Questions asked at other Companies

Q1. Palindromic Linked List Problem Statement Given a singly linked list of integers, determine if it is a palindrome. Return true if it is a palindrome, otherwise return false. Example: Input: 1 -> 2 -> 3 -> 2 -> 1 -> NULL Outpu... read more
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was quite easy and simple questions

Round 2 - Coding Test 

In this round, phone number coding question is given and a puzzle question

Interview Preparation Tips

Topics to prepare for Ideas2IT Technologies Graduate Trainee interview:
  • Programming
Interview preparation tips for other job seekers - Focus on problem solving and puzzle questions

Graduate Trainee Interview Questions asked at other Companies

Q1. Given an array, how do you get the count of pairs that sum to even
View answer (8)
Contribute & help others!
anonymous
You can choose to be anonymous

Ideas2IT Technologies Interview FAQs

How many rounds are there in Ideas2IT Technologies interview?
Ideas2IT Technologies interview process usually has 2-3 rounds. The most common rounds in the Ideas2IT Technologies interview process are Coding Test, Aptitude Test and Technical.
How to prepare for Ideas2IT Technologies 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 Java, Python, Javascript, AWS and Microservices.
What are the top questions asked in Ideas2IT Technologies interview?

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

  1. Devise a though process and using that, arrive at an approximate number of the ...read more
  2. What’s functional interface and uses. Server side and client side load balanc...read more
  3. Transactional levels and propagation labels cases. Find the sequence of Substri...read more
How long is the Ideas2IT Technologies interview process?

The duration of Ideas2IT Technologies interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

SALARIES

Velocity Software Solutions

JOBS

Ideas2IT Technologies

No Jobs

INTERVIEWS

Ajanta Pharma

No Interviews

SALARIES

Velocity Software Solutions

No Salaries

INTERVIEWS

Roljobs Technology Services

No Interviews

INTERVIEWS

Ajanta Pharma

60 top interview questions

INTERVIEWS

Ajanta Pharma

No Interviews

SALARIES

Velocity Software Solutions

SALARIES

Velocity Software Solutions

Tell us how to improve this page.

Ideas2IT Technologies Interview Process

based on 36 interviews

Interview experience

3.7
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Zoho Interview Questions
4.3
 • 505 Interviews
Freshworks Interview Questions
3.5
 • 155 Interviews
View all

Ideas2IT Technologies Reviews and Ratings

based on 141 reviews

3.8/5

Rating in categories

3.9

Skill development

3.7

Work-life balance

3.8

Salary

4.1

Job security

3.6

Company culture

3.6

Promotions

3.6

Work satisfaction

Explore 141 Reviews and Ratings
Senior Software Engineer
151 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Analyst
73 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Technical Analyst
57 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
50 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Test Engineer
33 salaries
unlock blur

₹0 L/yr - ₹0 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
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent