Upload Button Icon Add office photos
Engaged Employer

i

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

To Increase Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

To Increase Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Based on Data Structures- Basic question like strings, stacks and Linked List
Round 2 - Technical 

(1 Question)

  • Q1. This interview included DSA, Conceptual and Database Questions- It was one level harder than 1st round
Round 3 - Technical 

(1 Question)

  • Q1. This round was with architect and it was also related to DSA and databse
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Concat two LinkedList without using any space and in O(n) time
  • Ans. 

    Concatenate two LinkedList without using extra space in O(n) time

    • Traverse the first LinkedList and update the last node's next pointer to the head of the second LinkedList

    • Return the head of the first LinkedList as the concatenated LinkedList

  • Answered by AI
  • Q2. 2 Sql Queries -1] rank window function 2] join
  • Q3. Project focused
Round 2 - Technical 

(3 Questions)

  • Q1. Discussion about Interfaces
  • Q2. Discussion about Dependency Injection in .net
  • Q3. Multiple .net questions
Round 3 - Technical 

(5 Questions)

  • Q1. Create Data structure to store file system like tree. it should get used for file and folder both.? find count of files in folder ?
  • Q2. Redis cache system
  • Q3. System designing Discussion
  • Q4. Dependency Injection discussion
  • Q5. Project in depth discussion
Round 4 - Behavioral 

(2 Questions)

  • Q1. Project Focused questions
  • Q2. What are your contributions in projects
  • Ans. 

    I have contributed to various projects by developing new features, fixing bugs, and optimizing code.

    • Developed new features based on client requirements

    • Fixed bugs reported by QA team

    • Optimized code for better performance

    • Collaborated with team members to meet project deadlines

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Energy Exemplar Software Engineer interview:
  • SQL
  • Data Structures
  • C#.Net

Skills evaluated in this interview

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

(1 Question)

  • Q1. Design patterns
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Coding Test 

It was a mcq + coding round with computer fundamentals and aptitude + easy-medium level dsa questions.

Round 2 - Aptitude Test 

It was an offline aptitute test with 30 questions for 30 minutes.

Round 3 - Technical 

(4 Questions)

  • Q1. Detect a loop in the linked list
  • Ans. 

    Detect a loop in a linked list by using Floyd's Cycle Detection Algorithm

    • Use two pointers, slow and fast, to traverse the linked list

    • If there is a loop, the fast pointer will eventually meet the slow pointer

    • Initialize slow and fast pointers at the head of the linked list

    • Move slow pointer by one step and fast pointer by two steps in each iteration

    • If the fast pointer reaches the end of the list or meets the slow pointer,

  • Answered by AI
  • Q2. Find the unique element in an array
  • Ans. 

    Find the unique element in an array of strings

    • Iterate through the array and use a hashmap to store the frequency of each element

    • After iterating, check the hashmap for elements with frequency 1 to find the unique element

  • Answered by AI
  • Q3. Tell about your projects
  • Ans. 

    I have worked on various projects including a web application for a local business and a mobile app for tracking daily habits.

    • Developed a web application using HTML, CSS, and JavaScript for a local business to manage their inventory and sales.

    • Created a mobile app using React Native to track daily habits and provide reminders for healthy routines.

    • Collaborated with a team to implement new features and fix bugs in existin...

  • Answered by AI
  • Q4. Write a MySQL query for selecting the id of second highest salary from employee table
  • Ans. 

    MySQL query to select the id of second highest salary from employee table

    • Use ORDER BY clause to sort salaries in descending order

    • Use LIMIT to select the second row

    • Use a subquery to avoid duplicates if multiple employees have the same salary

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Energy Exemplar Associate Software Engineer interview:
  • RDBMS
  • Frontend
  • DSA
  • System Design

Skills evaluated in this interview

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

(4 Questions)

  • Q1. Create basic react app with dummy data fetched from JSON API
  • Ans. 

    Create a basic React app with dummy data fetched from a JSON API.

    • Set up a new React project using create-react-app

    • Create a component to fetch data from a JSON API using fetch or axios

    • Display the fetched data in the component

  • Answered by AI
  • Q2. Array methods and Flatten array
  • Q3. Event loop
  • Q4. HTML and Javascript basics
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Normal Aptitude and Basics of the Computer Core Questions

Round 2 - Technical 

