Upload Button Icon Add office photos

Filter interviews by

IC Infotech Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Sale price on on day
  • Q2. Start working

Interview Preparation Tips

Interview preparation tips for other job seekers - Fofocus heavily on networking, tailoring your resume with relevant keywords, actively following up with potential employers, showcasing your sales skills in interviews through storytelling, and monitoring companies you're interested in to stay updated on opportunities.
Key points to remember:
Prioritize networking:
Utilize your network to connect with people in the industry, attend industry events, and leverage platforms like LinkedIn to build relationships with potential hiring managers.
Tailor your resume:
Include relevant sales keywords throughout your resume to catch the attention of recruiters and ensure your experience aligns with the job description.
Practice your sales pitch:
Prepare compelling stories from your past experiences to demonstrate your ability to close deals, overcome objections, and build rapport during interviews.
Follow up consistently:
After submitting applications, send personalized follow-up emails to maintain engagement with potential employers.
Research companies:
Actively monitor companies you're interested in by following their social media and news to stay informed about potential openings.
Highlight transferable skills:
Even if you lack direct sales experience, emphasize skills like communication, persuasion, relationship building, and problem-solving that translate well to a sales role.
Ask insightful questions:
During interviews, demonstrate your knowledge of the company and role by asking thoughtful questions that show your genuine interest.
Be enthusiastic and confident:
Convey a positive attitude and express your passion for sales to make a strong impression on potential employers.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(6 Questions)

  • Q1. What are some of the Design Patterns you have worked with?
  • Q2. What is your approach for a issue you came to know happened in Production.
  • Q3. If given a chance to lead a team will you take it up as a challenge of not how would you tackle it?
  • Q4. Are you able to work under pressure. How do you manage?
  • Q5. What do you understand by SOLID principle? Why do you think it is important.
  • Q6. Please solve the coding question provided ( a moderately difficult coding question provided). Help understand your approach and why you chose same. Explain edge caes if possible.

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush Up Job related skills.
Be able to demonstrate through practical approach.
Keep your theoretical approach flexible and more inclined with positive response than bluffing.
Keep confidence at core of and have a good communication practice.
Adhere to Interview rules for example be available with 1 working editor for coding or technical rounds. Be professional in your appearance and always refrain from asking feedback in the interview itself.
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jan 2025.

Round 1 - Coding Test 

A sequence was provided: 4181, 2684, 1597, 987, 610.
first 2 are given and write code for other value calculation using java 8

The second question required writing a reverse of a palindrome using both Java 8 streams. I was able to successfully write both and clear the first round.

Round 2 - Technical 

(6 Questions)

  • Q1. Interviewer was himself not knowing anything as it was walkin drive he was sitting infront of me and checking questions on phone Introduction that he inturrepted in between when I was introducing myself
  • Q2. What are the features of Java 17, specifically related to sealed classes, including their syntax and necessity, along with the potential errors encountered when invoking a sealed class?
  • Ans. 

    Java 17 introduces sealed classes to restrict inheritance and improve code maintainability.

    • Sealed classes are declared using the 'sealed' keyword followed by the permitted subclasses.

    • Subclasses of a sealed class must be either final or sealed themselves.

    • Errors may occur when trying to extend a sealed class with a non-permitted subclass.

  • Answered by AI
  • Q3. Java 8 feathers stream api, functional interface, Intermittent operator ,Ternary operator, Prediction,Bi predicate. Answered all successfully
  • Q4. Draw low level design of implementation of notify me if item is back in stock in a ecommerce application
  • Ans. 

    Implementation of 'notify me if item is back in stock' feature in an ecommerce application

    • Create a database table to store user notifications for out-of-stock items

    • Implement a service to check item availability and send notifications to subscribed users

    • Provide a user interface for users to subscribe to notifications for specific items

  • Answered by AI
  • Q5. All design patterns which I know. Asked me to implement adapter pattern on paper
  • Q6. Then given a problem that concurrent way perform operation on excell to decrease the response time

