Upload Button Icon Add office photos
Engaged Employer

i

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

Ingenx Technology Verified Tick

Compare button icon Compare button icon Compare
4.5

based on 14 Reviews

Filter interviews by

Ingenx Technology Associate Consultant Interview Questions and Answers

Updated 26 Jul 2024

Ingenx Technology Associate Consultant Interview Experiences

1 interview found

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

(3 Questions)

  • Q1. What is ui5 ?
  • Ans. 

    UI5 is a JavaScript UI library developed by SAP for building web applications.

    • UI5 stands for User Interface 5.

    • It is based on HTML5, CSS3, and JavaScript.

    • UI5 follows the Model-View-Controller (MVC) design pattern.

    • It provides a rich set of controls and features for building responsive web applications.

    • UI5 is commonly used for developing enterprise applications.

  • Answered by AI
  • Q2. How you can navigate one application to another in ui5.
  • Ans. 

    You can navigate from one application to another in UI5 by using routing and navigation controls.

    • Define routes in manifest.json file

    • Use Router class to navigate between views

    • Use NavContainer control for navigating between different applications

  • Answered by AI
  • Q3. What is search help in ui5
  • Ans. 

    Search help in UI5 is a feature that provides suggestions or options to users while they are searching for information.

    • Search help can be used to enhance user experience by providing auto-complete suggestions or filtering options.

    • It can be implemented using the sap.m.SearchField control in UI5.

    • Search help can be customized to display different suggestions based on user input.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Thanks

Skills evaluated in this interview

Interview questions from similar companies

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

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

Round 1 - Technical 

(5 Questions)

  • Q1. Difference between display none, visibility hidden and opacity 0 in CSS
  • Ans. 

    display none hides the element completely, visibility hidden hides the element but still takes up space, opacity 0 makes the element transparent.

    • display none removes the element from the layout

    • visibility hidden hides the element but it still occupies space

    • opacity 0 makes the element transparent but still occupies space

    • Example: display: none; visibility: hidden; opacity: 0;

  • Answered by AI
  • Q2. Write a polyfill for javascript method "filter"
  • Ans. 

    Polyfill for JavaScript method 'filter'

    • Create a function called 'filter' that takes a callback function as an argument

    • Loop through the array and apply the callback function to each element

    • If the callback function returns true, add the element to a new array and return it

  • Answered by AI
  • Q3. Explain ShadowDOM
  • Ans. 

    Shadow DOM is a way to encapsulate the styling and structure of a web component, preventing styles from leaking out and clashing with the rest of the page.

    • Shadow DOM allows for creating self-contained components with their own DOM tree and styling.

    • It helps in preventing styles from the main document affecting the component and vice versa.

    • Shadow DOM can be created using the 'attachShadow' method in JavaScript.

    • It is comm...

  • Answered by AI
  • Q4. Explain Currying in Javascript
  • Ans. 

    Currying is a technique in JavaScript where a function with multiple arguments is transformed into a sequence of functions, each taking a single argument.

    • Currying allows you to create reusable functions with partial application of arguments.

    • It helps in creating more flexible and composable functions.

    • Example: const add = (a) => (b) => a + b; const add5 = add(5); console.log(add5(3)); // Output: 8

  • Answered by AI
  • Q5. What is Event Deligation in javascript
  • Ans. 

    Event delegation in JavaScript is a technique where a single event listener is attached to a parent element to handle events for multiple child elements.

    • Event delegation helps improve performance by reducing the number of event listeners.

    • It is useful for dynamically created elements or elements with similar behavior.

    • Event delegation works by utilizing event bubbling, where events on child elements bubble up to the pare

  • Answered by AI

Interview Preparation Tips

Topics to prepare for TCS Associate Consultant interview:
  • Javascript Basics
  • React.Js
  • Javascript
Interview preparation tips for other job seekers - Having deep knowledge in Javascript is must for React.JS interview.

