Premium Employer

i

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

Gyansys Infotech Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Gyansys Infotech Interview Questions and Answers

Updated 17 Jun 2025
Popular Designations

9 Interview questions

A Test Automation Architect was asked 1w ago
Q. What is the difference between REST API and SOAP UI?
Ans. 

REST API is an architectural style for web services, while SOAP UI is a tool for testing SOAP and REST APIs.

  • REST (Representational State Transfer) is an architectural style, while SOAP (Simple Object Access Protocol) is a protocol.

  • REST uses standard HTTP methods (GET, POST, PUT, DELETE), whereas SOAP relies on XML-based messaging.

  • REST APIs are stateless and can return data in various formats (JSON, XML), while SOA...

View all Test Automation Architect interview questions
A Test Automation Architect was asked 1w ago
Q. What is the difference between a test event and a test mandate?
Ans. 

Test events are specific occurrences during testing, while test mandates define the scope and objectives of testing activities.

  • Test Event: A specific occurrence during testing, such as a test case execution or a defect discovery.

  • Example of Test Event: Executing a test case that verifies a login functionality.

  • Test Mandate: A formal document outlining the objectives, scope, and responsibilities of the testing proces...

View all Test Automation Architect interview questions
A Test Automation Architect was asked 1w ago
Q. Explain CI/CD pipelines.
Ans. 

CI/CD pipelines automate software development processes, enabling continuous integration and delivery for faster and reliable releases.

  • CI (Continuous Integration) involves automatically testing and merging code changes into a shared repository.

  • CD (Continuous Delivery) ensures that code changes are automatically prepared for a production release.

  • Pipelines can include stages like build, test, and deploy, ensuring co...

View all Test Automation Architect interview questions
A DOT NET Developer was asked 7mo ago
Q. What is boxing and unboxing in C#?
Ans. 

Boxing is the process of converting a value type to a reference type, while unboxing is the opposite process.

  • Boxing is done implicitly by the compiler when a value type is assigned to a reference type variable.

  • Unboxing requires an explicit cast from the reference type back to the original value type.

  • Boxing and unboxing can impact performance, so they should be used carefully in performance-critical code.

View all DOT NET Developer interview questions
A DOT NET Developer was asked 7mo ago
Q. What are sessions in MVC?
Ans. 

Sessions in MVC are used to store and manage user-specific data throughout multiple requests.

  • Sessions are used to maintain state between multiple requests from the same user.

  • Data stored in sessions is unique to each user and can be accessed across different pages.

  • Sessions can be used to store user authentication information, shopping cart items, etc.

  • Sessions can be managed using session variables in MVC controller...

View all DOT NET Developer interview questions
A Software Engineer Trainee was asked
Q. What are the differences between the final keyword and the static keyword?
Ans. 

Final keyword restricts modification while static keyword is used for class-level variables and methods.

  • Final keyword is used to make a variable constant and cannot be modified once initialized.

  • Final keyword can also be used to make a method un-overridable in a subclass.

  • Static keyword is used to declare class-level variables and methods.

  • Static variables are shared among all instances of a class.

  • Static methods can ...

View all Software Engineer Trainee interview questions
A Software Engineer Trainee was asked
Q. Write code to print a given simple pattern.
Ans. 

This question involves writing code to print a specific pattern using loops in a programming language.

  • Identify the pattern to be printed, e.g., a triangle or square.

  • Use nested loops: outer loop for rows and inner loop for columns.

  • Example: For a triangle pattern, outer loop runs for each row, inner loop prints stars.

  • Consider edge cases, such as minimum or maximum size of the pattern.

View all Software Engineer Trainee interview questions
Are these interview questions helpful?
A Data Entry Executive was asked
Q. Repartition vs coalesce, dag vs lineage
Ans. 

Repartition and coalesce are used to manage the number of partitions in a Spark RDD. DAG and lineage are concepts related to Spark's execution model.

  • Repartition increases the number of partitions by shuffling data across the network, while coalesce reduces the number of partitions by merging them together.

  • DAG (Directed Acyclic Graph) is a graph of stages in a Spark job, while lineage is the record of transformatio...

View all Data Entry Executive interview questions
A Software Engineer Trainee was asked
Q. Languages known( c, java)
Ans. 

I am proficient in C and Java programming languages.

  • Experience in developing applications using C and Java

  • Knowledge of data structures and algorithms

  • Familiarity with object-oriented programming concepts

  • Ability to write efficient and optimized code

  • Examples: Developed a Java-based web application for online shopping, Implemented a C program for sorting algorithms

View all Software Engineer Trainee interview questions

Gyansys Infotech Interview Experiences

12 interviews found

Test Automation Architect Interview Questions & Answers

user image Vijayeswary Nambiar

