Premium Employer

i

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

Infosys Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Infosys Interview Questions, Process, and Tips

Updated 3 Mar 2025

Top Infosys Interview Questions and Answers

View all 4.5k questions

Infosys Interview Experiences

Popular Designations

7.5k interviews found

ETL Tester Interview Questions & Answers

user image Anonymous

posted on 18 Aug 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected

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

Round 1 - Technical 

(10 Questions)

  • Q1. Write an SQL query to fetch 5th ,10th,15th .. records from a table?
  • Ans. 

    Use OFFSET and FETCH in SQL to retrieve specific records from a table.

    • Use OFFSET to skip the first n-1 records

    • Use FETCH to limit the number of records to be retrieved

    • Example: SELECT * FROM table_name OFFSET 4 ROWS FETCH NEXT 5 ROWS ONLY

  • Answered by AI
  • Q2. What are constraints?
  • Ans. 

    Constraints are rules or conditions that must be followed in order to ensure data integrity and accuracy.

    • Constraints define the limits or restrictions on data values in a database table

    • Examples of constraints include primary key, foreign key, unique key, and check constraints

    • Constraints help maintain data quality and consistency in a database

  • Answered by AI
  • Q3. What is Low Priority , Medium Priority & High priority defects?
  • Ans. 

    Low, Medium, and High priority defects are categorized based on their impact on the system and urgency of fixing.

    • Low priority defects are minor issues that do not significantly impact the system's functionality.

    • Medium priority defects are issues that have a noticeable impact on the system but are not critical.

    • High priority defects are critical issues that severely impact the system's functionality and need immediate at...

  • Answered by AI
  • Q4. White box , Black Box ,regression , Retesting?
  • Q5. Joins ? with example
  • Ans. 

    Joins are used to combine rows from two or more tables based on a related column between them.

    • Joins are used in SQL to retrieve data from multiple tables based on a related column.

    • Common types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column;

  • Answered by AI
  • Q6. Window function queries?
  • Q7. Domain name from an email ?
  • Ans. 

    A domain name from an email refers to the part after the @ symbol in an email address.

    • The domain name is typically the name of the organization or service provider associated with the email address.

    • For example, in the email address example@gmail.com, 'gmail.com' is the domain name.

  • Answered by AI
  • Q8. Rank dense_rank() ,row_numebr with example?
  • Ans. 

    dense_rank() assigns a unique rank to each distinct row, row_number() assigns a unique sequential integer to each row.

    • dense_rank() is used to assign a unique rank to each distinct row based on the specified order.

    • row_number() is used to assign a unique sequential integer to each row in the result set.

    • Example: dense_rank() - SELECT dense_rank() OVER (ORDER BY salary) AS rank FROM employees;

    • Example: row_number() - SELECT...

  • Answered by AI
  • Q9. SCD Types , Star Schema Vs SnowFlake Schema
  • Ans. 

    SCD types refer to slowly changing dimensions in data warehousing. Star schema is denormalized while snowflake schema is normalized.

    • SCD types refer to how dimensions change over time in a data warehouse

    • Type 1: Overwrite existing data with new data

    • Type 2: Keep track of historical data with new records

    • Type 3: Keep track of some historical data with limited history

    • Star schema is denormalized with a central fact table conn...

  • Answered by AI
  • Q10. Group by clause and how it work with a query
  • Ans. 

    Group by clause is used in SQL to group rows that have the same values into summary rows.

    • Group by clause is used with aggregate functions like SUM, COUNT, AVG, etc.

    • It is used to group rows based on one or more columns specified in the query.

    • Group by clause must be used after the WHERE clause and before the ORDER BY clause.

    • Example: SELECT department, COUNT(*) FROM employees GROUP BY department;

  • Answered by AI
Round 2 - HR 

(4 Questions)

  • Q1. Salary expectations
  • Q2. Where do you see yourself in 5 years
  • Q3. Reason for job switch?
  • Ans. 

    Seeking new challenges and growth opportunities in a different environment.

    • Desire for career advancement

    • Interest in learning new technologies

    • Seeking a more challenging role

    • Company restructuring or downsizing

    • Relocation to a different city

  • Answered by AI
  • Q4. Strengths & weakness ?
  • Ans. 

    My strengths include attention to detail and problem-solving skills. My weakness is sometimes being too critical of my own work.

    • Strength: Attention to detail - I always ensure that all aspects of the testing process are thoroughly checked.

    • Strength: Problem-solving skills - I am able to quickly identify and resolve issues that arise during testing.

    • Weakness: Being too critical of my own work - I sometimes spend too much

  • Answered by AI