Skills evaluated in this interview

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

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

Round 1 - Technical 

(8 Questions)

  • Q1. Explain multithreading and stages of multithreading
  • Ans. 

    Multithreading is the ability of a CPU to execute multiple threads concurrently, allowing for better utilization of resources.

    • Multithreading allows for parallel execution of multiple tasks within a single process.

    • Stages of multithreading include thread creation, thread scheduling, and thread synchronization.

    • Examples of multithreading include running multiple applications simultaneously on a computer or processing multi

  • Answered by AI
  • Q2. If there are 5 tasks, how to write a code so that the 5 tasks are run simultaneously
  • Ans. 

    To run 5 tasks simultaneously, use multithreading or multiprocessing in the code.

    • Use multithreading or multiprocessing to create separate threads or processes for each task.

    • Ensure proper synchronization and communication between the threads/processes if needed.

    • Consider using a thread pool or process pool for efficient resource management.

    • Example: In Python, you can use the 'threading' or 'multiprocessing' module to ach

  • Answered by AI
  • Q3. Questions about REST API(difference between @RequestParam and @PathVariable). Tell some annotations which were used in my project
  • Q4. Exception Handling in spring boot
  • Ans. 

    Exception handling in Spring Boot allows developers to handle errors gracefully and provide meaningful responses to users.

    • Use @ControllerAdvice to handle exceptions globally

    • Use @ExceptionHandler to handle specific exceptions

    • Return custom error messages or responses to users

  • Answered by AI
  • Q5. Deployment process in my project
  • Ans. 

    Our deployment process involves continuous integration and automated testing before deployment to production.

    • We use Jenkins for continuous integration to automatically build and test code changes.

    • Once the code passes automated tests, it is deployed to a staging environment for further testing.

    • After successful testing in staging, the code is deployed to production using automated deployment scripts.

    • We use version contro

  • Answered by AI
  • Q6. Object class in java(name some methods and follow up questions on that. Difference between == and equals())
  • Q7. DDL and DML commands in SQL
  • Ans. 

    DDL commands are used to define or modify the structure of database objects, while DML commands are used to manage data within those objects.

    • DDL commands include CREATE, ALTER, DROP, TRUNCATE, etc.

    • DML commands include INSERT, UPDATE, DELETE, SELECT, etc.

    • DDL commands are used to create or modify tables, indexes, views, etc.

    • DML commands are used to insert, update, delete, or retrieve data from tables.

  • Answered by AI
  • Q8. Microservices question(communication between microservices)

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through your project very nicely. Also please cover basics of java, spring boot , microservices in detail.

Skills evaluated in this interview

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

I applied via Campus Placement

Round 1 - Aptitude Test 

Percentage and averages, number and alphabet series, compound interest (CI) and simple interest (SI).

Round 2 - Coding Test 

Basic programs include: 1. A program to perform the addition of two numbers, 2. A program to print a star pattern, and 3. A program to generate a triangle output, among others.

Round 3 - HR 

(4 Questions)

  • Q1. What challenges did we face?
  • Ans. 

    We faced challenges related to communication, resource allocation, and project timelines.

    • Communication breakdown between team members

    • Limited resources available for the project

    • Struggling to meet project deadlines

  • Answered by AI
  • Q2. Where do you see yourself in the next five years?
  • Ans. 

    In five years, I see myself as a senior consultant leading projects and mentoring junior team members.

    • Advancing to a senior consultant role

    • Leading projects and teams

    • Mentoring junior team members

    • Continuing professional development through training and certifications

  • Answered by AI
  • Q3. What strategies can be employed to overcome failures?
  • Ans. 

    Strategies to overcome failures include learning from mistakes, staying positive, seeking feedback, and setting new goals.

    • Learn from mistakes by analyzing what went wrong and how to improve

    • Stay positive and maintain a growth mindset to bounce back from setbacks

    • Seek feedback from mentors or colleagues to gain different perspectives

    • Set new goals and create a plan to move forward with renewed motivation

  • Answered by AI
  • Q4. Are you able to work effectively under pressure?
  • Ans. 

    Yes, I thrive under pressure and can effectively manage my time and priorities to meet deadlines.

    • I have experience working in fast-paced environments where quick decision-making and adaptability are key.

    • I am able to stay calm and focused under pressure, allowing me to deliver high-quality work even in challenging situations.

    • I prioritize tasks effectively to ensure that deadlines are met without compromising on quality.

    • ...

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Java Based Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - I believe this is one of the best companies for a fresher to learn new concepts and explore various opportunities.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Explain about your project and the stack
  • Q2. Explain about the oops concepts
  • Ans. 

    Object-oriented programming concepts that focus on data encapsulation, inheritance, polymorphism, and abstraction.

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

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

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation detai...

  • Answered by AI
