Upload Button Icon Add office photos

IG Group

Compare button icon Compare button icon Compare

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

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about IG Group?
Ask anonymously on communities.

Interview questions from similar companies

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?
  • Ans. 

    Props destructuring simplifies accessing props in React components, enhancing code readability and maintainability.

    • Destructuring allows you to extract multiple properties from an object in a concise way.

    • In React, you can destructure props directly in the function parameters: `const MyComponent = ({ prop1, prop2 }) => { ... }`.

    • This approach reduces the need for repetitive code: instead of `props.prop1`, you can simpl...

  • Answered by AI
  • 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

Technical Architect Interview Questions Asked at Other Companies

asked in IBM
Q1. How to manage clients, how to handle critical issues with example
asked in IBM
Q2. Given a scenario to design the architecture for IoT-based problem ... read more
asked in IBM
Q3. how you handle non functional requirements ? how you do capacity ... read more
asked in IBM
Q4. What modernizations have you implemented on Mainframes?
asked in IBM
Q5. What architectural principles or methodologies do you know?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Recursion program
  • Ans. 

    Recursion is a programming technique where a function calls itself to solve smaller instances of a problem.

    • Recursion involves a base case and a recursive case. Example: Factorial function.

    • Base case stops recursion. Example: factorial(0) = 1.

    • Recursive case breaks problem into smaller parts. Example: factorial(n) = n * factorial(n-1).

    • Recursion can lead to elegant solutions but may cause stack overflow if too deep.

    • Tail re...

  • Answered by AI
  • 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

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

Round 1 - One-on-one 

(1 Question)

  • Q1. General Discussion around Architecture
Round 2 - One-on-one 

(1 Question)

  • Q1. General Discussion around Architecture
Round 3 - HR 

(1 Question)

  • Q1. General HR related Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep it calm, be prepared, have your basics clear,

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

I applied via Referral and was interviewed in Jan 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basic Logical questions from String, Arrays, Collections, Java Oops and Selenium.
  • Q2. See few puzzles from google.

Interview Preparation Tips

Interview preparation tips for other job seekers - Go with basics...

I applied via Company Website and was interviewed in Jul 2019. There were 3 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. What's your role and responsibilities
  • Q2. Current processes your organization follows
  • Ans. 

    Our organization follows a combination of manual and automated processes to streamline operations.

    • We use project management tools like Jira to track tasks and progress

    • Regular team meetings are held to discuss project updates and address any issues

    • Automated testing is used to ensure software quality and reduce manual errors

  • Answered by AI
  • Q3. How do you contribute to your organization (citizenship activities)
  • Q4. What's IRD, IDD and BRD
  • Ans. 

    IRD stands for Interface Requirements Document, IDD stands for Interface Design Document, and BRD stands for Business Requirements Document.

    • IRD is a document that outlines the requirements for the interface between different systems or components.

    • IDD is a document that describes the design of the interface, including the data formats, protocols, and communication methods.

    • BRD is a document that captures the business req...

  • Answered by AI
  • Q5. Microsoft Visio usage
  • Q6. What are Use case diagrams
  • Ans. 

    Use case diagrams are visual representations of the interactions between users and a system.

    • They depict the system's functionality from the user's perspective.

    • They show the different actors and their roles in the system.

    • They illustrate the various use cases and their relationships.

    • They help in identifying the requirements of the system.

    • They aid in communication between stakeholders.

    • Example: A use case diagram for an on...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and honest in what you jave achieved till now.
Are these interview questions helpful?

I applied via Naukri.com and was interviewed in Sep 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. More about my technical side.

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay connected with good data which may help in current situation for interview process.

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 applied via Company Website and was interviewed before Jan 2021. 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 

(2 Questions)

  • Q1. Pl sql Unix api configuration
  • Q2. Routing how to use proxy
  • Ans. 

    Routing through a proxy involves configuring the proxy server to forward requests to the destination server.

    • Configure the proxy server to listen for incoming requests

    • Configure the proxy server to forward requests to the destination server

    • Configure the client to use the proxy server for outgoing requests

    • Use a proxy server to bypass network restrictions or improve performance

    • Examples: Nginx, Apache, Squid

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

Interview Preparation Tips

Interview preparation tips for other job seekers - Avoid this company. You can be fired any day without notice.

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

FIS Interview Questions
3.9
 • 503 Interviews
PayPal Interview Questions
3.8
 • 225 Interviews
Visa Interview Questions
3.5
 • 146 Interviews
MasterCard Interview Questions
3.9
 • 145 Interviews
TransUnion Interview Questions
3.9
 • 93 Interviews
CapitalOne Interview Questions
3.7
 • 81 Interviews
PayU Payments Interview Questions
3.5
 • 57 Interviews
FNZ Interview Questions
2.8
 • 36 Interviews
View all
IG Group Technical Architect Salary
based on 4 salaries
₹38 L/yr - ₹54 L/yr
55% more than the average Technical Architect Salary in India
View more details
Software Developer
19 salaries
unlock blur

₹15.7 L/yr - ₹28.2 L/yr

Developer
18 salaries
unlock blur

₹14.7 L/yr - ₹27 L/yr

Senior Developer
14 salaries
unlock blur

₹17.2 L/yr - ₹50 L/yr

Team Leader (Technical)
10 salaries
unlock blur

₹38 L/yr - ₹62 L/yr

Business Analyst
9 salaries
unlock blur

₹11.6 L/yr - ₹27.8 L/yr

Explore more salaries
Compare IG Group with

FIS

3.9
Compare

Broadridge Financial Solutions

3.9
Compare

PayPal

3.8
Compare

MasterCard

3.9
Compare
write
Share an Interview