posted on 17 Jun 2025

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Explain ci cd pipelines
  • Ans. 

    CI/CD pipelines automate software development processes, enabling continuous integration and delivery for faster and reliable releases.

    • CI (Continuous Integration) involves automatically testing and merging code changes into a shared repository.

    • CD (Continuous Delivery) ensures that code changes are automatically prepared for a production release.

    • Pipelines can include stages like build, test, and deploy, ensuring code qu...

  • Answered by AI
  • Q2. What is difference between rest api and soap ui
  • Ans. 

    REST API is an architectural style for web services, while SOAP UI is a tool for testing SOAP and REST APIs.

    • REST (Representational State Transfer) is an architectural style, while SOAP (Simple Object Access Protocol) is a protocol.

    • REST uses standard HTTP methods (GET, POST, PUT, DELETE), whereas SOAP relies on XML-based messaging.

    • REST APIs are stateless and can return data in various formats (JSON, XML), while SOAP API...

  • Answered by AI
  • Q3. What are control groups
  • Q4. Date expression
  • Q5. Table steering , dex configuration
  • Q6. Test event and test mandate difference
  • Ans. 

    Test events are specific occurrences during testing, while test mandates define the scope and objectives of testing activities.

    • Test Event: A specific occurrence during testing, such as a test case execution or a defect discovery.

    • Example of Test Event: Executing a test case that verifies a login functionality.

    • Test Mandate: A formal document outlining the objectives, scope, and responsibilities of the testing process.

    • Exa...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Dnt go and give interview to these kind of companies where they only sit to reject candidates. Even though you answer all the questions still there will be some rude dominating and egoistic interview panel who are siting only to reject . This is what is happening now days
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is boxing and unboxing in C#?
  • Ans. 

    Boxing is the process of converting a value type to a reference type, while unboxing is the opposite process.

    • Boxing is done implicitly by the compiler when a value type is assigned to a reference type variable.

    • Unboxing requires an explicit cast from the reference type back to the original value type.

    • Boxing and unboxing can impact performance, so they should be used carefully in performance-critical code.

  • Answered by AI
  • Q2. What are sessions in mvc?
  • Ans. 

    Sessions in MVC are used to store and manage user-specific data throughout multiple requests.

    • Sessions are used to maintain state between multiple requests from the same user.

    • Data stored in sessions is unique to each user and can be accessed across different pages.

    • Sessions can be used to store user authentication information, shopping cart items, etc.

    • Sessions can be managed using session variables in MVC controllers.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I appeared for an interview in Aug 2024.

Round 1 - One-on-one 

(1 Question)

  • Q1. Introduction and experience related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Before signing an offer letter carefully review all terms, especially the bond and notice period never sign a bond just because it’s mandatory upon primarily protects the company, not you
for example, if your performance is unsatisfactory, the company will terminate you within an hour and the bond phone protective. However, if you are performing well, but you are on the bench and find a better opportunity, the bond will restrict you. You may be forced to stay and pay hefty amount to leave, and the company will withhold your relieving letter.

Additionally, 90 days notice period can be a major as most companies won’t wait that long unlikely larger MS that sometimes negotiate notice period for employees career growth. This company may not be flexible.

so always pay close attention to the bond terms and notice period before committing be strategic in choosing your opportunity instead of feeling pressurised into signing respective agreements as they can create a significant challenge later.

Interview Questions & Answers

user image Anonymous

posted on 15 Aug 2024

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

I applied via Job Portal and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Best way to add new columns from source to target
  • Q2. When can I join ?
Round 2 - One-on-one 

(2 Questions)

  • Q1. Why are you looking for a change?
  • Q2. How data is stored in Sap
Round 3 - Client Interview 

(1 Question)

  • Q1. BEHAVIOURAL ROUND

Skills evaluated in this interview

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

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. TMAY, more on my workex as software developer
  • Q2. Based on various technoliges like SAP
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - HR 

(2 Questions)

  • Q1. Basic questions
  • Q2. Tell about yourself and some instructions they gave me
Round 2 - Coding Test 

Some program questions from c++

Round 3 - Aptitude Test 

20 questions with choices

Interview Preparation Tips

Interview preparation tips for other job seekers - Nil
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jun 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

Aptitude , coding and reasoning

Round 3 - Coding Test 

Question was on graph

Interview Preparation Tips

Topics to prepare for Gyansys Infotech Software Developer interview:
  • Python
  • DSA
  • Data Analytics

I applied via Recruitment Consulltant and was interviewed in Aug 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 - Group Discussion 

There were 3 rounds - first was GD , second was technical interview and third was HR interview.

Round 3 - Technical 

(2 Questions)

  • Q1. Technical interview ques. were pretty basic - asked me what language do I code in?
  • Q2. - included questions from oops - core java - SQL - and MS Office

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident - and the interviewer was so much in hurry was not giving time to think or answer.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Monster and was interviewed before Nov 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 - Technical 

(2 Questions)

  • Q1. Technical round
  • Q2. About Sap P2p Business process
