Upload Button Icon Add office photos

Filter interviews by

IG Group Technical Architect Interview Questions and Answers

Updated 16 Sep 2022

IG Group Technical Architect Interview Experiences

1 interview found

Technical Architect Interview Questions & Answers

user image madhavi palle

posted on 16 Sep 2022

I appeared for an interview in Aug 2022.

Round 1 - Technical 

(1 Question)

  • Q1. Questions around http request response structure
Round 2 - HR 

(1 Question)

  • Q1. Salary expectation and Location preference

Interview Preparation Tips

Interview preparation tips for other job seekers - Better prepare theory for all the technical questions as they are expecting line by line answers to the questions they ask almost like structure of response port number error course et cetera

Interview questions from similar companies

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

(1 Question)

  • Q1. Explain SOLID design principla
  • Ans. 

    SOLID is a set of five design principles to make software designs more understandable, flexible, and maintainable.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open/Closed Principle: Objects should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Objects of a superclass should be replaceable with objects of its subclasses without affecting the...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What is CQRS pattern
  • Ans. 

    CQRS pattern separates read and write operations in an application

    • CQRS stands for Command Query Responsibility Segregation

    • It separates the read and write operations into two different models

    • Commands are used for write operations, while queries are used for read operations

    • Helps in scaling and improving performance by optimizing each model separately

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Patters for microservice communication
  • Ans. 

    Patterns for microservice communication involve synchronous and asynchronous methods to ensure reliable and efficient communication.

    • Use synchronous communication for simple interactions between services, such as REST APIs.

    • Implement asynchronous communication for more complex interactions, like message queues or event-driven architecture.

    • Consider using a combination of both synchronous and asynchronous communication dep...

  • Answered by AI

Skills evaluated in this interview

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

