Open In App

EQ Technologic Interview Experience for QA Engineer (On-Campus)

EQ Technologic visited our campus for two roles: Software Developer and QA Engineer. As an ENTC student, I was eligible to apply for the QA Engineer Role. The process took a total of 5 rounds.

Round-1: Shortlisting For Online Test

Round-2: Online Test (Aptitude and Coding)

1. Pattern Printing



1
2* 3
4 * 5 * 6
7* 8 * 9 * 10

Code :






/*package whatever //do not write package name here */
import java.io.*;
import java.util.*;
  
class GFG {
    public static void main(String[] args)
    {
        printPattern(4);
    }
  
    public static void printPattern(int n)
    {
        int count = 1;
        for (int i = 1; i <= n; i++) {
            for (int j = 1; j <= i; j++) {
                System.out.print(count);
                if (j < i) {
                    System.out.print("*");
                }
                count++;
            }
            System.out.println();
        }
    }
}

Output
1
2*3
4*5*6
7*8*9*10



2. Remove Vowels from String

https://www.geeksforgeeks.org/program-remove-vowels-string/amp/

I solved both questions in 20 minutes and submitted them with all test cases passing.

Suggestion: I would suggest solving some aptitude questions online and doing practice on sites like GeeksforGeeks, Leetcode, etc., as it will give you the confidence to solve problems.

Tips: Solve the questions with a calm mind. Don’t stress yourself during the test because you have to answer 14 questions in 14 minutes.

Round-3: (Technical Interview Round 1)

Tips: Prepare the introduction properly (the first impression is the last impression), Master SQL, and learn how to write test cases (For QA Role)

Round-4: (Technical Interview Round 2)

Match the Cards

Tips: Prepare Test Cases for Apps like (Gmail, Whatsapp, Instagram, etc), and study testing fundamentals.

My HR interview was going to happen on next day, but I didn’t receive any update from the company.

So, this was all about my experience, I hope it will help you.


Article Tags :