Interview Preparation Tips

Interview preparation tips for other job seekers - I always suggest staying away from these companies commonly referred to as WITCH (Wipro, Infosys, TCS, Cognizant, HCL). You will rarely encounter good interviewers there unless there is an extreme necessity. Interview was judging me on the basis of syntex by seeing in his phone. How can everyone write each and everything on copy. For the low level design first time in my 6 years carrier someone asked to design without using kafka or any other library like spring boot to achieve that add in reminder list problem 😂. At first it was my bad after holding a offer of almost 27 lakh I somehow agreed for giving interview. Second thing I also know that after Even clearing they cannot afford 30LPA which I asked. I just went there because from last 6.5 year I have never attended any walking or face to face interview so was curious for it. Currently also working with somewhat premium product development company only. My experience was very bad. May be it can get vary person to person.

Functional Testing Senior Consultant Interview Questions & Answers

Deloitte user image Anonymous

posted on 4 Feb 2025

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

I was interviewed in Jan 2025.

Round 1 - HR 

(2 Questions)

  • Q1. Current CTC, Expected CTC, Notice Period, Skill set
  • Q2. Open for Fixed term hire? Open for working from client location at Gurgaon? (3 days from office)
  • Ans. 

    Yes, open for fixed term hire and working from client location at Gurgaon for 3 days a week.

    • Open for fixed term hire

    • Willing to work from client location at Gurgaon for 3 days a week

  • Answered by AI
Round 2 - Technical 

(10 Questions)

  • Q1. Introduction, Current role and responsibilities
  • Q2. List out the achievements in current project, Tools used
  • Ans. 

    Implemented automated testing using Selenium WebDriver and JUnit in Agile environment

    • Implemented automated testing framework using Selenium WebDriver

    • Utilized JUnit for test case management

    • Worked in Agile environment to ensure continuous testing and integration

  • Answered by AI
  • Q3. Pilot vs Beta testing. How can newly developed functionality be tested via automation rather doing it manually?
  • Ans. 

    Pilot testing is done by a small group of users before the full release, while beta testing is done by a larger group of users. Automation testing can be used for regression testing, smoke testing, and performance testing.

    • Pilot testing involves a small group of users testing the functionality in a controlled environment.

    • Beta testing involves a larger group of users testing the functionality in a real-world environment.

    • ...

  • Answered by AI
  • Q4. Primary key vs Unique key in SQL, Query to find row having last id in sql
  • Ans. 

    Primary key uniquely identifies a record, while unique key allows only one instance of a value in a column. Query to find last id involves using ORDER BY and LIMIT.

    • Primary key enforces uniqueness and not null constraint on a column

    • Unique key enforces uniqueness but allows null values

    • To find row with last id, use ORDER BY id DESC LIMIT 1 in SQL query

  • Answered by AI
  • Q5. Explain Software Testing Life Cycle, Defect Life Cycle
  • Ans. 

    Software Testing Life Cycle (STLC) involves planning, designing, executing, and reporting on tests. Defect Life Cycle includes identification, logging, fixing, and retesting defects.

    • STLC includes requirements analysis, test planning, test design, test execution, and test closure.

    • Defect Life Cycle involves defect identification, defect logging, defect fixing, defect retesting, and defect closure.

    • STLC ensures that the so...

  • Answered by AI
  • Q6. What's the meaning of 303 status code in API? Put vs Delete method in API What is 3 point estimation technique in Agile?
  • Ans. 

    303 status code in API means 'See Other'. PUT method is used to update data, while DELETE method is used to remove data. 3 point estimation technique in Agile is used to estimate tasks.

    • 303 status code indicates that the resource can be found at a different URI and should be retrieved from there

    • PUT method is used to update an existing resource in the API

    • DELETE method is used to remove a resource from the API

    • 3 point esti...

  • Answered by AI
  • Q7. What kind of links and labels can be tagged to a bug in jira?
  • Ans. 

    Links and labels that can be tagged to a bug in Jira

    • Links: related issues, documents, websites

    • Labels: priority, severity, type, status

  • Answered by AI
  • Q8. Have you done shell scripting? What does grep, href commands do in unix?
  • Ans. 

    Shell scripting is a way to automate tasks in Unix/Linux systems. Grep is used to search for specific patterns in text files. Href is not a standard Unix command.

    • Shell scripting automates tasks by writing scripts in a Unix/Linux environment

    • Grep command is used to search for specific patterns in text files

    • Example: grep 'search_pattern' file.txt

    • Href is not a standard Unix command, it may be a typo or a custom script

  • Answered by AI
  • Q9. As a lead, how would you resolve conflict with a team member? As a lead, if you are given plenty of tasks to be completed with in a limited time frame. What would be your approach in doing them?
  • Ans. 

    To resolve conflict with a team member, communication is key. Prioritize understanding, address the issue calmly, find common ground, and work towards a solution together.

    • Listen to the team member's perspective and concerns

    • Communicate openly and calmly about the issue

    • Find common ground and areas of agreement

    • Work together to find a solution that benefits both parties

    • Seek input from other team members or a mediator if ne

  • Answered by AI
  • Q10. Open for relocating to Bangalore and working from client's office? (with no relocation bonus) Open for working in night / rotational shift? (with no additional compensation) Open for working in long exten...
  • Ans. 

    Open to relocating to Bangalore, working in night shifts, long hours, and 24X7 culture. Goal is to excel in automation testing.

    • Yes, open to relocating to Bangalore and working from client's office

    • Yes, open to working in night/rotational shifts

    • Yes, open to working in long extendable hours or 24X7 culture

    • Goal is to excel in automation testing

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Not a good experience. Some recruiters are very arrogant and have no respect for the people interviewing with them. They consider as themselves dummy kings, because they are working in Deloitte USI. I interacted with 4-5 recruiters for one opening (from Gurgaon / Hyderabad). One HR even said to me that I was not the only person interviewing with them, they have bunch of people to chose, also various other things were said in a very unprofessional and rude manner. She had no ethics of talking to an experienced resource, when I escalated this to the seniors, they immediately apologized for her behavior and I was then handled by another Senior HR

