Upload Button Icon Add office photos
Engaged Employer

i

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

3i Infotech Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

3i Infotech Software Tester Interview Questions and Answers

Updated 18 May 2024

3i Infotech Software Tester Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. 1 introduce 2. framework 3 oops 4 palindrome code
  • Q2. Framework explain in detail
  • Ans. 

    A framework is a set of guidelines, libraries, and tools used to develop and test software applications.

    • Framework provides a structure for organizing code and implementing common functionalities.

    • It helps in reducing development time and improving code quality.

    • Examples include Selenium for automated testing, Spring for Java development, and React for front-end web development.

  • Answered by AI
  • Q3. Oops concept with use of it
  • Ans. 

    Oops concepts are fundamental principles of object-oriented programming that help in organizing and designing code efficiently.

    • Encapsulation: bundling data and methods that operate on the data into a single unit (class)

    • Inheritance: allowing a class to inherit properties and behavior from another class

    • Polymorphism: ability of objects to take on multiple forms or have multiple behaviors

    • Abstraction: hiding the complex imp...

  • Answered by AI
  • Q4. Daily routine and responcibility

Skills evaluated in this interview

Interview questions from similar companies

Interview Preparation Tips

Skills: Communication, C++, C, Java Application Development, Database Management
College Name: KIIT University

Interview Preparation Tips

Round: Test
Duration: 1 hour

Round: Technical Interview
Tips: Study basic things thoroughly if you are going as a fresher.

Round: Group Discussion
Duration: 15 minutes

Round: HR Interview
Tips: Be confident!

College Name: CDAC Pune

I appeared for an interview in Sep 2017.

Interview Questionnaire 

4 Questions

  • Q1. Technical interview take by client technical person actually they are hiring for another client so they took total 3 technical round and final will HR round
  • Q2. Asking about life cycle of Dot net mvc contols entity frame work and SQL queries
  • Q3. Problem based on oops and SQL queries outputs
  • Q4. Basic questions about my self ,salary discussion basic formalities form I have to fill up

Interview Preparation Tips

Round: Test
Experience: There were around 15 objective question that includes mvc, c#.net and SQL server. It was very simple question like different types of filters,Acton results in mvc. Basic oops concept and dot net web page regarding

Round: Resume Shortlist
Experience: After completing test round another was technical round discussed maily for mvc and SQL server questions. Around 30 mint discussion. After qualify this round another round will start from client technical staff.

General Tips: It was for 2-3 year experience person very simple to crack but focus on you which profile you are looking for study interview questions from net
Skills: Dot net mve oops concept jQuery and SQL server

I applied via Company Website and was interviewed in Aug 2018. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Strong core java and sql
  • Q2. Everything from core java and simple sql queries
  • Q3. Core java, sql, spring, hibernate, rest, struts and other advance java basic questions

Interview Preparation Tips

Round: Techno manageral round
Experience: SDLC, scrum, project specific questions

General Tips: Do work on your resume and be specific to the technical skills you write in the resume. Be specific to the projects worked on. You will be asked questions according to your resume.

Deep study on core java and basics of advance and sql.
Skills: Communication, Body Language, Problem Solving, Analytical Skills, Presentation Skills
Duration: <1 week

I appeared for an interview in Sep 2019.

Interview Questionnaire 

1 Question

  • Q1. Pl sql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - y resume was referd through a guy. Later I got call from HR for interview schedule he asked me my expected ctc and Notice Period to which I clearly said 3 months. He scheduled my interview on weekends morning 8am I reached there by 8.30am The interview process got started late by 10am it was an walk in type interview 1 round was Technical I cleared that round and had a feedback session with HR he said we are processing u to next round which was Manager round there itself I told the HR my NP is 3months the Hr Told its not an issue.
Laterly after I had lunch by 2pm Hr came n told me that Manager is not available now so we will be conducting ur further round in weekdays.
Then there was no mail or call so I purposely mailed them still haven't got proper response from them, so at last I told my friend who referd me to ask for an update the same HR told him that they want Immediate joiner so we can't process him to further round. Wasted my whole day over there

I applied via Recruitment Consultant and was interviewed before Jan 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What Prog Languages known? Prior Software Experience? How good on U.S. Client Face to Face and telephonic interaction for projects?
  • Ans. 

    I am proficient in Java, Python, and C++. I have 2 years of experience in software development. I have excellent communication skills for client interaction.

    • Proficient in Java, Python, and C++

    • 2 years of software development experience

    • Excellent communication skills for client interaction

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I wasn't fluent or good in Programming languages but I was clear on the flowchart and the basic concept of OOPS. Also, I was confident about solving the scenarios given to me at interview rounds. I also had good experience in US customer handling over telephonic and Face to Face interaction.

