Upload Button Icon Add office photos

Infotech Global

Compare button icon Compare button icon Compare

Filter interviews by

Infotech Global Interview Questions and Answers

Updated 30 Jun 2022

Infotech Global Interview Experiences

Popular Designations

4 interviews found

I applied via Walk-in and was interviewed in May 2022. There were 2 interview rounds.

Round 1 - Group Discussion 

Dicuss the topic in group

Round 2 - Assignment 

Quiz aasignment paragraph telephonic conversation

Interview Preparation Tips

Interview preparation tips for other job seekers - Attend interview search job get updated related to jobs

Senior Telecalling Officer Interview Questions asked at other Companies

Q1. What is bank what is credit card what is cibil score
View answer (1)

I applied via Company Website and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Which company is better?
  • Q2. Why you choose this company?
  • Ans. 

    I chose this company because of its strong reputation in the industry and its commitment to innovation.

    • The company has a proven track record of success and is highly regarded in the industry.

    • I was impressed by the company's commitment to innovation and staying ahead of the competition.

    • The company's values align with my own, particularly in terms of customer satisfaction and quality.

    • I have heard positive feedback from c...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I m interested to Attend this interview to Need a money and Knowledge.

Technical Marketing Interview Questions asked at other Companies

Q1. Type of clutch plate
View answer (1)
Infotech Global Interview Questions and Answers for Freshers
illustration image

I was interviewed before Oct 2019.

Interview Questionnaire 

1 Question

  • Q1. What is your responsibility toward the company

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm n confidence

Database Administrator DBA Interview Questions asked at other Companies

Q1. How to load csv file into a database from command prompt
View answer (2)

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

Interview Questionnaire 

1 Question

  • Q1. L1/L2 level of question were asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - THe interview was super cool.

Senior Database Administrator Interview Questions asked at other Companies

Q1. If we got performance issue after migration wat action you will take.
View answer (2)

Infotech Global interview questions for popular designations

 Technical Marketing

 (1)

 Senior Telecalling Officer

 (1)

 Senior Database Administrator

 (1)

 Database Administrator DBA

 (1)

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was online 60min test.

Round 2 - Aptitude Test 

It was offline 30 min test.

Round 3 - Technical 

(2 Questions)

  • Q1. Oops,dbms,css,html,dsa,java.
  • Q2. It was very friendly .

Interview Preparation Tips

Topics to prepare for Apmosys Technologies Software Developer interview:
  • Java
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic java questions along with aptitude questions.

Round 2 - Technical 

(1 Question)

  • Q1. Basic oops concept, java functionalities, spring framework.
Round 3 - HR 

