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 and Answers

Updated 10 Jun 2024

6 Interview questions

A Quality Assurance was asked 12mo ago
Q. How do you convert an array into an 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));

A Quality Assurance was asked 12mo ago
Q. What are the different ways of declaring a 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");

Quality Assurance Interview Questions Asked at Other Companies

Q1. Explain your Project. Explain V model. Explain SDLC. Explain STLC ... read more
Q2. What is pdca cycle, why in spc cpk is required ? What is 4 M chan ... read more
Q3. What is validation, Qualifications and what is GMP, which role in ... read more
Q4. When setup approval required? What is difference between dock aud ... read more
asked in JK Tyres
Q5. What is the difference between a good product and a bad product?
A Quality Assurance was asked 12mo ago
Q. What is the difference between == and .equals() when comparing strings?
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.

A Quality Assurance was asked 12mo ago
Q. What is the difference between StringBuilder and StringBuffer?
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.

A Quality Assurance was asked 12mo ago
Q. What is the difference between PUT and PATCH methods?
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

A Quality Assurance was asked 12mo ago
Q. Write a SQL query to select the 3rd highest salary from an 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' valu...

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

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

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
  • Ans. 

    Key measures for checking work items include accuracy, completeness, consistency, and timeliness to ensure quality outcomes.

    • Accuracy: Verify that the work item meets specified requirements, e.g., a bug fix resolves the issue without introducing new errors.

    • Completeness: Ensure all necessary components are included, such as documentation and test cases for a new feature.

    • Consistency: Check that the work item aligns with e...

  • Answered by AI

Quality Assurance Interview Questions Asked at Other Companies

Q1. Explain your Project. Explain V model. Explain SDLC. Explain STLC ... read more
Q2. What is pdca cycle, why in spc cpk is required ? What is 4 M chan ... read more
Q3. What is validation, Qualifications and what is GMP, which role in ... read more
Q4. When setup approval required? What is difference between dock aud ... read more
asked in JK Tyres
Q5. What is the difference between a good product and a bad product?

I applied via Recruitment Consultant and was interviewed before Oct 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. What is Abstraction
  • Q2. Concept of hiding implementation

Interview Preparation Tips

Interview preparation tips for other job seekers - Not bad, good atmosphere, positive response from staff

I applied via Company Website and was interviewed before Jan 2021. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Tell me about yourself?
  • Q2. Normalization concept,Java basics inheritance overloading, encapsulation ,update table ,related to projects in final year
  • Q3. Situation based questions based on project

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and confident and be genuine whatever you explain that should be very specific to question and if u are feeling narvous then put a gentle smile on your face,if you don't know about question ask then try little bit and say sir I will read about this.
All the Best😊😊

I applied via Referral and was interviewed in Jul 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic c question

Interview Preparation Tips

Interview preparation tips for other job seekers - take time and answer them

I applied via Walk-in and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Html and css

Interview Preparation Tips

Interview preparation tips for other job seekers - Tell me about yourself
What motivates to you
Do your home work

I applied via LinkedIn and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Define sdlc
  • Ans. 

    SDLC stands for Software Development Life Cycle, which is a process used to design, develop, and test software.

    • SDLC is a structured approach to software development.

    • It consists of several phases including planning, analysis, design, implementation, testing, and maintenance.

    • Each phase has its own set of deliverables and objectives.

    • The goal of SDLC is to produce high-quality software that meets the needs of the end-users...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice

Skills evaluated in this interview

Are these interview questions helpful?

Software Engineer Interview Questions & Answers

TCS user image C2.20.17BEC0010 MUDDULURU RENUSREE VARMA

posted on 2 May 2021

Interview Questionnaire 

1 Question

  • Q1. What is difference between method overloading and method overriding?
  • Ans. 

    Method overloading is having multiple methods with the same name but different parameters. Method overriding is having a subclass method with the same name and parameters as a superclass method.

    • Method overloading is used to provide different ways of calling the same method with different parameters.

    • Method overriding is used to provide a specific implementation of a method in a subclass that is already defined in a supe...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare what ever you keep in resume

Skills evaluated in this interview

I appeared for an interview in Nov 2020.

Interview Questionnaire 

2 Questions

  • Q1. Tell me about your self
  • Q2. Technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Hi all any company are you attend the interview those are all same but the thing is your way of Talking ☺️ you have to know the min basic programming knowledge and you have to know how to talk politely first of all don't panic it's just the interaction between the you and another person if you are not performing well he doesn't cares he doesn't beat you or serious about you simply he will rejects so plz be calm and wait 1 sec for every ans you speak

I applied via Company Website and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Apti & programming

Interview Preparation Tips

Interview preparation tips for other job seekers - Be specific

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. difference between == and equals in str...read more
  3. Select 3 rd highest salary from employee ta...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Mphasis Interview Questions
3.3
 • 848 Interviews
Coforge Interview Questions
3.3
 • 589 Interviews
eClerx Interview Questions
3.2
 • 577 Interviews
EPAM Systems Interview Questions
3.7
 • 569 Interviews
Synechron Interview Questions
3.5
 • 378 Interviews
Tata Elxsi Interview Questions
3.7
 • 318 Interviews
Cyient Interview Questions
3.7
 • 309 Interviews
View all
Associate Information Technology Consultant
5.1k salaries
unlock blur

₹4.3 L/yr - ₹14.4 L/yr

Lead Consultant
4.6k salaries
unlock blur

₹16.4 L/yr - ₹30.5 L/yr

Associate Consultant
958 salaries
unlock blur

₹2.5 L/yr - ₹18.4 L/yr

Software Engineer
517 salaries
unlock blur

₹5 L/yr - ₹12 L/yr

Senior Software Engineer
383 salaries
unlock blur

₹12.4 L/yr - ₹21 L/yr

Explore more salaries
Compare ITC Infotech with

TCS

3.6
Compare

Mphasis

3.3
Compare

L&T Technology Services

3.2
Compare

Coforge

3.3
Compare
write
Share an Interview