Skills evaluated in this interview

Top Infosys ETL Tester Interview Questions and Answers

Q1. How do you get data integrity between source and destination, how you perform loading technique.
View answer (1)

ETL Tester Interview Questions asked at other Companies

Q1. If we have 200 staging tables, 40 dimensions tables and 20 facts table, How will you compare it with target systems
View answer (3)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
6-8 weeks
Result
No response

I was interviewed in Aug 2024.

Round 1 - Technical 

(7 Questions)

  • Q1. Explain project . How encapsulation and abstraction is used in your project
  • Ans. 

    The project is a web application for managing inventory and sales of a retail store.

    • Encapsulation is used to hide the internal implementation details of classes and only expose necessary methods and properties.

    • Abstraction is used to define a common interface for interacting with different types of inventory items, such as products and services.

    • For example, the Product class encapsulates details like name, price, and qu...

  • Answered by AI
  • Q2. Can we run Java program without main
  • Ans. 

    No, a Java program cannot be run without a main method.

    • The main method is the entry point of a Java program, without it the program cannot be executed.

    • The JVM looks for the main method to start the execution of the program.

    • Attempting to run a Java program without a main method will result in a compilation error.

  • Answered by AI
  • Q3. Dependency injection
  • Q4. Why Spring boot
  • Ans. 

    Spring Boot is a popular framework for building Java applications due to its ease of use, rapid development capabilities, and robust features.

    • Provides a quick and easy way to set up a production-ready Spring application

    • Reduces the amount of boilerplate code required for configuration

    • Offers built-in support for various technologies such as embedded servers, security, and monitoring

    • Enables developers to focus on writing

  • Answered by AI
  • Q5. Code for unique elements in a list
  • Ans. 

    Code to find unique elements in a list of strings

    • Create a HashSet to store unique elements

    • Iterate through the list and add elements to the HashSet

    • Convert the HashSet back to an array of strings

  • Answered by AI
  • Q6. Typecasting examples
  • Ans. 

    Typecasting is the process of converting one data type into another.

    • Explicit typecasting is done using parentheses and the desired data type.

    • Implicit typecasting is done automatically by the compiler.

    • Examples: int x = (int) 3.14; // explicit typecasting, double y = 5; // implicit typecasting

  • Answered by AI
  • Q7. Map vs list different
  • Ans. 

    Maps store key-value pairs while lists store ordered collection of elements.

    • Maps use keys to access values, while lists use indexes.

    • Maps do not allow duplicate keys, but lists can have duplicate elements.

    • Maps are typically used for quick lookups based on keys, while lists are used for maintaining order of elements.

    • Example: Map map = new HashMap<>(); List list = new ArrayList<>();

Answered by AI

Skills evaluated in this interview

Top Infosys Java Developer Interview Questions and Answers

