Premium Employer

i

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

Infinx Verified Tick

Compare button icon Compare button icon Compare
4.1

based on 1.4k Reviews

Filter interviews by

Infinx Technical Architect Interview Questions and Answers

Updated 25 May 2024

Infinx Technical Architect Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. 1) What is the difference between Node.js and Java Asynchronous programming ? 2) What is the difference between docker add and copy ? 3) What is the difference between accept and content-type ? 4) Coding t...
  • Ans. 

    Answers to various technical questions related to Node.js, Java, Docker, and Spring Boot.

    • Node.js uses event-driven, non-blocking I/O model for asynchronous programming, while Java uses threads for concurrency.

    • In Node.js, asynchronous operations are handled using callbacks or promises, whereas Java uses CompletableFuture or RxJava for asynchronous programming.

    • docker add copies files from the source directory and adds th...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - My experience was very bad . It seems the interviewer was interviewing for some junior developer position rather than Technical Architect position.

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. System architecture
  • Q2. Cloud computing
Round 2 - Technical 

(2 Questions)

  • Q1. Backup strategy
  • Q2. Storage architecture
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. SOLID principle
  • Q2. Internal working of view model
  • Ans. 

    The view model is responsible for managing and providing data to the view in a way that is independent of the underlying data source.

    • View model acts as an intermediary between the view and the data source.

    • It retrieves data from the data source and transforms it into a format that is suitable for the view.

    • It may also perform data validation and business logic.

    • View model is typically implemented as a separate class or co...

  • Answered by AI
  • Q3. Find 2nd largest number
  • Ans. 

    To find the 2nd largest number in an array, sort the array in descending order and return the element at index 1.

    • Sort the array in descending order using a sorting algorithm

    • Return the element at index 1 as the 2nd largest number

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics

Skills evaluated in this interview

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

(1 Question)

  • Q1. Architecture discussion
Round 2 - Technical 

(1 Question)

  • Q1. Mostly focused on my previous project and architecture
Round 3 - Technical 

(1 Question)

  • Q1. Mostly Focus on primary skills and architecture of previous projects and my contribution
Round 4 - Technical 

(1 Question)

  • Q1. Ready Ness to learn new tech stack and existing primary skills
Round 5 - HR 

(1 Question)

  • Q1. General package discussion for the role(special)

Interview Preparation Tips

Interview preparation tips for other job seekers - Mostly Focus on primary skills , architectural mindset, ready for IC too
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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. Length and breadth about the respective Adobe product
  • Ans. 

    Adobe product refers to a range of software solutions developed by Adobe Inc. for creative professionals and businesses.

    • Adobe Creative Cloud includes popular products like Photoshop, Illustrator, and InDesign.

    • Adobe Experience Cloud offers solutions for marketing, analytics, and advertising.

    • Adobe Document Cloud includes tools like Adobe Acrobat and Adobe Sign for document management and e-signatures.

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Estimation process was reviewed
Round 4 - Technical 

(1 Question)

  • Q1. Drill down on the know how of the respective Adobe product
Round 5 - Case Study 

Fictional client requirement shared for proposal preparation and defence

Round 6 - Behavioral 

(1 Question)

  • Q1. You are in at the point, so it's just a f2f
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Experience, scope and challenges

Round 2 - Case Study 

Present a cloud solution based on MS Azure Stack

Round 3 - HR 

(1 Question)

  • Q1. Behavioral and comp
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Dec 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Instant coding test, and questions was on java, Automotive domain, android aosp and framework VHAL
Round 3 - Technical 

(1 Question)

  • Q1. Questions was on automotive android and java
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via campus placement at Dr Sivanthi Aditanar College of Engineering, Tiruchendur and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Group Discussion 

On the topic of wfh vs wfo

Round 2 - Technical 

(3 Questions)

  • Q1. Logic for leap year
  • Ans. 

    A leap year is a year that is divisible by 4, except for years that are divisible by 100 but not by 400.

    • Leap year is divisible by 4

    • Exception: Years divisible by 100 but not by 400 are not leap years

    • Example: 2000 is a leap year because it is divisible by 400

  • Answered by AI
  • Q2. Logic for fibonocee series
  • Ans. 

    Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

    • Start with 0 and 1 as the first two numbers in the series

    • Add the previous two numbers to get the next number in the series

    • Repeat this process to generate the Fibonacci series

  • Answered by AI
  • Q3. Swap two number without 3rd variable
  • Ans. 

    Swap two numbers without using a third variable

    • Use bitwise XOR operation to swap two numbers without using a third variable

    • Example: a = 5, b = 10. a = a XOR b, b = a XOR b, a = a XOR b

    • After swapping: a = 10, b = 5

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Biometric attitude questions

Skills evaluated in this interview

I applied via Job Portal and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. GCP group for merge the projects to reduce the 100 to 25.
  • Ans. 

    Create a GCP group to merge projects and reduce from 100 to 25.

    • Identify the projects to be merged based on criteria such as functionality, ownership, or resource usage.

    • Create a new GCP project to serve as the merged project.

    • Migrate the necessary resources and data from the individual projects to the merged project.

    • Update any dependencies or configurations to reflect the changes.

    • Ensure proper access controls and permiss...

  • Answered by AI
  • Q2. Do you attend governess meeting
  • Q3. Why do want to make the change
  • Q4. GCP migration task in legacy and Cloud
  • Ans. 

    GCP migration involves transferring legacy systems to the cloud.

    • Identify the legacy systems that need to be migrated

    • Assess the compatibility of the legacy systems with GCP

    • Plan the migration strategy and timeline

    • Execute the migration process, ensuring data integrity and minimal downtime

    • Test and validate the migrated systems in the GCP environment

    • Optimize and fine-tune the migrated systems for optimal performance

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Naukri has best resource for Cloud and niche skill level

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. System architecture
  • Q2. Cloud computing
Round 2 - Technical 

(2 Questions)

  • Q1. Backup strategy
  • Q2. Storage architecture

Infinx Interview FAQs

How many rounds are there in Infinx Technical Architect interview?
Infinx interview process usually has 1 rounds. The most common rounds in the Infinx interview process are Technical.
How to prepare for Infinx 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 Infinx. The most common topics and skills that interviewers at Infinx expect are Angularjs, Cloud, J2EE, JSP and Java.

Tell us how to improve this page.

Infinx Technical Architect Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more
Join Infinx Revenue Realized. On Time. All The Time.
Process Associate
768 salaries
unlock blur

₹1 L/yr - ₹5 L/yr

Senior Process Associate
317 salaries
unlock blur

₹1.5 L/yr - ₹5.8 L/yr

Senior Medical Coder
161 salaries
unlock blur

₹3 L/yr - ₹8 L/yr

Medical Coder
144 salaries
unlock blur

₹2.2 L/yr - ₹5.9 L/yr

Senior Associate
143 salaries
unlock blur

₹2 L/yr - ₹5.9 L/yr

Explore more salaries
Compare Infinx with

Mphasis

3.4
Compare

Wipro

3.7
Compare

TCS

3.7
Compare

HCLTech

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