Round-2: Online Test (Aptitude and Coding)

  • The second round consisted of 14 Aptitude questions and 2 Coding Questions.
  • Test Duration: Total: 1 hour and 14 minutes (14 minutes for 14 aptitude questions and 1 hour for 2 coding questions)
  • The aptitude test was fully comprised of logical reasoning questions (direction, series, patterns, etc.). They were easy and pretty much doable in 14 minutes.
  • Two Coding questions were of a fairly easy to medium level.

1. Pattern Printing

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

Code :

Java




/*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

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 w3wiki, 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.

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.

Similar Reads

Round-1: Shortlisting For Online Test

The first round was the shortlisting round; we applied through our TPO portal, and after 5 days, the company released the shortlisted student list and sent a preplacement talk and test link via email. Suggestion: I would suggest keeping your CGPA above 8. It will help you get shortlisted for the test in almost every company....

Round-2: Online Test (Aptitude and Coding)

The second round consisted of 14 Aptitude questions and 2 Coding Questions. Test Duration: Total: 1 hour and 14 minutes (14 minutes for 14 aptitude questions and 1 hour for 2 coding questions) The aptitude test was fully comprised of logical reasoning questions (direction, series, patterns, etc.). They were easy and pretty much doable in 14 minutes. Two Coding questions were of a fairly easy to medium level....

Round-3: (Technical Interview Round 1)

...

Round-4: (Technical Interview Round 2)

25 students were selected for the software developer role and 6 students were selected for the QA role interviews. The shortlisted student list was shared via email on the very next day of the test. I got a call from the panelist at around 10 a.m. saying your interview would be from 12 p.m. to 1 p.m.My interview was on Microsoft Teams. The interview started with a standard question (Introduction) After that, he asked, Do you have any prior knowledge of testing? Then he asked me to write all the test cases related to the login page of the banking website. Ref Article: https://artoftesting.com/login After that, he asked me to write one code, which was very simple. Then he asked me, Do you have an idea about Databases? I said, “Yes I have”. Then he gave me 2 tables and 3 Problem statements and asked me to write SQL queries for them. I was able to write all the queries correctly, and he was impressed with this. Then he asked me some basic web development questions. 1. How will you know if the website is real or fake => HTTPS protocol 2 Why react? => https://www.geeksforgeeks.org/why-choose-react-for-web-development/ This was all about the first technical interview; it was a very good round, the interviewer was impressed, and he told me that he was sending me to the second round of the interview itself....

Contact Us