Upload Button Icon Add office photos
Engaged Employer

i

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

ITC Infotech Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

ITC Infotech Quality Assurance Interview Questions, Process, and Tips

Updated 10 Jun 2024

ITC Infotech Quality Assurance Interview Experiences

1 interview found

Quality Assurance Interview Questions & Answers

user image Jayalakshmi Jaya

posted on 10 Jun 2024

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

I applied via Monster and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. Select 3 rd highest salary from employee table
  • Ans. 

    To select the 3rd highest salary from the employee table, you can use a SQL query with the 'LIMIT' and 'OFFSET' keywords.

    • Use a SQL query like 'SELECT salary FROM employee ORDER BY salary DESC LIMIT 1 OFFSET 2' to get the 3rd highest salary.

    • The 'ORDER BY' clause sorts the salaries in descending order, 'LIMIT 1' limits the result to 1 row, and 'OFFSET 2' skips the first two rows.

    • Make sure to adjust the 'OFFSET' value if

  • Answered by AI
  • Q2. Difference between put and patch
  • Ans. 

    Put is used to create or replace a resource, while patch is used to update a resource partially.

    • Put is idempotent, meaning multiple identical requests will have the same effect as a single request

    • Patch is not idempotent, as multiple identical requests may have different effects

    • Put requires the client to send the entire updated resource, while patch only requires the specific changes to be sent

  • Answered by AI
  • Q3. Difference between == and equals in string
  • Ans. 

    The == operator checks for reference equality, while the equals method checks for value equality in strings.

    • Use == to check if two string variables refer to the same object in memory.

    • Use equals() method to check if two string variables have the same sequence of characters.

    • Example: String str1 = "hello"; String str2 = "hello"; str1 == str2 will return false, but str1.equals(str2) will return true.

  • Answered by AI
  • Q4. Difference way of declaring String
  • Ans. 

    String can be declared using double quotes, single quotes, or the String constructor.

    • Declare using double quotes: String str1 = "Hello";

    • Declare using single quotes: String str2 = 'World';

    • Declare using String constructor: String str3 = new String("Java");

  • Answered by AI
  • Q5. Difference between String builder and String buffer
  • Ans. 

    String builder is not synchronized, while String buffer is synchronized.

    • String builder is faster than String buffer because it is not synchronized.

    • String buffer is thread-safe, while String builder is not.

    • String builder is preferred for single-threaded applications, while String buffer is preferred for multi-threaded applications.

  • Answered by AI
  • Q6. Convert array into arraylist
  • Ans. 

    Convert array to ArrayList of strings

    • Create a new ArrayList<String>

    • Use Arrays.asList() method to convert array to ArrayList

    • Example: String[] array = {"apple", "banana", "orange"}; ArrayList<String> list = new ArrayList<>(Arrays.asList(array));

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

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

Round 1 - One-on-one 

(1 Question)

  • Q1. They asked key measuresto check work item
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed before Dec 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is the explanation of agile methodologies?
  • Ans. 

    Agile methodologies are a set of principles and practices that prioritize flexibility, collaboration, and continuous improvement in software development.

    • Agile methodologies focus on iterative development, where requirements and solutions evolve through collaboration between self-organizing cross-functional teams.

    • They emphasize adaptability to change, with a focus on delivering working software frequently and responding...

  • Answered by AI
  • Q2. What are the test scenarios for a banking application?
  • Ans. 

    Test scenarios for a banking application involve testing various functionalities and features to ensure they work correctly and securely.

    • Testing user authentication and authorization processes

    • Testing fund transfer functionality, including different types of transfers (e.g. interbank, intrabank)

    • Testing bill payment functionality

    • Testing account balance display and transaction history accuracy

    • Testing security measures suc...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I applied via Company Website and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Everything about basics of software testing, bug life cycle, Selenium etc.
  • Q2. Your role and responsibilities in previous organization
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
No response
Round 1 - One-on-one 

(3 Questions)

  • Q1. Tell me something about yourself
  • Q2. Suppose there is a conflict between 2 colleagues how will you assign task to them
  • Q3. Difference between api and soap api
  • Ans. 

    API is a general term for any interface that allows communication between different software systems, while SOAP API is a specific type of API that uses the SOAP protocol for communication.

    • API is a general term for any interface that allows communication between different software systems

    • SOAP API is a specific type of API that uses the SOAP protocol for communication

    • API can use various protocols like REST, SOAP, GraphQ...

  • Answered by AI
Round 2 - Technical 