I applied via referral in Deloitte USI but to save their referral bonus (I guess), they rejected my profile on the portal and called me through Naukri.com. When I asked them the reason, they said its for a different profile them. however it was for the same one.
Also on their career site, it was not mentioned that role is of fixed term hire (for 2 years), but HR disclosed it later, during the conversation. (another discrepancy)

During my initial conversation, HR clearly said there won't be any night shifts and I would have to work from client's location in Gurgaon office. Although it is 2 year contractual role.
But during my technical interview, the person clearly said to me that I would have to relocate to Bangalore for working from client's secured ODC in office. Also there would be rotational/ night shifts (without any extra pay). Basically they were looking for someone who would devote his 24X7 time to the company for a minimal salary and does not demand for work life balance or weekends off

Neither the HR nor the interviewer opened their web camera during the video call. But HR kept asking me to keep my camera open, even during the waiting time
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Jan 2025.

Round 1 - Technical 

(21 Questions)

  • Q1. What is the Selenium architecture in relation to C#?
  • Q2. What are the concepts of Object-Oriented Programming (OOP) in relation to your project?
  • Q3. What are locators, and what are the different types of XPath?
  • Q4. Have you ever managed cookies and caches in automation?
  • Q5. How have you managed team members in your previous roles?
  • Q6. How do you manage a situation where resources are limited and there is a deadline for completing testing?
  • Q7. What is the defect life cycle?
  • Q8. What is test scenario?
  • Q9. What is the relationship between test coverage and a test matrix?
  • Q10. How do you handle conflicting situations when working on priority-based tasks?
  • Q11. What are the meanings of "Given," "When," and "Then" in Gherkin language? Please explain.
  • Q12. What is the difference between a scenario and a scenario outline?
  • Q13. What contributions have you made to the framework?
  • Q14. What information do you include in a POM (Project Object Model) file?
  • Q15. What are the differences between WebDriver and ChromeDriver?
  • Q16. Syntax of xpath
  • Q17. How do you manage dynamic elements on a webpage?
  • Q18. How do you inspect a drop-down element and write the corresponding syntax for handling drop-downs in Selenium?
  • Q19. What is the structure of a framework? Explain.
  • Q20. Explain feature file linking in relation to the step definition file?
  • Q21. What do you write in LINQ, what is its purpose, and how do you validate the database data against the user interface?

