Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Mastech InfoTrellis Team. If you also belong to the team, you can get access from here

Mastech InfoTrellis Verified Tick

Compare button icon Compare button icon Compare
3.7

based on 37 Reviews

Filter interviews by

Mastech InfoTrellis Associate Interview Questions and Answers

Updated 15 Jul 2024

Mastech InfoTrellis Associate Interview Experiences

1 interview found

Associate Interview Questions & Answers

user image Anonymous

posted on 15 Jul 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Work on the general aptitude questions and answers

Round 2 - Coding Test 

Work on Java questions

Round 3 - Group Discussion 

Gave a topic and asked us to discuss on it

Round 4 - HR 

(1 Question)

  • Q1. Asked about myself and what I am looking forward to

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Galgotias College of Engineering and Technology, Greater Noida and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Question related to oops
  • Q2. Question related to coding
  • Q3. I was rejected after 2nd round
Round 2 - Technical 

(2 Questions)

  • Q1. Question related to advanced topic in oops
  • Q2. Question related to coding
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - status 

(2 Questions)

  • Q1. Can you take a assessment test?
  • Ans. 

    Yes, I am willing to take an assessment test to demonstrate my skills and knowledge.

    • I am open to taking any assessment test required for the position.

    • I believe that assessment tests are a valuable tool for evaluating candidates.

    • I am confident in my abilities and knowledge to perform well on the assessment test.

  • Answered by AI
  • Q2. How long have you been out of college?
  • Ans. 

    I have been out of college for 3 years.

    • I graduated in 2018.

    • I have been working in the industry since then.

    • I have gained valuable experience in my field during this time.

  • Answered by AI
Round 2 - recruiter 

(2 Questions)

  • Q1. How early can you start?
  • Q2. When can you start?
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Approached by Company

Round 1 - Technical 

(2 Questions)

  • Q1. Sql is the most important , Focus on Joins ,Sub query and Sql basics
  • Q2. Joining tables with different joins
  • Ans. 

    Joining tables with different joins in SQL

    • Use INNER JOIN to return rows when there is at least one match in both tables

    • Use LEFT JOIN to return all rows from the left table and the matched rows from the right table

    • Use RIGHT JOIN to return all rows from the right table and the matched rows from the left table

    • Use FULL JOIN to return rows when there is a match in one of the tables

  • Answered by AI

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Apr 2023. 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. What is zero coupon bond?
  • Ans. 

    A zero coupon bond is a bond that pays no interest and is sold at a discount to its face value.

    • Zero coupon bonds are also known as discount bonds.

    • Investors buy these bonds at a price lower than their face value and receive the full face value at maturity.

    • The difference between the purchase price and the face value is the investor's return.

    • Zero coupon bonds are often used for long-term investments, such as retirement sa...

  • Answered by AI
  • Q2. What is corporate actions and how you record those in books?
  • Ans. 

    Corporate actions are events initiated by a company that can affect its stock price and shareholders. They are recorded in books through various accounting entries.

    • Corporate actions include stock splits, dividends, mergers, acquisitions, and spin-offs.

    • These actions are recorded in books through journal entries and adjustments to accounts such as retained earnings and stockholders' equity.

    • For example, if a company decla...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Referral and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Given a list of integer find the longest increase sequence

Round 2 - One-on-one 

(2 Questions)

  • Q1. Given a list of integer find the first non repeating integer using stream API of Java 8.
  • Ans. 

    Find the first non-repeating integer in a list using Java 8 stream API.

    • Use Java 8 stream API to group integers by count

    • Filter out integers with count greater than 1

    • Return the first non-repeating integer

  • Answered by AI
  • Q2. Questions on core java like how internationally string works, hashmap etc And questions on database like what is indexing How to optimize SQL queries etc
Round 3 - One-on-one 