(3 Questions)

  • Q1. Explain BAU in your project
  • Q2. What is artifact in agile methodlogy
  • Ans. 

    Artifacts in agile methodology are tangible by-products of the development process that provide documentation and information for the team.

    • Artifacts include user stories, product backlog, sprint backlog, burndown charts, and release plans.

    • They help in communication, planning, and tracking progress throughout the project.

    • Examples of artifacts are wireframes, prototypes, test cases, and design documents.

    • Artifacts are ess...

  • Answered by AI
  • Q3. API testing and their features
  • Ans. 

    API testing involves testing the functionality, reliability, performance, and security of APIs.

    • API testing ensures that the API functions correctly, returns the expected results, and handles errors properly.

    • It involves testing different types of APIs such as REST, SOAP, and GraphQL.

    • API testing can be done manually or using automated tools like Postman, SoapUI, or JMeter.

    • Common features of API testing include endpoint t...

  • Answered by AI

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops concept , DBMS , os and tests your problem solving skill

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep calm and if you don't know the concept accept it

I applied via Campus Placement and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics of computer science subjects - operating system, computer networking, DBMS, data structures and algorithms.

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on core fundamentals and keep geeksforgeeks handy.

I applied via Campus Placement and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

General aptitude

Round 2 - Coding Test 

Let us C, Java

Round 3 - HR 

(1 Question)

  • Q1. Why should we hire you?

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay calm, & prepare with brain instead of emotions!

I applied via Company Website and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Self introduction

Interview Preparation Tips

Interview preparation tips for other job seekers - say individual ideas,plans, story's.say different opinions,speek confidentially, correctly answer Yes or no questions, correctly say interested and confidential job,

I appeared for an interview before Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 45 minutes
Round difficulty - Hard

All mcqs should answer with in time limit should have a lot of practice to solve in exam

  • Q1. 

    Water Jug Problem Statement

    You have two water jugs with capacities X and Y liters respectively, both initially empty. You also have an infinite water supply. The goal is to determine if it is possible to...

  • Ans. 

    The Water Jug Problem involves determining if a specific amount of water can be measured using two jugs of different capacities.

    • Start by considering the constraints and limitations of the problem.

    • Think about how the operations allowed can be used to reach the target measurement.

    • Consider different scenarios and test cases to come up with a solution.

    • Implement a function that takes the capacities of the jugs and the targe...

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

Easy and just basic questions very easy round

  • Q1. 

    Matrix Multiplication Task

    Given two sparse matrices MAT1 and MAT2 of integers with dimensions 'N' x 'M' and 'M' x 'P' respectively, the goal is to determine the resulting matrix produced by their multipl...

  • Ans. 

    Implement a function to multiply two sparse matrices and return the resulting matrix.

    • Create a function that takes two sparse matrices as input and returns the resulting matrix after multiplication.

    • Iterate through the non-zero elements of the matrices to perform the multiplication efficiently.

    • Ensure to handle the sparse nature of the matrices to optimize the multiplication process.

    • Consider the constraints provided to en...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 6 cgpaTata Consultancy Services (TCS) interview preparation:Topics to prepare for the interview - Dql, Data structures, Java, Operating system, Data scienceTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : preapre core subjects 
Tip 2 : be confident and answer clearly
Tip 3 : be strong with projects

Application resume tips for other job seekers

Tip 1 : good projects in ml and ai
Tip 2 : practical experience

Final outcome of the interviewSelected

Skills evaluated in this interview

ITC Infotech Interview FAQs

How many rounds are there in ITC Infotech Quality Assurance interview?
ITC Infotech interview process usually has 1 rounds. The most common rounds in the ITC Infotech interview process are Technical.
What are the top questions asked in ITC Infotech Quality Assurance interview?

Some of the top questions asked at the ITC Infotech Quality Assurance interview -

  1. Difference between String builder and String buf...read more
  2. Select 3 rd highest salary from employee ta...read more
  3. difference between == and equals in str...read more

Tell us how to improve this page.

ITC Infotech Quality Assurance Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.6k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Mphasis Interview Questions
3.4
 • 807 Interviews
EPAM Systems Interview Questions
3.7
 • 555 Interviews
Coforge Interview Questions
3.3
 • 531 Interviews
eClerx Interview Questions
3.3
 • 529 Interviews
Synechron Interview Questions
3.5
 • 366 Interviews
Tata Elxsi Interview Questions
3.8
 • 301 Interviews
View all
Associate Information Technology Consultant
5.1k salaries
unlock blur

₹3.8 L/yr - ₹15 L/yr

Lead Consultant
4.5k salaries
unlock blur

₹9 L/yr - ₹35 L/yr

Associate Consultant
906 salaries
unlock blur

₹2.5 L/yr - ₹17.5 L/yr

Software Engineer
501 salaries
unlock blur

₹3.5 L/yr - ₹14.1 L/yr

Senior Software Engineer
385 salaries
unlock blur

₹6.5 L/yr - ₹25.5 L/yr

Explore more salaries
Compare ITC Infotech with

Wipro

3.7
Compare

EPAM Systems

3.7
Compare

L&T Technology Services

3.3
Compare

Coforge

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