(2 Questions)

  • Q1. Tell about Yourself
  • Ans. 

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

    • 5 years of experience in software development

    • Proficient in Java, Spring Boot, and Angular

    • Strong problem-solving skills

    • Experience working in Agile development environment

    • Passionate about learning new technologies

  • Answered by AI
  • Q2. Write the code abt the right binary tree?
Round 3 - HR 

(1 Question)

  • Q1. Normal Hr Questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

General aptitude questions and technical questions

Round 2 - Technical 

(2 Questions)

  • Q1. Array data structure based programming question
  • Q2. Object Oriented Programming concepts
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 Sep 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. SQL Questions - Constraints- how to optimize long SQL query without changing the output
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Sql mcq questions with medium difficulty

Round 2 - Technical 

(1 Question)

  • Q1. What is inheritance? What are advantages of oops? What's indexing in sql?
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Advantages of OOPs include reusability, modularity, and flexibility in code design.

    • Indexing in SQL is a way to optimize database queries by creating indexes on columns to improve search performance.

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

(1 Question)

  • Q1. What was your previous job role? What methodologies did you follow while working?
  • Ans. 

    I was a Software Developer at XYZ Company. I followed Agile and Scrum methodologies.

    • Worked as a Software Developer at XYZ Company

    • Followed Agile and Scrum methodologies for project management

    • Participated in daily stand-up meetings, sprint planning, and retrospectives

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. What are you leaving your current organization?
  • Ans. 

    Seeking new challenges and opportunities for growth.

    • Looking for new challenges and opportunities for professional growth

    • Interested in working on different technologies or projects

    • Seeking a more collaborative or innovative work environment

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

I applied via Campus Placement and was interviewed in Aug 2024. There were 6 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. DSA questions & SQL queries
Round 2 - Technical 

(1 Question)

  • Q1. Again dsa round
Round 3 - Behavioral 

(1 Question)

  • Q1. HR + general questions based on internship, projects, etc
Round 4 - Technical 

(1 Question)

  • Q1. DSA questions & SQL queries
Round 5 - Technical 

(1 Question)

  • Q1. Again dsa round
Round 6 - Behavioral 

(1 Question)

  • Q1. HR + general questions based on internship, projects, etc

To Increase Interview FAQs

How to prepare for To Increase 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 To Increase. The most common topics and skills that interviewers at To Increase expect are Microsoft Dynamics AX, microsoft, X++, Microsoft Dynamics and ERP.

Tell us how to improve this page.

Interview Questions from Similar Companies

CyberArk Interview Questions
4.0
 • 13 Interviews
Exotel Interview Questions
3.1
 • 12 Interviews
Narvar India Interview Questions
3.4
 • 11 Interviews
PlanSource Interview Questions
3.7
 • 10 Interviews
Vanenburg Interview Questions
3.9
 • 10 Interviews
Ivalua Interview Questions
3.8
 • 8 Interviews
Unbxd Interview Questions
4.0
 • 6 Interviews
View all

To Increase Reviews and Ratings

based on 10 reviews

3.7/5

Rating in categories

3.3

Skill development

4.1

Work-life balance

3.4

Salary

3.4

Job security

3.8

Company culture

2.9

Promotions

3.3

Work satisfaction

Explore 10 Reviews and Ratings
AI Data Architect

Hyderabad / Secunderabad,

Chennai

2-4 Yrs

Not Disclosed

Senior Software Engineer D365FO

Hyderabad / Secunderabad,

Chennai

8-12 Yrs

Not Disclosed

Software Engineer - D365FO

Hyderabad / Secunderabad,

Chennai

5-8 Yrs

₹ 9.88-21.5 LPA

Explore more jobs
Product Owner
6 salaries
unlock blur

₹9.2 L/yr - ₹28.3 L/yr

Software Engineer
4 salaries
unlock blur

₹9.9 L/yr - ₹21.5 L/yr

Product Manager
4 salaries
unlock blur

₹27.5 L/yr - ₹31.1 L/yr

Marketing Manager
4 salaries
unlock blur

₹24.8 L/yr - ₹26 L/yr

Senior Functional Consultant
4 salaries
unlock blur

₹16 L/yr - ₹25 L/yr

Explore more salaries
Compare To Increase with

Exotel

3.1
Compare

Azuga Telematics

3.4
Compare

Flixstock

2.4
Compare

World Fashion Exchange

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