Round 2 - Aptitude Test 

Basics of maths,logical,technical

Round 3 - Technical 

(2 Questions)

  • Q1. Write a code to find the prime number
  • Ans. 

    Code to find prime numbers

    • Iterate through numbers from 2 to n

    • Check if number is divisible by any number from 2 to its square root

    • If not divisible, it is a prime number

  • Answered by AI
  • Q2. SQL questions about select all employees in a dpt
Round 4 - Aptitude Test 

Try on reasoning,basics of maths,oops,dsa etc...

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Group Discussion 

Speaking clearly panel is very silent and track everything

Round 2 - Technical 

(2 Questions)

  • Q1. Binary sort using c++
  • Ans. 

    Binary sort is a search algorithm that finds the position of a target value within a sorted array.

    • Ensure the array is sorted before applying binary search.

    • Compare the target value with the middle element of the array.

    • If the target value is less than the middle element, search the left half of the array. If greater, search the right half.

    • Repeat the process until the target value is found or the subarray is empty.

  • Answered by AI
  • Q2. Area of triangle code
  • Ans. 

    The area of a triangle can be calculated using the formula: 0.5 * base * height

    • Calculate the base and height of the triangle

    • Plug the values into the formula: area = 0.5 * base * height

    • The result will be the area of the triangle

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Comfortable in shifts
  • Ans. 

    Yes, I am comfortable working in shifts and have prior experience doing so.

    • I have previous experience working in shifts at my previous job.

    • I am adaptable and can easily adjust my schedule to accommodate different shifts.

    • I understand the importance of being flexible in a consulting role, which often requires working outside regular office hours.

  • Answered by AI
  • Q2. Strength and weekned

Interview Preparation Tips

Interview preparation tips for other job seekers - Study aptitude and practice coding

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Technical questions L2 level
  • Q2. Technical questions L3 level
Round 2 - Technical 

(2 Questions)

  • Q1. Technical questions
  • Q2. Technical questions L3
Round 3 - HR 

(2 Questions)

  • Q1. Salary expectation
  • Q2. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Whatever CTC final during HR discussion then why not management approved that CTC.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(4 Questions)

  • Q1. About different joins in SQL
  • Q2. 1)About previous projects done in detail 2) Regarding any certification like dp-203 or spark certification 3) spark architecture 4) about delta table
  • Q3. Some questions about adf pipelines scenario based
  • Q4. Spark actions and transformation

Interview Preparation Tips

Topics to prepare for Cognizant Associate Consultant interview:
  • Adf
  • SQL
  • Pyspark
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Group Discussion 

Genpact company established in year 1997 in the city of new york. 1250000 peoples across world wide service 30 countries..

Round 2 - HR 

