Open In App

In Time Tec Interview Experience

I clearly remember it was July 2019, almost 8 months before the pandemic struck. A little background about me, I’m a B Tech graduate from Computer Engineering who graduated in 2020. I was sitting in the waiting area of the company I went to for my interview along with 29 other people, most of them from my college only. We all were suited according to the interview and also according to the instructions given by our Training and Placement Head. I kept tapping my feet in nervousness, sweating profusely waiting for the process to start. 

Round 1(Aptitude Test): The first round of interview started with an aptitude test, 30 minutes for 25 questions which were ranging from easy to moderate in terms of difficulty. 



Round 2(Coding): The second was the coding round. 

Round 3(Technical): The third round of interviews was the technical round. I was called in a cabin where I was greeted by two interviewers. One of them looked like he had some technical knowledge, the other one was just there to make me doubt my technical knowledge. The fun part began after the formal introduction. 



The interview questions were as follows:-

Interviewer 1: Why did you write your code in python?

Me: Sir, python is a high level interpreted language which has many inbuilt functions which make it easy to write code.

Interviewer 2: I never use python, it makes you lazy, if I were at your place I would have written the code in C++.

Me: Yes sir, it is true, python makes you lazy but it has its own advantages – like it is an interpreted language so it is helpful in rapid testing and supports many libraries.

Interviewer 2: True, name some of the commonly used libraries.

Me: I have used Math, Numpy, turtle, OpenCV and some other(I don’t exactly remember all the names).

Interviewer 1: Good, so write a program to print Hello World using an if-else block. 

Me: (Thinking hard for 2 minutes) Can I use C programming language?

Interviewer 1: Yeah sure, Go Ahead.

Me:(Wrote this code)




#include <stdio.h>
  
int main() {
  
    if(!printf("Hello")){
        
        
    }
  else
  {
         printf("World");
    }
    
       return 0;
    
}

Interviewer 2: Explain it.

Me: The printf function in C language gives the number of characters inside the quotes so the if block will only run if the inside block returns 0. But in this case the printf returns 5, combined with a negation operator which results in 0, so the if block won’t run and else block will. Hence the output will be Hello World. ( They seem impressed).

Interviewer 1: So which is your favorite subject?

Me:  I like both Operating System and DBMS.

Interviewer 1: * Asks some basic questions on DBMS*

 Me: *Answers them confidently and probably correctly*

Interviewer 1: So what are views?

Me: Views are virtual tables which are used to either store complete tables or partial data from tables.

Interviewer 2: What if we delete data from views, will it reflect it original table too.

Me: Yes the original table will show the changes too but there would be some discrepancies in the data if the view stores data from intersection of two or more tables.

Interviewer 2: Good. 

And then both the interviewers kept on asking some basic questions on DBMS and OS. There were some other questions on Data Structures that were not that tricky. The whole interview lasted for more than 35 minutes in which I also had to explain my internship project which I did perfectly.

Round 4(HR Round): The last round of the interview was the HR round.

After a week I was called inside the Training cell and was informed that I’ve been selected. I was feeling ecstatic, but I had to revert to the company if I wanted to join by the end of the day. But that’s a story of another time.  


Article Tags :