Upload Button Icon Add office photos
Engaged Employer

i

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

Vishal Mega Mart Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Vishal Mega Mart Senior Test Engineer Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Jan 2021. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. DS/Algo question leetcode medium
  • Q2. Working code with edge cases.
  • Ans. 

    Working code with edge cases is code that has been tested with extreme inputs to ensure it functions correctly.

    • Edge cases are inputs that are unlikely to occur but can cause unexpected behavior if not handled properly.

    • Examples of edge cases include empty inputs, null values, and inputs at the limits of the data type's range.

    • Working code with edge cases should be thoroughly tested to ensure it functions correctly in all

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be authentic with your knowledge.
Core basic should be strong.
Should be ready for tricky questions.

Interview Preparation Tips

General Tips: It's not a World Cup final and you're not Tendulkar. So relax, you don't have the burden of a nation's expectation on you. If you've managed to understand the fundamentals of algorithms, data structures, OS etc., cracking interviews shouldn't be hard. If you've not, then I guess you need at least a couple of months of intense preparation.
College Name: NIT SURATHKAL

I applied via Naukri.com and was interviewed in Mar 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Virtual Interview - 3 rounds same day [DS & Algo, Java, Architecture/Product]

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good. Focus on problem solving and speed to clear 1st Round. Strong Java fundamentals upto Java 8,9 is enough to clear 2nd Round. Basic Design and Product Architecture knowledge can help clear the final round.

Believe yourself and keep working !!

I applied via Naukri.com and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. There were basically 2 technical round followed my 1 managerial round.
  • Q2. 1st Round involves everything about data structure and algorithm.
  • Q3. 2nd round involves everything related to core java and spring framework.
  • Q4. Managerial round was something like and technical only but comparatively easier than the above two round.There were some behavioural question as well.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good understanding of data structure and algorithm with difficulty level easy-medium.

Interview Questionnaire 

4 Questions

  • Q1. What will happen if I write without condition in for loop?
  • Ans. 

    The for loop will run indefinitely without any condition to terminate it.

    • The loop will continue executing until it is manually interrupted or the program crashes.

    • This can lead to a program becoming unresponsive or consuming excessive resources.

    • It is important to always include a condition in a for loop to control its execution.

  • Answered by AI
  • Q2. Difference between graph and tree?
  • Ans. 

    Graph is a non-linear data structure with cycles while tree is a hierarchical data structure without cycles.

    • Graph can have multiple starting points and paths between nodes while tree has only one root node and unique paths between nodes.

    • Graph can have cycles while tree is acyclic.

    • Graph can be directed or undirected while tree is always directed.

    • Examples of graphs include social networks, road networks, and computer net...

  • Answered by AI
  • Q3. Different data structures avaliable??
  • Ans. 

    Data structures are ways of organizing and storing data in a computer so that it can be accessed and used efficiently.

    • Arrays

    • Linked Lists

    • Stacks

    • Queues

    • Trees

    • Graphs

    • Hash Tables

  • Answered by AI
  • Q4. Write query to find the top five employee salary?
  • Ans. 

    Query to find the top five employee salaries

    • Use the SELECT statement to retrieve the employee salaries

    • Order the results in descending order using the ORDER BY clause

    • Limit the results to the top five using the LIMIT clause

  • Answered by AI

Skills evaluated in this interview

Round 1 - Technical 

(1 Question)

  • Q1. DSA question mostly coding

Interview Preparation Tips

Interview preparation tips for other job seekers - worst interview experience.
I went through 2 rounds, and believe I did well but I didn't hear back from the HR,
I tried to reach out to the hr to get the feedback but they are not gonna reply back,I tried to mail and call her but she just didn't reply

I applied via Naukri.com and was interviewed in Aug 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Most questions were based on array, string and few on backtracking and trees.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your concepts well, DSA is important but Core Java concepts are also important. good weightage was given to Spring Boot too. System Design was last round, very deep understanding was required. But since this was for SE-3 position (Mid level engineer), I think it is expected. LLD was not asked much apart from Design Principles and Patterns I have used in actual work.

Interview Questionnaire 

4 Questions

  • Q1. Sort algorithm , programming
  • Q2. Dot net basics
  • Q3. Top3rd highest salary using linq
  • Q4. How do you manage your team if 1 person out of team is not performing well

Interview Preparation Tips