Q1. Which should be preferred between String and StringBuffer when there are many updates required to the data?
View answer (1)

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (3)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via LinkedIn and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(8 Questions)

  • Q1. Spring filters explained briefly
  • Ans. 

    Spring filters are components in Spring framework that intercept incoming HTTP requests and outgoing HTTP responses.

    • Filters are used to perform tasks like logging, authentication, authorization, etc.

    • They are configured in the web.xml file or using annotations like @WebFilter.

    • Example: javax.servlet.Filter interface is implemented to create custom filters.

  • Answered by AI
  • Q2. Spring security concepts
  • Q3. Flat map vs map
  • Ans. 

    Flat map is used to flatten nested collections, while map is used to transform elements in a collection.

    • Flat map is used when you have a collection of collections and you want to flatten it into a single collection.

    • Map is used to transform each element in a collection using a given function.

    • Example: Using flatMap to flatten a list of lists - list.stream().flatMap(List::stream).collect(Collectors.toList())

    • Example: Using...

  • Answered by AI
  • Q4. Stream apI in java 8 explanation
  • Ans. 

    Stream API in Java 8 allows for functional-style operations on collections.

    • Stream API provides a way to process collections of objects in a functional way.

    • It supports operations like filter, map, reduce, and collect.

    • Example: List names = Arrays.asList("Alice", "Bob", "Charlie"); Stream stream = names.stream();

    • Example: List numbers = Arrays.asList(1, 2, 3, 4, 5); int sum = numbers.stream().filter(n -> n % 2 == 0).mapToI

  • Answered by AI
  • Q5. Paraller programming concepts in java 8
  • Ans. 

    Java 8 introduced parallel programming concepts like streams, parallel streams, and CompletableFuture.

    • Java 8 introduced streams which allow for functional-style operations on collections.

    • Parallel streams allow for parallel processing of stream elements, improving performance on multi-core processors.

    • CompletableFuture class enables asynchronous programming by representing a future result of an asynchronous computation.

  • Answered by AI
  • Q6. Abstract vs interfcae
  • Ans. 

    Abstract classes can have both abstract and non-abstract methods, while interfaces can only have abstract methods.

    • Abstract classes can have constructors, fields, and methods, while interfaces cannot.

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

    • Abstract classes are used to define a common behavior for subclasses, while interfaces are used to define a contract for classes to implement.

    • ...

  • Answered by AI
  • Q7. SOLID principle explain
  • 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: Software entities 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 aff...

  • Answered by AI
  • Q8. Static keyword explain
  • Ans. 

    Static keyword is used in Java to create class-level variables and methods.

    • Static variables are shared among all instances of a class

    • Static methods can be called without creating an instance of the class

    • Static keyword can also be used to create static blocks for initialization

  • Answered by AI

Skills evaluated in this interview

Top Infosys Springboot Developer Interview Questions and Answers

Q1. SpringBoot Annotations configuration linkedlist vs arraylist tomcat vs other application servers AJAX JSON Method overriding Polymorphism Struts Architecture Pom.xml Interceptors in Struts Framework Action Invocation Action Context ..
View answer (1)

Springboot Developer Interview Questions asked at other Companies

Q1. SpringBoot Annotations configuration linkedlist vs arraylist tomcat vs other application servers AJAX JSON Method overriding Polymorphism Struts Architecture Pom.xml Interceptors in Struts Framework Action Invocation Action Context ..
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Jul 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Java programs,features,spring,springboot technical questions
  • Q2. SQL queries (mainly focused on group by,order by)
Round 2 - Behavioral 

(2 Questions)

  • Q1. SDLC process, project experience
  • Q2. Agile methodology,framework,tools,technical questions (basics) - java,spring,springboot,maven,gradle
Round 3 - HR 

(2 Questions)

  • Q1. Educational Background,Work Experience
  • Q2. Flexible to relocation,CCTC,ECTC,Variable pay,Hike discuss

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong on fundamentals and explain your project in-detail

FYI - This is an open position for java,spring boot developer

Top Infosys Associate Consultant Interview Questions and Answers

Q1. What are the services you have used in AWS? What are the types of storage in S3? How will you troubleshoot if a web server is not responding? Have you come across DNS hosting, in AWS how can we achieve it? What is static hosting in AWS? Wha... read more
View answer (1)

Associate Consultant Interview Questions asked at other Companies

Q1. There are 2 cricket teams, A and B, with 11 players each. If every player of team A shakes hands with every player of team B(once), what will be the total number of handshakes?
View answer (15)

Infosys interview questions for popular designations

 System Engineer

 (1.1k)

 Software Engineer

 (307)

 Technology Analyst

 (277)

 Associate Consultant

 (270)

 Senior Systems Engineer

 (267)

 Software Developer

 (259)

 Business Analyst

 (240)

 Senior Associate Consultant

 (176)

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

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

Round 1 - Technical 

(5 Questions)

  • Q1. Selenium Basic Question
  • Q2. Java oops concepts
  • Q3. Difference between iframe and window handling
  • Ans. 

    iframe is used to embed another HTML document within the current document, while window handling involves managing multiple browser windows or tabs.

    • iframe is used to display content from another source within the current webpage

    • Window handling involves managing multiple browser windows or tabs

    • iframe is used for embedding maps, videos, or other external content

    • Window handling is commonly used in automated testing to swi

  • Answered by AI
  • Q4. Exception in java
  • Ans. 

    An exception in Java is a runtime error that disrupts the normal flow of a program.

    • Exceptions are objects that are thrown when an error occurs during the execution of a program.

    • They can be caught and handled using try-catch blocks.

    • Common types of exceptions include NullPointerException, ArrayIndexOutOfBoundsException, and IOException.

  • Answered by AI
  • Q5. Git and jenkins