Round 3 - One-on-one 

(1 Question)

  • Q1. Client round, Sap related questions.
Round 4 - HR 

(1 Question)

  • Q1. Salary dldetails and Form fill up

Interview Questionnaire 

8 Questions

  • Q1. Languages known( c, java)
  • Ans. 

    I am proficient in C and Java programming languages.

    • Experience in developing applications using C and Java

    • Knowledge of data structures and algorithms

    • Familiarity with object-oriented programming concepts

    • Ability to write efficient and optimized code

    • Examples: Developed a Java-based web application for online shopping, Implemented a C program for sorting algorithms

  • Answered by AI
  • Q2. Last project details
  • Ans. 

    Developed a web-based inventory management system to streamline stock tracking and reporting for a local retail business.

    • Utilized React for the front-end to create a responsive user interface.

    • Implemented Node.js and Express for the back-end API to handle data requests.

    • Integrated MongoDB for database management, allowing for efficient data storage and retrieval.

    • Conducted user testing sessions to gather feedback and impr...

  • Answered by AI
  • Q3. Final keyword vs static keyword
  • Ans. 

    Final keyword restricts modification while static keyword is used for class-level variables and methods.

    • Final keyword is used to make a variable constant and cannot be modified once initialized.

    • Final keyword can also be used to make a method un-overridable in a subclass.

    • Static keyword is used to declare class-level variables and methods.

    • Static variables are shared among all instances of a class.

    • Static methods can be ca...

  • Answered by AI
  • Q4. Collection Arraylist
  • Q5. Exception Handling
  • Q6. JDBC
  • Q7. Set and list
  • Q8. About gyansys

Skills evaluated in this interview

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 Gyansys Infotech?
Ask anonymously on communities.

Gyansys Infotech Interview FAQs

How many rounds are there in Gyansys Infotech interview?
Gyansys Infotech interview process usually has 2-3 rounds. The most common rounds in the Gyansys Infotech interview process are Technical, Resume Shortlist and One-on-one Round.
How to prepare for Gyansys Infotech 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 Gyansys Infotech. The most common topics and skills that interviewers at Gyansys Infotech expect are Javascript, Communication Skills, Java, SAP and Consulting.
What are the top questions asked in Gyansys Infotech interview?

Some of the top questions asked at the Gyansys Infotech interview -

  1. Given very simple pattern printing qsn and asked to write code for...read more
  2. What is difference between rest api and soap...read more
  3. What is boxing and unboxing in ...read more
How long is the Gyansys Infotech interview process?

The duration of Gyansys Infotech interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.6/5

based on 9 interview experiences

Difficulty level

Easy 14%
Moderate 86%

Duration

Less than 2 weeks 83%
6-8 weeks 17%
View more
Join Gyansys Infotech Leading global system integrator company

Interview Questions from Similar Companies

CitiusTech Interview Questions
3.3
 • 288 Interviews
Altimetrik Interview Questions
3.7
 • 240 Interviews
Xoriant Interview Questions
4.1
 • 211 Interviews
INDIUM Interview Questions
4.0
 • 198 Interviews
Incedo Interview Questions
3.1
 • 193 Interviews
Globant Interview Questions
3.7
 • 182 Interviews
Iris Software Interview Questions
4.0
 • 177 Interviews
ThoughtWorks Interview Questions
3.9
 • 156 Interviews
View all

Gyansys Infotech Reviews and Ratings

based on 202 reviews

2.9/5

Rating in categories

2.6

Skill development

2.8

Work-life balance

2.9

Salary

2.8

Job security

2.5

Company culture

2.7

Promotions

2.6

Work satisfaction

Explore 202 Reviews and Ratings
Senior WebMethods Developer

Hyderabad / Secunderabad,

Bangalore / Bengaluru

6-9 Yrs

Not Disclosed

Senior Snowflake Developer

Hyderabad / Secunderabad,

Bangalore / Bengaluru

6-10 Yrs

Not Disclosed

Senior SAP Basis Consultant

Hyderabad / Secunderabad,

Pune

+1

5-10 Yrs

Not Disclosed

Explore more jobs
Associate Consultant
193 salaries
unlock blur

₹3 L/yr - ₹6.8 L/yr

Senior Consultant
166 salaries
unlock blur

₹15 L/yr - ₹25 L/yr

Consultant
114 salaries
unlock blur

₹5 L/yr - ₹10.7 L/yr

Lead Consultant
86 salaries
unlock blur

₹19.8 L/yr - ₹35.5 L/yr

Principal Consultant
69 salaries
unlock blur

₹22 L/yr - ₹36 L/yr

Explore more salaries
Compare Gyansys Infotech with

Xoriant

4.1
Compare

Photon Interactive

4.1
Compare

CitiusTech

3.3
Compare

Iris Software

4.0
Compare
write
Share an Interview