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 Senior Software Engineer Interview Questions and Answers

Updated 7 Aug 2024

Ideas2IT Technologies Senior Software Engineer Interview Experiences

5 interviews found

I applied via Approached by Company and was interviewed before Aug 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. 1 What’s functional interface and benefits. 2 Transaction uses and different propagation level.
  • Ans. 

    Functional interface is an interface with only one abstract method. Benefits include lambda expressions and improved code readability.

    • Functional interface allows for the use of lambda expressions, which can simplify code and improve readability.

    • It also enables the use of method references, which can make code more concise.

    • Functional interfaces are used extensively in Java 8's Stream API.

    • Transaction uses include ensurin...

  • Answered by AI
  • Q2. Different isolation levels in transactions labels and purpose.
  • Ans. 

    Different isolation levels in transactions and their purpose.

    • Isolation levels determine how transactions interact with each other.

    • READ UNCOMMITTED: Allows dirty reads, can cause phantom reads.

    • READ COMMITTED: Prevents dirty reads, but allows non-repeatable reads.

    • REPEATABLE READ: Prevents dirty and non-repeatable reads, but allows phantom reads.

    • SERIALIZABLE: Prevents all three types of reads, but can cause deadlock.

    • Purpo...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Never give up..

Skills evaluated in this interview

I applied via Approached by Company and was interviewed in Sep 2022. There were 3 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 tips
Round 2 - Technical 

(1 Question)

  • Q1. Attended interview for Java and Spring boot . No direct questions like what is and why ?. All were scenario questions like when to use which collections and more configuration oriented in spring boot. But...
Round 3 - Technical 

(1 Question)

  • Q1. Another Technical round by senior panel. More insights into project and actions performed in the project like what we did and how we did.

Interview Preparation Tips

Topics to prepare for Ideas2IT Technologies Senior Software Engineer interview:
  • Java
  • Spring Boot
  • Microservices
Interview preparation tips for other job seekers - Be Strong in basics. They want to know if you are able to understand concepts and present it well.

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q2. Pascal's Triangle Construction You are provided with an integer ' ... read more
Q3. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in Info Edge
Q4. Buy and Sell Stock Problem Statement Imagine you are Harshad Meht ... read more
asked in DBS Bank
Q5. Tell me about yourself. What technology are you using? What is a ... read more

Senior Software Engineer Interview Questions & Answers

user image Venkatesh Rajendran

posted on 7 Aug 2024

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

I applied via Walk-in and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Print Patterns in any programming language

Round 2 - One-on-one 

(3 Questions)

  • Q1. Java basic questions
  • Q2. Object oriented programming
  • Q3. Microservices questions
Round 1 - Technical 

(2 Questions)

  • Q1. About framework cucumber
  • Q2. About selenium automation
Round 2 - HR 

(1 Question)

  • Q1. Career growth in comoany

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice company to work in ideas2it very good envirement.

Ideas2IT Technologies interview questions for designations

 Software Engineer

 (1)

 Software Engineer Trainee

 (12)

 Software Developer

 (8)

 Software Developer Trainee

 (2)

 Junior Software Developer

 (1)

 Platform Engineer

 (1)

 Devops Engineer

 (1)

 Senior Technical Analyst

 (1)

I applied via Naukri.com and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Scenario based questions to test our experience.
Round 2 - Technical 

(1 Question)

  • Q1. Technical questions and puzzles.

Interview Preparation Tips

Interview preparation tips for other job seekers - Questions are tricky and might have multiple answers. They will examine our thinking capacity in that.

Interview questions from similar companies

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

(2 Questions)

  • Q1. Backend Questions regarding
  • Q2. UI Questions regarding Angular

Interview Preparation Tips

Interview preparation tips for other job seekers - Good
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(5 Questions)

  • Q1. 1) OOP Concepts
  • Q2. Difference between Abstract class and interface
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructors, fields, and methods, while interface cannot have any of these.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Abstract classes are used to provide a common base for multiple classes, while interfaces are used to define a contract for ...

  • Answered by AI
  • Q3. Mysql Concepts and Mysql queries
  • Q4. Logical questions on Array and String Functions in PHP
  • Q5. File handling functions such as fread, fopen, fclose etc and logical string function questions on file data.