(5 Questions)

  • Q1. What security policy benefits is in this company
  • Ans. 

    Security job work at office work at home and travel for job .policy health insurance gud terms and conditions to the company For job guidelines for freshers

  • Answered by Sandra shirisha
  • Q2. What is hybrid adìvce in job or work
  • Ans. 

    Hybrid advice in job or work refers to a combination of traditional and modern approaches to problem-solving or decision-making.

    • Hybrid advice involves using both traditional methods and modern technologies to address challenges in the workplace.

    • It combines the wisdom and experience of older employees with the innovative ideas and tools of younger generations.

    • Examples include using a mix of in-person meetings and virtua...

  • Answered by AI
  • Q3. What help us working in company
  • Ans. 

    Community opportunity learning skill development training skills teams work success...

  • Answered by Sandra shirisha
  • Q4. Company were at located some of them area names
  • Q5. Explain company benefits to work and culture in genpact
  • Ans. 

    Genpact offers competitive benefits and a positive work culture for its employees.

    • Genpact provides comprehensive health insurance coverage for employees and their families.

    • Employees have access to professional development opportunities and training programs.

    • The company promotes a diverse and inclusive work environment.

    • Genpact offers flexible work arrangements, such as remote work options.

    • Employees can participate in va

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - communication opportunity to the customer explain the company services suggestions detail to them
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Can you please introduce yourself
  • Ans. 

    I am a recent graduate with a degree in Business Administration and a passion for problem-solving and teamwork.

    • Recent graduate with a degree in Business Administration

    • Passionate about problem-solving and teamwork

  • Answered by AI
  • Q2. What do you mean by Subrogration
  • Ans. 

    Subrogation is the process by which an insurance company seeks reimbursement from the party at fault for a claim it has already paid out.

    • Subrogation allows insurance companies to recover costs from responsible parties.

    • It is commonly used in cases where a third party is liable for damages or injuries covered by an insurance policy.

    • For example, if your car is damaged in an accident caused by another driver, your insuranc...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Why are you looking for change
  • Ans. 

    Seeking new challenges and opportunities for growth in a dynamic environment.

    • Looking to expand my skill set and knowledge in a different industry

    • Seeking a more collaborative work culture

    • Interested in taking on more responsibility and leadership roles

    • Wanting to work on more innovative projects

    • Desire for a better work-life balance

  • Answered by AI
  • Q2. How is your current CTC
  • Ans. 

    My current CTC is competitive for my level of experience and qualifications.

    • My current CTC is in line with industry standards for my role

    • I have received regular salary increments based on my performance

    • I am open to discussing compensation as part of the interview process

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Great

Ingenx Technology Interview FAQs

How many rounds are there in Ingenx Technology Associate Consultant interview?
Ingenx Technology interview process usually has 1 rounds. The most common rounds in the Ingenx Technology interview process are Technical.
What are the top questions asked in Ingenx Technology Associate Consultant interview?

Some of the top questions asked at the Ingenx Technology Associate Consultant interview -

  1. How you can navigate one application to another in u...read more
  2. What is search help in ...read more
  3. What is ui...read more

Tell us how to improve this page.

Ingenx Technology Associate Consultant Salary
based on 7 salaries
₹2.7 L/yr - ₹5.5 L/yr
63% less than the average Associate Consultant Salary in India
View more details

Ingenx Technology Associate Consultant Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

5.0

Skill development

4.0

Work-Life balance

3.0

Salary & Benefits

4.0

Job Security

2.0

Company culture

3.0

Promotions/Appraisal

3.0

Work Satisfaction

Explore 1 Review and Rating
Associate Consultant
7 salaries
unlock blur

₹2.7 L/yr - ₹5.4 L/yr

Consultant
5 salaries
unlock blur

₹3.7 L/yr - ₹12.4 L/yr

Sales Director
5 salaries
unlock blur

₹12 L/yr - ₹28.2 L/yr

SAP Abap Consultant
5 salaries
unlock blur

₹3.8 L/yr - ₹11 L/yr

SAP Fico Consultant
4 salaries
unlock blur

₹2.5 L/yr - ₹5 L/yr

Explore more salaries
Compare Ingenx Technology with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview