Upload Button Icon Add office photos

Filter interviews by

Merino Consulting Services Intern Interview Questions and Answers

Updated 22 Jul 2024

Merino Consulting Services Intern Interview Experiences

1 interview found

Intern Interview Questions & Answers

user image Lakshay Bhardwaj

posted on 22 Jul 2024

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

(2 Questions)

  • Q1. Output based Q on javascript.
  • Q2. Project related discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your projects and and have a good grip at javascript, c#, .net, angular.

Interview questions from similar companies

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

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

Round 1 - Coding Test 

Was 1 hr with a simple question from leetcode

Round 2 - Technical 

(2 Questions)

  • Q1. Implement reverse Linked list
  • Ans. 

    Reverse a linked list

    • Create a new linked list to store the reversed elements

    • Traverse the original linked list and insert each node at the beginning of the new list

    • Update the head of the new list as the last node of the original list

  • Answered by AI
  • Q2. Project Explanation(from resume)
Round 3 - HR 

(2 Questions)

  • Q1. Why we should select you?
  • Ans. 

    I am a dedicated and hardworking individual with relevant skills and experience for the role.

    • I have completed relevant coursework in the field

    • I have previous internship experience in a similar role

    • I possess strong communication and teamwork skills

  • Answered by AI
  • Q2. Are you willing to relocate?
  • Ans. 

    Yes, I am open to relocating for the right opportunity.

    • I am open to relocating for the right opportunity

    • I am flexible and willing to move for the internship

    • I understand the importance of being open to relocation for career growth

  • Answered by AI

Skills evaluated in this interview

Round 1 - One-on-one 

(1 Question)

  • Q1. Based on cv and candidate profile

Interview Preparation Tips

Interview preparation tips for other job seekers - Best company.. Go ahead for internship..
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

60 min OA with general aptitude and quant based questions. The time provided was the main challenge for the test

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare well be confident and don't do silly mmistakes

I appeared for an interview before Jun 2016.

Interview Questionnaire 

1 Question

  • Q1. Java related questions on Oops concept and Multithreading

Interview Preparation Tips

Round: Test
Experience: Simple aptitude and reasoning questions little java based programming
Tips: Basic programming knowledge and good aptitude
Duration: 1 hour
Total Questions: 60

Round: Technical Interview
Experience: Normal questions on Java, basic programming questions like reverse no. , String related and logical coding
Tips: What u mentioned on your resume go through that only, they will not ask apart from your resume

Skills: How Well You Are Able To Communicate What You Wanted To Tell, Programming
College Name: SRCEM

I applied via Campus Placement and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Tell me about yourself
  • Q2. Why IT
  • Q3. About my project
  • Q4. Few mechanical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - General questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Aug 2022. There were 4 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 

Test of SQL, Tableau and other skills based on your resume on Skillate

Round 3 - Technical 

(1 Question)

  • Q1. SQL and other skills technical questions
Round 4 - One-on-one 

(1 Question)

  • Q1. Manager round / 2nd technical round
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Mar 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Computer Networks, SQL, DBMS, aptitude questions on trains, boats , profit and loss. 2 coding questions. Total duration was 1.5 hrs.

Round 3 - One-on-one 

(1 Question)

  • Q1. Questions based on projects and certifications mentioned in the resume. OOPs Time complexity based questions, basic algorithm logics like dijkstra's , sorting algorithms . Question in OS like threads and ...
Round 4 - Behavioral 

(1 Question)

  • Q1. Reversing a string, writing sql queries, how does fetching of information from web takes place. Why you want to join Truminds?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 2021. 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 - Technical 

(2 Questions)

  • Q1. Oops concepts, core java
  • Q2. Java 8 stream api and lambda

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well it will be easy to crack. they hire good peope
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Feb 2022. There were 4 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 

Easy level questions on string, linked list and array

Round 3 - Technical 

(2 Questions)

  • Q1. Difference between TCP and UDP
  • Ans. 

    TCP is a connection-oriented protocol while UDP is connectionless.

    • TCP provides reliable, ordered, and error-checked delivery of data while UDP does not guarantee any of these.

    • TCP is slower but more reliable while UDP is faster but less reliable.

    • TCP is used for applications that require high reliability and accuracy such as email, file transfer, and web browsing while UDP is used for applications that require speed and ...

  • Answered by AI
  • Q2. Nibble swap program in C
  • Ans. 

    A nibble swap program in C

    • Nibble swap means swapping the 4-bit halves of a byte

    • Use bitwise operators to perform the swap

    • Example: unsigned char x = 0xAB; x = ((x & 0x0F) << 4) | ((x & 0xF0) >> 4);

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. Reverse Linked List in C
  • Ans. 

    Reverse a linked list in C language.

    • Create three pointers: current, previous, and next.

    • Traverse the linked list and change the direction of the pointers.

    • Return the new head of the reversed linked list.

  • Answered by AI
  • Q2. Write an API call in C
  • Ans. 

    API call in C

    • Include the necessary header files

    • Create a URL string with the required parameters

    • Use the curl library to make the API call

    • Handle the response data appropriately

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics of programming, operating system and networking

Skills evaluated in this interview

Merino Consulting Services Interview FAQs

How many rounds are there in Merino Consulting Services Intern interview?
Merino Consulting Services interview process usually has 1 rounds. The most common rounds in the Merino Consulting Services interview process are Technical.
What are the top questions asked in Merino Consulting Services Intern interview?

Some of the top questions asked at the Merino Consulting Services Intern interview -

  1. Output based Q on javascri...read more
  2. Project related discuss...read more

Tell us how to improve this page.

Merino Consulting Services Intern Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Intern Interview Questions from Similar Companies

TCS Intern Interview Questions
3.7
 • 35 Interviews
Infosys Intern Interview Questions
3.6
 • 22 Interviews
Wipro Intern Interview Questions
3.7
 • 11 Interviews
HCLTech Intern Interview Questions
3.5
 • 7 Interviews
Mphasis Intern Interview Questions
3.4
 • 2 Interviews
View all
Associate Consultant
34 salaries
unlock blur

₹2.6 L/yr - ₹6.5 L/yr

Consultant
27 salaries
unlock blur

₹6.1 L/yr - ₹19 L/yr

Senior Consultant
24 salaries
unlock blur

₹10.5 L/yr - ₹24 L/yr

Associate Technical Consultant
15 salaries
unlock blur

₹3 L/yr - ₹9 L/yr

Infor Ln Technical Consultant
7 salaries
unlock blur

₹3 L/yr - ₹14.2 L/yr

Explore more salaries
Compare Merino Consulting Services with

HCL Infosystems

3.9
Compare

Accel Frontline

4.0
Compare

PC Solutions

3.7
Compare

RNF Technologies

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