Skills evaluated in this interview

Associate Quality Engineer Interview Questions asked at other Companies

Q1. 1. Program to sort an array 2. Program to find first two large numbers in array 3. Theory Questions on manual testing, Java oops concepts, Java collections, testng, selenium, frameworks 4. Explain framework that has been used in your projec... read more
View answer (1)

Get interview-ready with Top Infosys Interview Questions

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

I applied via Naukri.com and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How filenet upgradation is done, explain the steps?
  • Ans. 

    Filenet upgradation involves planning, testing, and implementing new versions of the Filenet software.

    • Plan the upgradation process by assessing system requirements and compatibility with existing infrastructure.

    • Backup all data and configurations to prevent data loss during the upgradation.

    • Test the new version in a controlled environment to ensure compatibility and functionality.

    • Implement the upgradation during a schedu...

  • Answered by AI
  • Q2. How data migration is done in filenet?
  • Ans. 

    Data migration in Filenet involves exporting data from one system and importing it into another while ensuring data integrity.

    • Plan the migration process including identifying data to be migrated, mapping data fields, and setting up migration tools.

    • Export data from the source system using Filenet export tools or APIs.

    • Transform the data if necessary to match the target system's data structure.

    • Import the data into the tar...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Infosys Filenet Administrator interview:
  • Filenet
Interview preparation tips for other job seekers - learn well, real time scenarios should be focused mainly.

Skills evaluated in this interview

Top Infosys Filenet Administrator Interview Questions and Answers

Q1. how filenet upgradation is done, explain the steps?
View answer (1)

Filenet Administrator Interview Questions asked at other Companies

Q1. how filenet upgradation is done, explain the steps?
View answer (1)

Jobs at Infosys

View all

Consultant Interview Questions & Answers

user image Anonymous

posted on 25 Sep 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Why should we use react js
  • Ans. 

    React JS is a popular JavaScript library for building user interfaces.

    • Efficient and fast rendering with virtual DOM

    • Component-based architecture for reusability and maintainability

    • Support for server-side rendering for improved SEO

    • Large community and ecosystem for support and resources

  • Answered by AI
  • Q2. Error loading in react js
  • Ans. 

    Error loading in React JS can be caused by various reasons such as incorrect file paths, syntax errors, or network issues.

    • Check if the file paths in your import statements are correct

    • Look for syntax errors in your code, such as missing commas or semicolons

    • Ensure that your network connection is stable and there are no CORS issues

    • Use browser developer tools to check for any console errors or network requests failing

  • Answered by AI
  • Q3. What is useMemo hook
  • Ans. 

    useMemo is a React hook that memoizes the result of a function to optimize performance by avoiding unnecessary re-computations.

    • useMemo is used to memoize expensive calculations so that they are only computed when dependencies change.

    • It takes a function and an array of dependencies as arguments.

    • The memoized value is only recalculated when one of the dependencies has changed.

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

(2 Questions)

  • Q1. Educational background
  • Q2. Explain your last project in detail
  • Ans. 

    Developed a mobile app for tracking daily water intake and hydration levels

    • Researched user needs and preferences for water intake tracking

    • Designed user-friendly interface with customizable water intake goals

    • Implemented features for tracking hydration levels and sending reminders

    • Conducted user testing to gather feedback for improvements

  • Answered by AI

Skills evaluated in this interview

Top Infosys Consultant Interview Questions and Answers

Q1. How Data Flow in SCOM monitoring Tool? DB name for SCOM and DB queries for Data Grooming. Values for Operations Console Grooming How to unseal the sealed management pack Names of Management Packs you have worked on and steps to install the ... read more
View answer (1)

Consultant Interview Questions asked at other Companies

Q1. How would you pass an entry for travel expenses incurred and paid by employee and was reimbursed? How would the end to end flow happens
View answer (8)

PDA Interview Questions & Answers

user image Anonymous

posted on 18 Nov 2024

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

I applied via campus placement at Dr DY Patil Institute of Technology (Womens Polytechnic), Pune and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain Inheritence with real world examples
  • Q2. Difference between list and array