Round 2 - Technical 

(5 Questions)

  • Q1. All Scenario based questions
  • Q2. OOP Concepts in deep
  • Ans. 

    OOP Concepts refer to the principles of Object-Oriented Programming, including encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (object).

    • Inheritance: Allowing a class to inherit properties and behavior from another class.

    • Polymorphism: The ability for objects of different classes to respond to the same message in different ways...

  • Answered by AI
  • Q3. Software design pattern related questions
  • Q4. Small Logical programs
  • Q5. Database queries in deep
  • Ans. 

    Database queries involve retrieving, updating, and manipulating data stored in a database.

    • Database queries are used to retrieve specific data from a database based on certain criteria.

    • Queries can also be used to update existing data or insert new data into the database.

    • SQL (Structured Query Language) is commonly used to write database queries.

    • Examples of database queries include SELECT, INSERT, UPDATE, and DELETE state

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Reverse link list
  • Q2. Count number of digits
  • Ans. 

    Count the number of digits in a given string

    • Iterate through each character in the string

    • Check if the character is a digit using isdigit() function

    • Increment a counter if the character is a digit

    • Return the final count of digits

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What is Apache Kafka?
  • Ans. 

    Apache Kafka is a distributed streaming platform used for building real-time data pipelines and streaming applications.

    • Apache Kafka is designed to handle high-throughput, fault-tolerant, and scalable real-time data streams.

    • It allows for the publishing and subscribing to streams of records, similar to a message queue.

    • Kafka is often used for log aggregation, stream processing, event sourcing, and real-time analytics.

    • It p...

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. How do you manage stress?

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Coding Test 

It started with basic introduction, than move ahead with Java, Spring boot question in the end, he asked one leetcode medium question based on DP . Ques : Find a minimum number of jumps required to reach the end of the array, and each index , it can jump arr[index] time at max, you need to calculate minimum number of steps required to reach at the end.

Interview Preparation Tips

Interview preparation tips for other job seekers - Java , Spring boot and Data structures
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Domain related questions
  • Q2. Configuration pf stack

Ideas2IT Technologies Interview FAQs

How many rounds are there in Ideas2IT Technologies Senior Software Engineer interview?
Ideas2IT Technologies interview process usually has 2-3 rounds. The most common rounds in the Ideas2IT Technologies interview process are Technical, HR and Resume Shortlist.
How to prepare for Ideas2IT Technologies Senior 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 Banking Operations, DAO, Design Patterns, Factory and Java.
What are the top questions asked in Ideas2IT Technologies Senior Software Engineer interview?

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

  1. 1 What’s functional interface and benefits. 2 Transaction uses and different ...read more
  2. Different isolation levels in transactions labels and purpo...read more
  3. Attended interview for Java and Spring boot . No direct questions like what is ...read more

Tell us how to improve this page.

Ideas2IT Technologies Senior Software Engineer Interview Process

based on 1 interview

1 Interview rounds

  • Technical Round
View more
Ideas2IT Technologies Senior Software Engineer Salary
based on 149 salaries
₹7.5 L/yr - ₹19 L/yr
16% less than the average Senior Software Engineer Salary in India
View more details

Ideas2IT Technologies Senior Software Engineer Reviews and Ratings

based on 19 reviews

3.7/5

Rating in categories

3.7

Skill development

4.1

Work-life balance

3.8

Salary

4.0

Job security

4.0

Company culture

3.5

Promotions

3.5

Work satisfaction

Explore 19 Reviews and Ratings
Senior Software Engineer
149 salaries
unlock blur

₹7.5 L/yr - ₹19 L/yr

Technical Analyst
72 salaries
unlock blur

₹10 L/yr - ₹24 L/yr

Senior Technical Analyst
57 salaries
unlock blur

₹13 L/yr - ₹28.2 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