Interview Preparation Tips

Interview preparation tips for other job seekers - First, secure an interview and obtain an offer letter with a 40% salary increase. After that, negotiate with your current company; if the negotiations do not yield favorable results, use the same offer letter to apply to another company for a higher salary. Ensure to confirm the total cost to company (CTC) they are offering before attending interviews; if their budget does not align with yours, it would waste time for both parties.They may not respond to candidates though interview went well because they may move with lower salary expectations.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I was interviewed in Jan 2025.

Round 1 - Technical 

(5 Questions)

  • Q1. What is a polymorphism?
  • Q2. Can you explain difference between == and euqals()?
  • Q3. What is dependency inversion?
  • Q4. Can you explain ACID?
  • Q5. Please tell me about isolation levels
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - One-on-one 

(4 Questions)

  • Q1. What special attributes do you possess that make you a perfect fit for this role, considering that many individuals can perform car service?
  • Ans. 

    I possess excellent communication skills, problem-solving abilities, and a strong customer-centric approach.

    • Strong communication skills to effectively interact with customers and address their concerns

    • Proven problem-solving abilities to quickly resolve issues and provide satisfactory solutions

    • Customer-centric approach to prioritize customer satisfaction and build positive relationships

    • Ability to remain calm and compose...

  • Answered by AI
  • Q2. What skills do you possess that are relevant to the execution of this role?
  • Ans. 

    I possess strong communication skills, problem-solving abilities, and a customer-centric approach.

    • Excellent communication skills to effectively interact with customers and address their concerns

    • Strong problem-solving abilities to quickly resolve issues and provide solutions

    • Customer-centric approach to ensure customer satisfaction and retention

    • Ability to remain calm and patient in challenging situations

    • Experience in han...

  • Answered by AI
  • Q3. What attracted you to choose this company as your new employer?
  • Ans. 

    The company's strong reputation for excellent customer service and commitment to employee development attracted me.

    • Reputation for excellent customer service

    • Commitment to employee development

    • Positive reviews from current and former employees

  • Answered by AI
  • Q4. What's your salary expectations
  • Ans. 

    My salary expectations are in line with industry standards and based on my experience and qualifications.

    • Research industry standards for the position

    • Consider my experience and qualifications

    • Be prepared to negotiate based on job responsibilities and benefits package

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

(2 Questions)

  • Q1. Do you have experience
  • Ans. 

    Yes, I have 3 years of experience in customer service roles.

    • Worked as a customer service representative for 2 years at Company X

    • Handled customer inquiries, resolved complaints, and processed orders

    • Trained new employees on customer service best practices

  • Answered by AI
  • Q2. Are you dedicated to this role
  • Ans. 

    Yes, I am dedicated to this role and committed to providing excellent customer service.

    • I have a strong work ethic and always strive to exceed customer expectations

    • I am willing to go above and beyond to resolve customer issues and ensure their satisfaction

    • I am constantly seeking ways to improve my skills and knowledge in order to better serve customers

  • Answered by AI
Round 3 - Group Discussion 

Integrity and honesty

Interview Preparation Tips

Interview preparation tips for other job seekers - You must be confident and well-prepared with relevant job knowledge.

Test Analst Interview Questions & Answers

Coforge user image Anonymous

posted on 17 Feb 2025

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

I was interviewed in Jan 2025.