Round 2 - HR 

(2 Questions)

  • Q1. Introduce Yourself
  • Q2. What are some platforms you use to study Coding

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Find 2nd max element.
  • Ans. 

    Find 2nd max element in an array of strings.

    • Sort the array in descending order

    • Return the element at index 1

  • Answered by AI
  • Q2. Sort strings on the basis of city.
  • Ans. 

    Sort strings based on city names.

    • Use Arrays.sort() method with a custom Comparator to sort strings based on city names.

    • Create a Comparator that compares the city names of two strings.

    • Example: String[] cities = {"New York", "London", "Paris"};

    • Example: Arrays.sort(cities, (a, b) -> a.compareTo(b));

  • Answered by AI
Round 2 - Behavioral 

(2 Questions)

  • Q1. How did you handle team conficts.
  • Ans. 

    I addressed team conflicts by promoting open communication, active listening, and facilitating constructive discussions.

    • Encouraged team members to express their concerns and viewpoints openly

    • Acted as a mediator to resolve conflicts and find common ground

    • Implemented team-building activities to improve collaboration and trust

    • Provided constructive feedback and guidance to help team members work through conflicts

  • Answered by AI
  • Q2. A struggle you would like to tell.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for technical round, managerial round focuses on team ability and design.

Skills evaluated in this interview

Java Technical Lead Interview Questions asked at other Companies

Q1. Internals of JVM. Where is class , variables , objects stored in JVM
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Explain the special procurement process
Round 2 - HR 

(1 Question)

  • Q1. Why you want yo leave your current organization?

Top Infosys Senior Consultant Interview Questions and Answers

Q1. What do understand by umask value and what are the by default values of umask if I create a file or a directory as a user and root?
View answer (1)

Senior Consultant Interview Questions asked at other Companies

Q1. 1. What's the use of update sets and how do you move update set from one instance to another? Once you imported the update set, what will you do? To check the customisations, You need to do open the update set and do something. What is that... read more
View answer (3)

Infosys Interview FAQs

How many rounds are there in Infosys interview?
Infosys interview process usually has 2-3 rounds. The most common rounds in the Infosys interview process are Technical, HR and Aptitude Test.
How to prepare for Infosys 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 Infosys. The most common topics and skills that interviewers at Infosys expect are SDLC, Java, Agile, Project Management and Performance Engineering.
What are the top questions asked in Infosys interview?

Some of the top questions asked at the Infosys interview -

  1. What is your strong point in terms of technical knowledge? Like JAVA, C, C++. ...read more
  2. 1. what is the difference between exception and error. How did u solve the erro...read more
  3. 1. Journal entry for Purchase with GST 2. Explain any one Ind AS 3. What is SAP...read more
How long is the Infosys interview process?

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

Tell us how to improve this page.

Infosys Interview Process

based on 4.8k interviews

Interview experience

4.1
  
Good
View more
Join Infosys Creating the next opportunity for people, businesses & communities

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
View all

Infosys Reviews and Ratings

based on 39.4k reviews

3.6/5

Rating in categories

3.7

Skill development

3.7

Work-life balance

2.7

Salary

4.1

Job security

3.7

Company culture

2.7

Promotions

3.3

Work satisfaction

Explore 39.4k Reviews and Ratings
Dot Net Software Developer - Gurugram

Hyderabad / Secunderabad,

Chennai

+1

2-7 Yrs

₹ 5-15 LPA

GEN AI Consultant

Bangalore / Bengaluru

5-10 Yrs

Not Disclosed

SAP BODS Consultant

Bangalore / Bengaluru

5-9 Yrs

Not Disclosed

Explore more jobs
Technology Analyst
55.6k salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Senior Systems Engineer
50.6k salaries
unlock blur

₹2.8 L/yr - ₹8 L/yr

System Engineer
39.5k salaries
unlock blur

₹2.5 L/yr - ₹5.5 L/yr

Technical Lead
30.7k salaries
unlock blur

₹5.1 L/yr - ₹19.5 L/yr

Senior Associate Consultant
27.9k salaries
unlock blur

₹4.5 L/yr - ₹16.8 L/yr

Explore more salaries
Compare Infosys with

TCS

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.8
Compare

Accenture

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