I appeared for an interview before Mar 2021.

Round 1 - Face to Face 

(5 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round started with 1 DSA question related to Dynamic Programming and then the interviewer switched to questions revolving around fundamentals of Java and OOPS.

  • Q1. 

    Count Ways to Reach the N-th Stair Problem Statement

    You are provided with a number of stairs, and initially, you are located at the 0th stair. You need to reach the Nth stair, and you can climb one or tw...

  • Ans. 

    The task is to determine the number of distinct ways to climb from the 0th to the Nth stair, where you can climb one or two steps at a time.

    • Use dynamic programming to solve this problem efficiently.

    • Define a recursive function to calculate the number of ways to reach each stair.

    • Consider base cases for 0 and 1 stairs, and then use the recursive formula to calculate for N stairs.

    • Use modulo 10^9+7 to handle large numbers a...

  • Answered by AI
  • Q2. What are the various access specifiers in Java?
  • Ans. 

    Access specifiers in Java control the visibility of classes, methods, and variables.

    • There are four access specifiers in Java: public, private, protected, and default.

    • Public: accessible from any other class.

    • Private: accessible only within the same class.

    • Protected: accessible within the same package and subclasses.

    • Default: accessible only within the same package.

  • Answered by AI
  • Q3. How many types of memory areas are allocated by the JVM?
  • Ans. 

    JVM allocates 5 types of memory areas: Method Area, Heap, Stack, PC Register, and Native Method Stack.

    • Method Area stores class structures, method data, and runtime constants.

    • Heap is where objects are allocated and memory for new objects is dynamically allocated.

    • Stack stores local variables and partial results, and each thread has its own stack.

    • PC Register holds the address of the JVM instruction currently being execute...

  • Answered by AI
  • Q4. What do you mean by data encapsulation?
  • Ans. 

    Data encapsulation is the concept of bundling data with the methods that operate on that data, restricting access to the data from outside the bundle.

    • Data encapsulation is a fundamental principle of object-oriented programming.

    • It allows for the data to be hidden and only accessed through the defined methods.

    • Encapsulation helps in achieving data security and prevents accidental modification of data.

    • Example: In a class r...

  • Answered by AI
  • Q5. Can static methods be overridden?
  • Ans. 

    No, static methods cannot be overridden in Java.

    • Static methods belong to the class itself, not to any specific instance of the class.

    • Subclasses can have static methods with the same signature as the parent class, but they are not considered overridden.

    • Example: Parent class has a static method 'display()', and subclass also has a static method 'display()'. These are two separate methods, not an override.

  • Answered by AI
Round 2 - Face to Face 

(6 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

In this round, the interviewer first started asking questions related to Java and Spring Boot and then he switched to Hibernate. The interview however ended with the interviewer asking me some basic queries related to SQL.

  • Q1. What is dependency injection?
  • Ans. 

    Dependency injection is a design pattern where components are given their dependencies rather than creating them internally.

    • Allows for easier testing by providing mock dependencies

    • Promotes loose coupling between components

    • Improves code reusability and maintainability

    • Examples: Constructor injection, Setter injection, Interface injection

  • Answered by AI
  • Q2. What is the purpose of using @ComponentScan in class files?
  • Ans. 

    @ComponentScan is used in class files to enable component scanning for Spring beans.

    • Enables Spring to automatically detect and register Spring components (beans) within the specified package(s)

    • Reduces the need for manual bean registration in configuration files

    • Can specify base packages to scan for components, or use default behavior to scan the current package and its sub-packages

  • Answered by AI
  • Q3. Can we override or replace the embedded Tomcat server in Spring Boot?
  • Ans. 

    Yes, we can override or replace the embedded Tomcat server in Spring Boot.

    • Spring Boot allows for customization of embedded servers by excluding the default server dependency and adding a different server dependency.

    • For example, to replace Tomcat with Jetty, exclude Tomcat and add Jetty dependencies in the pom.xml file.

    • Configuration properties can also be used to customize the embedded server in Spring Boot applications

  • Answered by AI
  • Q4. What is the starter dependency of the Spring Boot module?
  • Ans. 

    The starter dependency of the Spring Boot module is spring-boot-starter.

    • The starter dependency provides a set of common dependencies for a specific type of application.

    • It helps in reducing the configuration overhead and simplifies the setup process.

    • For example, 'spring-boot-starter-web' includes dependencies for building web applications.

  • Answered by AI
  • Q5. What is Hibernate caching?
  • Ans. 

    Hibernate caching is a mechanism used to improve the performance of applications by reducing the number of database queries.

    • Hibernate caching stores frequently accessed data in memory to reduce the need for repeated database queries.

    • There are different levels of caching in Hibernate, such as first-level cache and second-level cache.

    • First-level cache is associated with the Session object and is enabled by default.

    • Second...

  • Answered by AI
  • Q6. What are the concurrency strategies available in Hibernate?
  • Ans. 

    Hibernate provides optimistic and pessimistic concurrency control strategies.

    • Optimistic concurrency control: Uses versioning or timestamp to check for concurrent updates.

    • Pessimistic concurrency control: Locks the database records to prevent concurrent updates.

    • Examples: @Version annotation for optimistic concurrency, LockMode.UPGRADE for pessimistic concurrency.

  • Answered by AI
Round 3 - HR 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

This is a cultural fitment testing round. HR was very frank and asked standard questions. Then we discussed about my
role.

  • Q1. What is something about you that is not included in your resume?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPACybage Software interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Aptitude, Java, Spring Boot, SQL, OOPSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Different between spring and springboot.
  • Ans. 

    Spring is a framework for building Java applications, while Spring Boot is a tool for quickly creating Spring-based applications.

    • Spring provides a comprehensive framework for building Java applications, while Spring Boot is a tool that simplifies the process of creating Spring-based applications.

    • Spring requires more configuration and setup, while Spring Boot provides a more streamlined approach.

    • Spring Boot includes an ...

  • Answered by AI
  • Q2. What is CORS in microservices
  • Ans. 

    CORS (Cross-Origin Resource Sharing) is a security feature that allows or restricts access to resources from different domains.

    • CORS is used to prevent unauthorized access to resources from different domains

    • It is implemented by adding specific headers to HTTP responses

    • CORS can be configured to allow or restrict access based on the origin domain

    • Examples of CORS headers include Access-Control-Allow-Origin and Access-Contr

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare in springboot, microservices, java8

Skills evaluated in this interview

I applied via LinkedIn and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics Of JS

3i Infotech Interview FAQs

How many rounds are there in 3i Infotech Software Tester interview?
3i Infotech interview process usually has 1 rounds. The most common rounds in the 3i Infotech interview process are Technical.
What are the top questions asked in 3i Infotech Software Tester interview?

Some of the top questions asked at the 3i Infotech Software Tester interview -

  1. oops concept with use of...read more
  2. framework explain in det...read more
  3. 1 introduce 2. framework 3 oops 4 palindrome c...read more

Tell us how to improve this page.

3i Infotech Software Tester Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

ITC Infotech Interview Questions
3.6
 • 336 Interviews
CitiusTech Interview Questions
3.4
 • 270 Interviews
Altimetrik Interview Questions
3.8
 • 217 Interviews
Cybage Interview Questions
3.8
 • 193 Interviews
ValueLabs Interview Questions
3.7
 • 191 Interviews
Xoriant Interview Questions
4.1
 • 181 Interviews
Globant Interview Questions
3.8
 • 173 Interviews
ThoughtWorks Interview Questions
3.9
 • 147 Interviews
Apexon Interview Questions
3.3
 • 140 Interviews
View all
3i Infotech Software Tester Salary
based on 29 salaries
₹2 L/yr - ₹6.7 L/yr
At par with the average Software Tester Salary in India
View more details

3i Infotech Software Tester Reviews and Ratings

based on 6 reviews

3.0/5

Rating in categories

2.7

Skill development

2.9

Work-life balance

2.9

Salary

2.8

Job security

3.0

Company culture

1.8

Promotions

2.9

Work satisfaction

Explore 6 Reviews and Ratings
Software Engineer
634 salaries
unlock blur

₹2.3 L/yr - ₹9.5 L/yr

Senior Software Engineer
421 salaries
unlock blur

₹4.8 L/yr - ₹17.6 L/yr

Software Developer
310 salaries
unlock blur

₹2 L/yr - ₹9.7 L/yr

Softwaretest Engineer
263 salaries
unlock blur

₹3 L/yr - ₹9.5 L/yr

Desktop Support Engineer
221 salaries
unlock blur

₹1.4 L/yr - ₹4.8 L/yr

Explore more salaries
Compare 3i Infotech with

ITC Infotech

3.6
Compare

Cybage

3.8
Compare

Xoriant

4.1
Compare

ValueLabs

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