Round 1 - Technical 

(3 Questions)

  • Q1. What is interface? And why we use it?
  • Q2. Why we write WebDriver driver = new ChromeDriver();
  • Q3. WAP to reverse a string without reversing the numbers and symbols in the string.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Aug 2024.

Round 1 - HR 

(1 Question)

  • Q1. Basic introduction, last experience and salary
Round 2 - One-on-one 

(1 Question)

  • Q1. Basic intro ,About my city and what is customer service
Round 3 - One-on-one 

(1 Question)

  • Q1. Can you provide a basic introduction about yourself, including information about your family, your current residence, and your last work experience, as well as your motivation for wanting to join this job?
Round 4 - Versant round 

(1 Question)

  • Q1. Basic Grammer, reasoning, email writing and typing ,pronounciation
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - Case Study 

A case study in an Optum interview typically revolves around solving a real-world problem related to healthcare, data analysis, technology, or business strategy, given Optum’s focus on healthcare services and technology solutions. Here are some tips on how to approach a case study interview at Optum and a sample example:

Steps to Approach an Optum Case Study:

1. Understand the Problem Statement:

Take time to read the case study carefully and make sure you understand the key issue or question.

Identify the stakeholders involved (patients, healthcare providers, insurance companies, etc.) and the objective (cost reduction, improving patient outcomes, increasing efficiency, etc.).



2. Clarify Assumptions:

If there are any ambiguous elements, ask questions to clarify the problem.

You can also state your assumptions if you're making any, but be clear that these are assumptions.



3. Break Down the Problem:

Identify key data points you would need to analyze.

Break the problem into smaller pieces that can be addressed step-by-step.



4. Analyze:

Use frameworks like SWOT analysis, PESTLE analysis, or Porter’s Five Forces if applicable to the case.

In case of a data-related problem, try to identify key metrics (such as patient satisfaction, cost, quality of care, etc.) and how they can be improved or measured.

For technology-related cases, consider aspects like scalability, security, user experience, and integration with existing systems.



5. Propose a Solution:

Present your findings logically and suggest a solution based on your analysis.

Make sure to consider both short-term and long-term impacts on patient

Round 2 - HR 

(2 Questions)

  • Q1. When interviewing with Optum, you can expect a mix of technical, behavioral, and situational questions, especially considering their focus on healthcare services, technology, and data analysis. Here are so...
  • Q2. Done
Round 3 - Aptitude Test 

Computer typing should be 40 wpm. And optional question answer multiple choice questions

Interview Preparation Tips

Interview preparation tips for other job seekers - If you're looking to land a job at Optum, here’s a detailed guide on how to effectively position yourself for success in your job search:

1. Understand Optum’s Mission and Values

Optum is all about improving healthcare through technology and data analytics. Understanding this core mission is crucial, as you’ll need to demonstrate how your skills align with their vision of enhancing patient outcomes and driving efficiency in healthcare

Tell us how to improve this page.

Interview Questions from Similar Companies

Accenture Interview Questions
3.8
 • 8.2k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Deloitte Interview Questions
3.8
 • 2.9k Interviews
Teleperformance Interview Questions
3.9
 • 1.8k Interviews
Oracle Interview Questions
3.7
 • 897 Interviews
Mphasis Interview Questions
3.4
 • 806 Interviews
KPMG India Interview Questions
3.5
 • 804 Interviews
View all

IC Infotech Reviews and Ratings

based on 4 reviews

4.8/5

Rating in categories

3.0

Skill development

4.8

Work-life balance

2.9

Salary

3.0

Job security

3.0

Company culture

2.0

Promotions

3.9

Work satisfaction

Explore 4 Reviews and Ratings
Linux Administrator
4 salaries
unlock blur

₹4.3 L/yr - ₹5.4 L/yr

Explore more salaries
Compare IC Infotech with

Accenture

3.8
Compare

Capgemini

3.7
Compare

HCLTech

3.5
Compare

Teleperformance

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