(3 Questions)

  • Q1. Recursion program
  • Q2. System Design questions based on current project
  • Q3. Micro service design patterns
  • Ans. 

    Micro service design patterns are architectural patterns used to design and implement microservices.

    • Service discovery

    • Circuit breaker

    • API gateway

    • Event sourcing

    • Saga pattern

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(10 Questions)

  • Q1. What is dependency injection?
  • Ans. 

    Dependency injection is a design pattern in which components are given their dependencies rather than creating them internally.

    • Dependency injection helps in achieving loose coupling between classes.

    • It allows for easier testing by mocking dependencies.

    • There are three types of dependency injection: constructor injection, setter injection, and interface injection.

    • Example: Instead of a class creating an instance of another...

  • Answered by AI
  • Q2. What is app.use in .net core?
  • Ans. 

    app.use in .NET Core is used to add middleware to the request pipeline.

    • app.use is a method used in ASP.NET Core to add middleware components to the request pipeline.

    • Middleware components are software components that are executed in the request pipeline to handle requests and responses.

    • Middleware components can perform tasks such as authentication, logging, error handling, and more.

    • Example: app.use(new MiddlewareCompone

  • Answered by AI
  • Q3. What is difference between Interface and abstract class?
  • Ans. 

    Interface is a contract that defines the methods a class must implement, while abstract class can have both abstract and concrete methods.

    • Interface cannot have any implementation, while abstract class can have both abstract and concrete methods.

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

    • Interfaces are used to achieve multiple inheritance in Java, while abstract classes are us...

  • Answered by AI
  • Q4. Boxing Unboxing
  • Q5. ArrayList and List
  • Q6. Can abstract class instantiated?
  • Ans. 

    No, abstract classes cannot be instantiated.

    • Abstract classes are meant to be inherited and extended by other classes.

    • Attempting to instantiate an abstract class will result in a compilation error.

    • Abstract classes can have abstract methods that must be implemented by the subclass.

  • Answered by AI
  • Q7. How to optimize react application?
  • Ans. 

    Optimizing a React application involves code splitting, lazy loading, minimizing bundle size, using memoization, and optimizing render performance.

    • Implement code splitting to load only necessary code for each route or component.

    • Utilize lazy loading to defer loading of non-essential components until they are needed.

    • Minimize bundle size by removing unused code, optimizing images, and using tree shaking.

    • Use memoization te...

  • Answered by AI
  • Q8. Props destructuring?
  • Q9. Parent child component communication in react?
  • Ans. 

    Parent child component communication in React involves passing data from parent to child components and triggering events from child to parent components.

    • Use props to pass data from parent to child components

    • Use callback functions to trigger events from child to parent components

    • Context API can be used for passing data to deeply nested components

  • Answered by AI
  • Q10. What is useRef, useMemo, useCallback?
  • Ans. 

    useRef is used to persist a value across renders, useMemo is used to memoize expensive calculations, useCallback is used to memoize functions.

    • useRef is commonly used to access DOM elements or persist values between renders.

    • useMemo is used to memoize expensive calculations to avoid re-computation.

    • useCallback is used to memoize functions to prevent unnecessary re-renders.

    • Example: useRef can be used to store a reference t...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Most of questions were scenario based, no straight forward questions.
Although you are experienced, you can expect OOPS concept complex questions.
Be prepared with all concepts.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Aug 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 tips
Round 2 - Technical 

(2 Questions)

  • Q1. Core java related questions
  • Q2. Sql how to remove duplicate record from table?
  • Ans. 

    Use a SELECT statement with a GROUP BY clause to remove duplicate records from a table.

    • Use the DISTINCT keyword in a SELECT statement to retrieve unique records.

    • Use the GROUP BY clause with appropriate columns to group duplicate records together.

    • Consider using the ROW_NUMBER() function to assign a unique number to each row and then filter out duplicates based on this number.

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. Career asipiration
Round 4 - HR 

(1 Question)

  • Q1. Salary expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - its a product based company. can plan to settle for long term if good knowledge on product is acquired. office is daily and not hybrid or wfh.

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. Problem solving questions
  • Q2. Approach and reasonable number
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. Core java, design patterns
  • Q2. Java 8, spring boot, microservices

I applied via Campus Placement and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics of java(OOP, strings and collections), college projects, and how I was involved in that projects.

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview was a bit easy as the company came to college, they asked only the basics of java and my college projects and some HR-related questions like tell me about yourself and some time management questions about the projects and academics.

I applied via Referral and was interviewed in Feb 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Why you want to switch in same Industry.

Interview Preparation Tips

Interview preparation tips for other job seekers - For growth opportunity which I assume that PayU would provide me.
I want to grow in the same Industry and still explore myself.

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Easy

Nice environment

  • Q1. 

    Zigzag Traversal of Binary Tree

    Given a binary tree with integer values in its nodes, your task is to print the zigzag traversal of the tree.

    Note:

    In zigzag order, level 1 is printed from left to right...
  • Ans. 

    Implement a function to print the zigzag traversal of a binary tree.

    • Traverse the tree level by level, alternating the direction of traversal for each level.

    • Use a queue to keep track of nodes at each level.

    • Print the nodes in zigzag order as per the given pattern.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Nice Environment

  • Q1. 

    Prime Numbers Identification

    Given a positive integer N, your task is to identify all prime numbers less than or equal to N.

    Explanation:

    A prime number is a natural number greater than 1 that has no po...

  • Ans. 

    Identify all prime numbers less than or equal to a given positive integer N.

    • Iterate from 2 to N and check if each number is prime

    • Use the Sieve of Eratosthenes algorithm for better efficiency

    • Optimize by only checking up to the square root of N for divisors

  • Answered by AI
  • Q2. What was the use of DBMS in your project, and how did you handle the problems that arose?
  • Ans. 

    DBMS was used to store and manage data in the project, handled problems by optimizing queries and database design.

    • Used DBMS to store and manage project data efficiently

    • Optimized queries for better performance

    • Designed database schema to handle data effectively

    • Resolved concurrency issues by implementing proper locking mechanisms

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAPayU interview preparation:Topics to prepare for the interview - Array ,DP ,Graph ,Recursion, Tree ,Queue,BSTTime required to prepare for the interview - 1.5 monthsInterview preparation tips for other job seekers

Tip 1 : Do atleast 1 good projects
Tip 2 : Practice Atleast 300 Questions
Tip 3 : Should be able to explain your project

Application resume tips for other job seekers

Tip 1 : Always be true with the resume
Tip 2 : Do not put false things on resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

IG Group Interview FAQs

How many rounds are there in IG Group Technical Architect interview?
IG Group interview process usually has 2 rounds. The most common rounds in the IG Group interview process are Technical and HR.
How to prepare for IG Group Technical Architect 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 IG Group. The most common topics and skills that interviewers at IG Group expect are Agile, Architecture, High level design, IT Architecture and Oracle RDBMS.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
ICICI Bank Interview Questions
4.0
 • 2.4k Interviews
HDFC Bank Interview Questions
3.9
 • 2.1k Interviews
Axis Bank Interview Questions
3.8
 • 1.5k Interviews
Bajaj Finance Interview Questions
4.0
 • 303 Interviews
PayPal Interview Questions
3.9
 • 207 Interviews
View all
IG Group Technical Architect Salary
based on 5 salaries
₹38 L/yr - ₹54 L/yr
54% more than the average Technical Architect Salary in India
View more details
Software Developer
18 salaries
unlock blur

₹13.6 L/yr - ₹27 L/yr

Developer
15 salaries
unlock blur

₹14.7 L/yr - ₹30 L/yr

Senior Developer
13 salaries
unlock blur

₹17.2 L/yr - ₹50 L/yr

Corporate Actions Analyst
11 salaries
unlock blur

₹5 L/yr - ₹7.5 L/yr

Business Analyst
9 salaries
unlock blur

₹11.6 L/yr - ₹27.8 L/yr

Explore more salaries
Compare IG Group with

HighRadius

2.9
Compare

Broadridge Financial Solutions

3.9
Compare

PayPal

3.9
Compare

MasterCard

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