Upload Button Icon Add office photos

Filter interviews by

Inspirisys Solution Senior Solution Architect Interview Questions and Answers

Updated 17 Aug 2023

Inspirisys Solution Senior Solution Architect Interview Experiences

1 interview found

Interview experience
4
Good
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. Don’t remember what was asked
Round 3 - Technical 

(1 Question)

  • Q1. Don’t remember what was asked
Round 4 - Technical 

(1 Question)

  • Q1. Don’t remember what was asked
Round 5 - HR 

(1 Question)

  • Q1. Don’t remember what was asked

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java collections, program to remove duplicate from array, cursor, indexes in database,stream api's , some questions of hibernate and spring boot

Interview Preparation Tips

Interview preparation tips for other job seekers - Atleast prepare core java fully along with some basic db concepts and all keys and prepare spring boot

Interview Questionnaire 

2 Questions

  • Q1. 1. What is design pattern and it's types and solid patterns.
  • Ans. 

    Design patterns are reusable solutions to common software design problems. They include creational, structural, and behavioral patterns.

    • Design patterns are reusable solutions to common software design problems.

    • They provide proven solutions to recurring design problems.

    • Design patterns can be categorized into creational, structural, and behavioral patterns.

    • Creational patterns deal with object creation mechanisms.

    • Structur...

  • Answered by AI
  • Q2. Mostly questions are based on all .net concepts i.e. oops, asp.net, MVC, SQL server, scripting and logical questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Need more preparation on .net and relevant technologies also some questions are base on work experience and projects.

Skills evaluated in this interview

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

(2 Questions)

  • Q1. OOPS Basic Questions and examples
  • Q2. Microservices Related questuons and examples

Interview Preparation Tips

Interview preparation tips for other job seekers - All great
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Genric aptitude test

Round 2 - HR 

(2 Questions)

  • Q1. About yourself and your achievements
  • Q2. About your hobbies and interests

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

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

  • Q1. Arrays and array list questions
  • Q2. Basic java concepts
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Oct 2023. There were 4 interview rounds.

Round 1 - Assignment 

This test consist of Logical, Reasoning, Verbal and some Programming questions

Round 2 - Technical 

(2 Questions)

  • Q1. Basic Java and Frameworks question
  • Q2. Stream api find the second largest salary
  • Ans. 

    Use Stream API to find the second largest salary in an array of salaries.

    • Use Stream.sorted() to sort the salaries in descending order

    • Use Stream.skip(1).findFirst() to get the second highest salary

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. Insert middle in the linked list
  • Ans. 

    Insert a node in the middle of a linked list

    • Find the middle node using slow and fast pointers

    • Insert the new node after the middle node

    • Update the pointers to maintain the linked list structure

  • Answered by AI
  • Q2. Reverse the linked list
  • Ans. 

    Reverse a linked list

    • Iterate through the linked list and change the direction of pointers

    • Use three pointers to keep track of current, previous, and next nodes

    • Update the head of the linked list to point to the last node

  • Answered by AI
  • Q3. Singletone design pattern
Round 4 - HR 

(2 Questions)

  • Q1. About your self
  • Q2. Previous company and project Experiance

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared

Skills evaluated in this interview

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

I applied via Company Website and was interviewed before Apr 2022. 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 - Aptitude Test 

Basic Apti questions

Round 3 - Coding Test 

Basic Java Coding test

Round 4 - Technical 

(1 Question)

  • Q1. Basic JAVA fundamentals

Interview Preparation Tips

Interview preparation tips for other job seekers - Newgen is a product-based company, and most of the employees work on the products as this is not a plus point for growth in their career.
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2022. 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. They just asked basic questions on jave
  • Q2. And basic database questions
Round 3 - Technical 

(1 Question)

  • Q1. Basic java and database questions

Interview Questionnaire 

3 Questions

  • Q1. -React lifecycle?-Fragment vs React. Fragment? -React pure component?
  • Ans. 

    React lifecycle, Fragment vs React.Fragment, React.PureComponent

    • React lifecycle consists of mounting, updating, and unmounting phases

    • Fragment is a shorthand for React.Fragment, used to group multiple elements

    • React.PureComponent is a class component that implements shouldComponentUpdate method for performance optimization

  • Answered by AI
  • Q2. JavaScript hoisting?- Let, var and cont difference?
  • Ans. 

    JavaScript hoisting and differences between let, var and const.

    • Hoisting is a JavaScript mechanism where variables and function declarations are moved to the top of their scope.

    • Var declarations are hoisted to the top of their scope, while let and const declarations are not.

    • Var can be redeclared and reassigned, let can be reassigned but not redeclared, and const cannot be reassigned or redeclared.

    • Using const is recommend...

  • Answered by AI
  • Q3. Dofferemt ways to prevent rerendering of a child component in react?
  • Ans. 

    Prevent rerendering of a child component in React

    • Use shouldComponentUpdate() lifecycle method

    • Use React.memo() to memoize functional components

    • Use PureComponent instead of Component

    • Pass props as a callback function to avoid unnecessary re-renders

    • Use React.PureComponent for class components

    • Use React.memo() for functional components

  • Answered by AI

Skills evaluated in this interview

Inspirisys Solution Interview FAQs

How many rounds are there in Inspirisys Solution Senior Solution Architect interview?
Inspirisys Solution interview process usually has 5 rounds. The most common rounds in the Inspirisys Solution interview process are Technical, Resume Shortlist and HR.
How to prepare for Inspirisys Solution Senior Solution 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 Inspirisys Solution. The most common topics and skills that interviewers at Inspirisys Solution expect are Cloud, Devops, Docker, HMI and IOT.

Tell us how to improve this page.

Inspirisys Solution Senior Solution Architect Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

3i Infotech Interview Questions
3.5
 • 145 Interviews
Microland Interview Questions
3.5
 • 134 Interviews
NSE.IT Interview Questions
3.6
 • 127 Interviews
Mastek Interview Questions
3.5
 • 120 Interviews
Maveric Systems Interview Questions
3.5
 • 118 Interviews
Sonata Software Interview Questions
3.4
 • 117 Interviews
Tietoevry Interview Questions
4.2
 • 91 Interviews
View all
Inspirisys Solution Senior Solution Architect Salary
based on 4 salaries
₹24 L/yr - ₹40 L/yr
7% less than the average Senior Solution Architect Salary in India
View more details
Technical Support Engineer
382 salaries
unlock blur

₹1 L/yr - ₹4.8 L/yr

Software Engineer
267 salaries
unlock blur

₹1.5 L/yr - ₹9 L/yr

Senior Software Engineer
162 salaries
unlock blur

₹4.7 L/yr - ₹17 L/yr

Desktop Support Engineer
113 salaries
unlock blur

₹1 L/yr - ₹3.5 L/yr

Senior Technical Support Engineer
88 salaries
unlock blur

₹2 L/yr - ₹5.2 L/yr

Explore more salaries
Compare Inspirisys Solution with

3i Infotech

3.5
Compare

Microland

3.5
Compare

Newgen Software Technologies

3.7
Compare

NSE.IT

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