Upload Button Icon Add office photos

Filter interviews by

Tetra Information Services Interview Questions and Answers

Updated 24 Sep 2022

Tetra Information Services Interview Experiences

Popular Designations

2 interviews found

IT Supporter Interview Questions & Answers

user image Anonymous

posted on 22 Jul 2022

I applied via Naukri.com and was interviewed in Jun 2022. There were 2 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 tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Desktop support and computer
  • Q2. It support problam internet

Interview Preparation Tips

Interview preparation tips for other job seekers - I am a hardworking person and do my work well

IT Supporter Interview Questions asked at other Companies

Q1. How do you handle a situation where a user is frustrated or upset with a technical issue they're facing?
View answer (2)

I applied via Job Portal and was interviewed before Sep 2021. There were 2 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 tips
Round 2 - HR 

(3 Questions)

  • Q1. What are your experience
  • Q2. What you know about AutoCAD
  • Ans. 

    AutoCAD is a computer-aided design software used for creating 2D and 3D designs.

    • AutoCAD is developed and marketed by Autodesk.

    • It is widely used in architecture, engineering, and construction industries.

    • AutoCAD supports various file formats such as DWG, DXF, and DWF.

    • It offers features like layers, blocks, and annotations for efficient design creation.

    • AutoCAD also has a scripting language called AutoLISP for automation o

  • Answered by AI
  • Q3. What is salary expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - Cool, don't panic. Everyone is mature. Don't hesitate to question.

Engineer- Customer Support Interview Questions asked at other Companies

Q1. If the customer is very irate and he is speaking profanity,how will you deal with them?
View answer (3)

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Verbal,logical thiniking questions

Round 2 - Coding Test 

Medium level questions like 2d array reverse , sort 2d array

Interview Preparation Tips

Interview preparation tips for other job seekers - concentrate on problem solving questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Objective test,coding test,technical test

Round 2 - Coding Test 

Python,c++,java,html,css

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Round 1: Round 1 was an MCQ exam. The time allotted was 45 minutes and 30 questions had to be answered. There was negative marking for wrong answers(-1)

Round 2 - Coding Test 

This was a programming round. We were given 4 questions that had to be solved in 1 hour. The coding questions were-

Matrix multiplication
Program to write linear convolution
A question based on graphs
Another question on the 2D array.

Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Jun 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

It consists of Computer Science subjects and 2 to 3 apptitudee majorly os and c++

Round 2 - Coding Test 

3 question s are provided and they are from strings 2d array and graph

Round 3 - Technical 

(2 Questions)

  • Q1. Matrix multiplication
  • Q2. Valid paranthis or not and other dsa related questions
Round 4 - Technical 

(2 Questions)

  • Q1. About my project s
  • Q2. Doubly linked list implementation
  • Ans. 

    A doubly linked list is a data structure where each node contains a reference to the next and previous nodes.

    • Nodes have two pointers: one to the next node and one to the previous node.

    • Insertions and deletions can be done efficiently at both ends of the list.

    • Traversal can be done in both directions.

    • Example: DoublyLinkedListNode { data, prev, next }

  • Answered by AI
Round 5 - HR 

(2 Questions)

  • Q1. Some scenario based question
  • Q2. And general questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare dsa concepts and hr round also has some technical questions they will even reject in hr

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It is easy and you can clear it.

Round 2 - Coding Test 

It was moderate and hard questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be urself is wt the interviewer said
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Jul 2024.

Round 1 - Coding Test 

Contains 2 coding questions

Round 2 - Technical 

(5 Questions)

  • Q1. Oops, computer architecture based questions
  • Q2. Operating system questions
  • Q3. Print the matrix in spiral
  • Ans. 

    Print a matrix in spiral order

    • Start by printing the first row from left to right

    • Then print the last column from top to bottom

    • Continue in a spiral pattern until all elements are printed

  • Answered by AI
  • Q4. Computer architecture based questions
  • Q5. Tree, linkedlist based questions

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

They just gave me an assessment with a few questions to test my subject knowledge

Round 2 - One-on-one 

(1 Question)

  • Q1. They asked me all the general questions and a few technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - As long as you are updated in your field of study, you will crack it.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Nov 2024.

Round 1 - Aptitude Test 

The aptitude test evaluates problem-solving, coding skills, and logical reasoning, offering a fair challenge to showcase technical expertise.

Round 2 - One-on-one 

(2 Questions)

  • Q1. How do you handle conflicts in a team project?
  • Ans. 

    I address conflicts in team projects by promoting open communication, active listening, and seeking compromise.

    • Encourage open communication among team members to address conflicts early on

    • Practice active listening to understand all perspectives and concerns

    • Seek compromise and find common ground to resolve conflicts effectively

  • Answered by AI
  • Q2. What is the difference between an interface and an abstract class?
  • Ans. 

    Interface is a contract that defines the methods a class must implement, while an abstract class can have both implemented and abstract methods.

    • Interface can only have abstract methods and cannot have any implementation, while abstract class can have both abstract and implemented methods.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Interfaces are used to achieve multiple inheri...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Research the company, practice technical skills, communicate, showcase problem-solving abilities, stay confident, and demonstrate enthusiasm for the role

Tetra Information Services Interview FAQs

How many rounds are there in Tetra Information Services interview?
Tetra Information Services interview process usually has 2 rounds. The most common rounds in the Tetra Information Services interview process are Resume Shortlist, One-on-one Round and HR.
How to prepare for Tetra Information Services 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 Tetra Information Services. The most common topics and skills that interviewers at Tetra Information Services expect are Linux, Zimbra, IT Sales, MongoDB and MySQL.
What are the top questions asked in Tetra Information Services interview?

Some of the top questions asked at the Tetra Information Services interview -

  1. What you know about Auto...read more
  2. Desktop support and compu...read more
  3. It support problam inter...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Zeus Learning Interview Questions
3.3
 • 35 Interviews
Appsierra Interview Questions
4.4
 • 30 Interviews
ENH iSecure Interview Questions
4.1
 • 29 Interviews
XenonStack Interview Questions
3.2
 • 26 Interviews
Moris Media Interview Questions
4.3
 • 24 Interviews
MulticoreWare Interview Questions
4.2
 • 23 Interviews
View all

Tetra Information Services Reviews and Ratings

based on 34 reviews

3.2/5

Rating in categories

3.3

Skill development

3.1

Work-life balance

3.0

Salary

3.4

Job security

3.2

Company culture

3.1

Promotions

3.2

Work satisfaction

Explore 34 Reviews and Ratings
Linux Engineer
15 salaries
unlock blur

₹1.5 L/yr - ₹3.5 L/yr

Linux Administrator
7 salaries
unlock blur

₹1.5 L/yr - ₹5 L/yr

Java Developer
5 salaries
unlock blur

₹2.7 L/yr - ₹3.4 L/yr

PHP Developer
5 salaries
unlock blur

₹2.2 L/yr - ₹2.7 L/yr

Linux System Administrator
5 salaries
unlock blur

₹2 L/yr - ₹2.7 L/yr

Explore more salaries
Compare Tetra Information Services with

Northcorp Software

4.3
Compare

Apex CoVantage

3.1
Compare

Appsierra

4.4
Compare

Teleindia Networks

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