(3 Questions)

  • Q1. Given a Map of fruits with there price as a key value pair respectively, find the fruit whose price is maximum using Java 8 Stream API.
  • Ans. 

    Using Java 8 Stream API to find the fruit with maximum price in a Map of fruits.

    • Use entrySet() method to get a stream of key-value pairs from the Map.

    • Use max() method with Comparator.comparing() to find the entry with maximum price.

    • Extract the key (fruit) from the entry with maximum price.

  • Answered by AI
  • Q2. Write a program to check whether the parenthesis are properly balanced or not, means for every opening brace these should be a closing brace present.
  • Ans. 

    Program to check if parenthesis are properly balanced

    • Use a stack data structure to keep track of opening parenthesis

    • Iterate through the input string and push opening parenthesis onto the stack

    • When a closing parenthesis is encountered, pop from the stack and check if it matches the corresponding opening parenthesis

    • If stack is empty at the end and all parenthesis are matched, then the input has properly balanced parenthe

  • Answered by AI
  • Q3. Questions on core Java, Spring Boot, JPA, and Microservices you should have strong foundation in these topics questions asked like 1) what is API gateway 2) how 2 services communicate with eachother 3) ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared with practical coding examples. And you should have a very good understanding of foundational concepts. Give mock interviews and practice common coding problem.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Easy applitute question with 1 coding question at the end

Round 2 - Technical 

(3 Questions)

  • Q1. String builder vs string buffer
  • Ans. 

    String builder is faster but not thread-safe, while string buffer is slower but thread-safe.

    • String builder is recommended for single-threaded applications for better performance.

    • String buffer is recommended for multi-threaded applications to ensure thread safety.

    • Example: StringBuilder sb = new StringBuilder(); StringBuffer sbf = new StringBuffer();

  • Answered by AI
  • Q2. Final keyword in oops
  • Ans. 

    The final keyword in OOP is used to restrict the user from changing the value of a variable, overriding a method, or inheriting from a class.

    • Final variable: value cannot be changed once assigned

    • Final method: cannot be overridden in child classes

    • Final class: cannot be inherited by other classes

  • Answered by AI
  • Q3. Bsf graph explanation
  • Ans. 

    BSF graph explanation

    • BFS (Breadth-First Search) is a graph traversal algorithm that explores all the neighbor nodes at the present depth before moving on to the nodes at the next depth.

    • It uses a queue data structure to keep track of the nodes to visit next.

    • BFS is often used to find the shortest path in an unweighted graph.

    • Example: BFS can be used to find the shortest path in a maze from the starting point to the exit.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice interview

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Its a sectional round. It has 4 sections. Quants, Logical, pseudo code, Reasoning, Gaming

Round 2 - One-on-one 

(2 Questions)

  • Q1. Aptitude question solving
  • Q2. Resume related questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude question

Round 2 - Case Study 

Based on puzzle comprehension

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

25 MCQ , 2 short essays

Round 2 - One-on-one 

(1 Question)

  • Q1. Walk me through your profile
Round 3 - HR 

(1 Question)

  • Q1. Why should we hire you ?

Mastech InfoTrellis Interview FAQs

How many rounds are there in Mastech InfoTrellis Associate interview?
Mastech InfoTrellis interview process usually has 4 rounds. The most common rounds in the Mastech InfoTrellis interview process are Aptitude Test, Coding Test and Group Discussion.

Tell us how to improve this page.

Mastech InfoTrellis Associate Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Associate Interview Questions from Similar Companies

Wipro Associate Interview Questions
3.7
 • 143 Interviews
TCS Associate Interview Questions
3.7
 • 60 Interviews
View all
Mastech InfoTrellis Associate Salary
based on 19 salaries
₹4.5 L/yr - ₹14 L/yr
8% more than the average Associate Salary in India
View more details

Mastech InfoTrellis Associate Reviews and Ratings

based on 4 reviews

4.6/5

Rating in categories

4.3

Skill development

4.5

Work-life balance

4.5

Salary

3.8

Job security

4.5

Company culture

4.1

Promotions

4.4

Work satisfaction

Explore 4 Reviews and Ratings
Big Data Specialist
21 salaries
unlock blur

₹8.6 L/yr - ₹18 L/yr

Associate
19 salaries
unlock blur

₹4.5 L/yr - ₹14 L/yr

Quality Analyst
19 salaries
unlock blur

₹7.1 L/yr - ₹9 L/yr

Mdm Specialist
17 salaries
unlock blur

₹6.5 L/yr - ₹16 L/yr

Senior Technical Consultant
12 salaries
unlock blur

₹10 L/yr - ₹15 L/yr

Explore more salaries
Compare Mastech InfoTrellis with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

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