(1 Question)

  • Q1. Basic Hr questions, when you can join, expected ctc...
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. What are the 4 principles of oops?
  • Ans. 

    The 4 principles of OOP are Inheritance, Encapsulation, Abstraction, and Polymorphism.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Encapsulation restricts access to certain components within a class, protecting the data.

    • Abstraction hides complex implementation details and only shows the necessary features.

    • Polymorphism allows objects to be treated as instances of their parent class.

  • Answered by AI
  • Q2. What is the difference between string buffer and string builder?
  • Ans. 

    String buffer is synchronized and thread-safe, while string builder is not synchronized and faster.

    • String buffer is synchronized, making it thread-safe for use in multi-threaded environments.

    • String builder is not synchronized, providing better performance in single-threaded applications.

    • String builder is faster than string buffer due to lack of synchronization overhead.

    • Example: StringBuffer sb = new StringBuffer(); Str

  • Answered by AI
  • Q3. Why strings are immutable?
  • Ans. 

    Strings are immutable in order to ensure data integrity and security.

    • Immutable strings prevent accidental data modification, ensuring data integrity.

    • Immutable strings enhance security by preventing unauthorized access or tampering.

    • Immutable strings allow for more efficient memory management and optimization.

    • Example: 'Hello' cannot be changed to 'Hella' directly, a new string must be created.

  • Answered by AI
  • Q4. What are the different types of exception in java?
  • Ans. 

    There are two types of exceptions in Java: checked exceptions and unchecked exceptions.

    • Checked exceptions are checked at compile time and must be handled using try-catch or throws keyword.

    • Unchecked exceptions are not checked at compile time and include RuntimeException and its subclasses.

    • Examples of checked exceptions include IOException, SQLException, and ClassNotFoundException.

    • Examples of unchecked exceptions include...

  • Answered by AI
  • Q5. Explain linear search algorithm.
  • Ans. 

    Linear search is a simple searching algorithm that sequentially checks each element in a list until a match is found.

    • Iterate through each element in the list

    • Compare the current element with the target value

    • Return the index if a match is found, otherwise return -1

  • Answered by AI
  • Q6. Difference between JDK jvm and jre
  • Ans. 

    JDK includes JRE and development tools, while JRE includes only the Java Runtime Environment.

    • JDK stands for Java Development Kit, which includes JRE and development tools like compilers and debuggers.

    • JRE stands for Java Runtime Environment, which includes JVM and libraries necessary to run Java applications.

    • JVM stands for Java Virtual Machine, which is responsible for executing Java bytecode.

    • JDK is used for developing ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare all the skills which you are mentioned in your cv.

Skills evaluated in this interview

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

Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself
Round 2 - Technical 

(1 Question)

  • Q1. 1 Project Explanation 2 SDLC & STLC. 3 Differentiate Smoke vs Sanity 4 What is Regression testing? 5 Bug life cycle. 6 Scenarios on real time example. 7 Questions on agile
  • Ans. 

    Interview questions for Software Engineer position

    • Project explanation should include details on the project's purpose, scope, and technologies used

    • SDLC (Software Development Life Cycle) and STLC (Software Testing Life Cycle) are methodologies used in software development and testing respectively

    • Smoke testing is a type of testing that checks if the basic functionalities of the software are working fine, while Sanity tes...

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

(1 Question)

  • Q1. All basic HR questions and salary discussion.

I applied via Recruitment Consulltant and was interviewed in Oct 2021. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Completely on java
Round 3 - Technical 

(1 Question)

  • Q1. Asked java questiona

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all Resume tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. Tell me if you have any past experience
Round 3 - HR 

(1 Question)

  • Q1. Technical Question and basic knowledge in post which you are applied

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't be afraid while speaking to HR and be confident while answering asked questions
Contribute & help others!
anonymous
You can choose to be anonymous

Infotech Global Interview FAQs

How many rounds are there in Infotech Global interview?
Infotech Global interview process usually has 2 rounds. The most common rounds in the Infotech Global interview process are Group Discussion and Assignment.
How to prepare for Infotech Global 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 Infotech Global. The most common topics and skills that interviewers at Infotech Global expect are Communication Skills, Application Support, SQL, Customer Service and IT Sales.

Recently Viewed

JOBS

Dealivore

No Jobs

REVIEWS

Adani Transmission

No Reviews

INTERVIEWS

Next Wave India

No Interviews

JOBS

DigiMaze

No Jobs

JOBS

Dna Labs

No Jobs

JOBS

4sight

No Jobs

JOBS

Zollege

No Jobs

SALARIES

Adani Transmission

SALARIES

Adani Transmission

No Salaries

SALARIES

Adani Transmission

Tell us how to improve this page.

Infotech Global Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
KPIT Technologies Interview Questions
3.4
 • 281 Interviews
View all

Infotech Global Reviews and Ratings

based on 37 reviews

3.6/5

Rating in categories

3.4

Skill development

3.7

Work-life balance

3.3

Salary

3.1

Job security

3.4

Company culture

3.3

Promotions

3.6

Work satisfaction

Explore 37 Reviews and Ratings
Software Engineer
36 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
21 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Survey Programmer
16 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
13 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Infotech Global with

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Tech Mahindra

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