Interview preparation tips for other job seekers - Do practice around data structure programming.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Jan 2022. There were 5 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 - Coding Test 

Data structures and algorithms

Round 3 - Technical 

(2 Questions)

  • Q1. System Design specific to domain
  • Ans. 

    System design specific to domain

    • Understand the domain and its requirements

    • Identify the key components and their interactions

    • Choose appropriate technologies and architecture

    • Consider scalability and maintainability

  • Answered by AI
  • Q2. Design uber both rider and driver apps
  • Ans. 

    Designing Uber apps for both riders and drivers

    • For the rider app, focus on ease of use and quick booking process

    • For the driver app, focus on real-time updates and navigation

    • Both apps should have a rating system and payment integration

    • Implement features like surge pricing, ride history, and in-app messaging

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Hiring Manager Technical discussion about overall fit.
Round 5 - HR 

(1 Question)

  • Q1. Understanding expectation

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare algorithms alteast LC medium level and system design and be good in your domain.

Skills evaluated in this interview

I appeared for an interview before May 2021.

Round 1 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Hard

They have asked to write Java programs for finding list of angrams present in an array nd some of api response codes nd there uses plus various rest methods nd their differences

  • Q1. 

    Find All Anagrams Problem Statement

    Given a string STR and a non-empty string PTR, identify all the starting indices of anagrams of PTR within STR.

    Explanation:

    An anagram of a string is another string ...

  • Ans. 

    Given a string STR and a non-empty string PTR, find all starting indices of anagrams of PTR within STR.

    • Create a frequency map of characters in PTR.

    • Use sliding window technique to check anagrams in STR.

    • Return the starting indices of anagrams found.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

It was dynamic programming round have been asked Java programs

  • Q1. 

    Sum of Digits Problem Statement

    Given an integer 'N', continue summing its digits until the result is a single-digit number. Your task is to determine the final value of 'N' after applying this operation ...

  • Ans. 

    Given an integer, find the final single-digit value after summing its digits iteratively.

    • Iteratively sum the digits of the input integer until the result is a single-digit number

    • Output the final single-digit integer for each test case

    • Handle multiple test cases as input

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Have been asked to explain existing projects and what extraordinary you have done

  • Q1. What extraordinary accomplishments have you achieved in your current company?

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Senior Software Engineer in BangaloreEligibility criteria2+ years of experience required on cutting edge technologiesWalmart interview preparation:Topics to prepare for the interview - DATA STRUCTURES, AWS, JENKINS, DYNAMIC PROGRAMMING, COLLECTIONS, ALGORITHMS, SQL, APITime required to prepare for the interview - 12 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice Java programs of the day site interview questions(that's all you need to practice) which is having 50+ questions
Tip 2 : read api methods and their differences nd various response codes mostly 4xx nd 5xx
Tip 3 : prepare SQL queries mostly joins

Application resume tips for other job seekers

Tip 1 : write summary overview nd highlights your key skills
Tip 2 : Should read AWS from Javat point nd mention atleast any cloud experience ie :gcp,AWS,azure

Final outcome of the interviewSelected

Tell us how to improve this page.

Interview Questions from Similar Companies

DMart Interview Questions
3.9
 • 412 Interviews
Walmart Interview Questions
3.7
 • 389 Interviews
Titan Company Interview Questions
4.3
 • 157 Interviews
V-Mart Interview Questions
4.1
 • 150 Interviews
Shoppers Stop Interview Questions
4.1
 • 115 Interviews
Decathlon Interview Questions
3.8
 • 106 Interviews
MedPlus Interview Questions
3.6
 • 84 Interviews
Future Group Interview Questions
4.3
 • 78 Interviews
Trent Interview Questions
4.0
 • 78 Interviews
View all
Department Manager
739 salaries
unlock blur

₹1.8 L/yr - ₹5.1 L/yr

Store Manager
507 salaries
unlock blur

₹4.3 L/yr - ₹12 L/yr

Assistant Store Manager
484 salaries
unlock blur

₹3.6 L/yr - ₹6.6 L/yr

Head Cashier
227 salaries
unlock blur

₹1.1 L/yr - ₹3.5 L/yr

Retail Store Manager
186 salaries
unlock blur

₹4.7 L/yr - ₹12 L/yr

Explore more salaries
Compare Vishal Mega Mart with

DMart

3.9
Compare

Future Group

4.3
Compare

Titan Company

4.3
Compare

Walmart

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