Open In App

IFM Engineering Interview Experience for Automation Test Engineer

Last Updated : 02 Aug, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

Interview Round 1: It was a 20-25 minutes interview on MS Teams.

  • Interviewer: Tell me something about yourself.
  • Me: Introduced myself (My name, family background, My town, Schooling, College, Grades, Projects, achievements, skills, strengths, weaknesses, hobbies, and so on).
  • Interviewer: “Are you looking for a job or an internship?”
  • Me: I’m looking for an Internship, and I’m also open to a Job too.
  • Interviewer: if you had an internship?
  • Me: no.
  • Interviewer: In Which language You are comfortable?
  • Me: I am comfortable with C Language (But I am aware of Java and python too).
  • Interviewer: Write a program for the Fibonacci series in C language (If you want you can use any online editor).
  • Me: Opened online editor https://www.programiz.com/c-programming/online-compiler/ and my solution is below

C




#include<stdio.h>  
int main()  
{  
    int n1 = 0, n2 = 1, n3, count, num;  
    printf("Enter the number of terms:");  
    scanf("%d", &num);  
    printf("%d%d", n1, n2);
    for(count = 3; count <= num; count++)  
    {  
        n3 = n1 + n2;  
        printf("%d", n3);  
        n1 = n2;  
        n2 = n3;  
    }  
    return 0;  
}


Note: I missed some syntax here but realized and resolved it before submitting my code also I explained a bit about my solution.

Suggestion: I would suggest doing practice from sites like GeeksforGeeks, Hackerrank, etc. as it will give the confidence to solve problems.

  • Interviewer: How many hours a week would you be able to work If you got an Internship?
  • Me: For the Internship, I am ready to work for 8-9 hours a week.

Note: Some other questions were quite general.

  • Interviewer: Lastly I wish you ALL THE BEST.

Verdict: Selected.


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads