Upload Button Icon Add office photos

Filter interviews by

Meltwater Solution Engineer Interview Questions and Answers

Updated 2 Aug 2024

Meltwater Solution Engineer Interview Experiences

1 interview found

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

I applied via Recruitment Consulltant

Round 1 - One-on-one 

(2 Questions)

  • Q1. JavaScript basic questions
  • Q2. Past experiences
Round 2 - Technical 

(1 Question)

  • Q1. Deep dive into javascript, nodejs

Interview questions from similar companies

I applied via Company Website and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. C++ basic questions, also asked me to run few programs on online gdb

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your primary skill set very well, data structure and algorithm is also mandatory also a little bit of system design.

I applied via Referral and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Questions on Java, SQL, java framework, weblogic and OMS

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't panic. Just be honest in what you know and you will succeed

I appeared for an interview before Dec 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 minutes
Round difficulty - Medium

Timing was in the afternoon. 
The platform was easy to operate and worked on considerable speed. 
Both the webcam and audio was supposed to be ON during the test duration.
We could switch between the questions of the same section in case we wanted to change the answers.

  • Q1. 

    Minimum Spanning Tree Problem Statement

    You are provided with an undirected, connected, and weighted graph G(V, E). The graph comprises V vertices (numbered from 0 to V-1) and E edges.

    Determine and retu...

  • Ans. 

    Find the total weight of the Minimum Spanning Tree in a graph using Kruskal's algorithm.

    • Implement Kruskal's algorithm to find the Minimum Spanning Tree.

    • Sort the edges based on their weights and add them to the MST if they don't form a cycle.

    • Keep track of the total weight of the MST and return it as the output.

  • Answered by AI
  • Q2. 

    Maximum Points On Straight Line Problem Statement

    You are provided with a 2-D plane and a set of integer coordinates. Your task is to determine the maximum number of these coordinates that can be aligned ...

  • Ans. 

    Find the maximum number of points that can be aligned in a straight line on a 2-D plane.

    • Iterate through each pair of points and calculate the slope between them.

    • Store the slope in a hashmap and keep track of the frequency of each slope.

    • The maximum frequency of slopes + 1 gives the maximum number of points on a straight line.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in PuneEligibility criteria6 CGPAAmdocs interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Dynamic Programming, OOPS, DBMSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : You should be very fluent in each and every data structure that you have studied so that you are able to answer even the trickiest question by knowing the basics. This will happen only if you have tried enough questions on different platforms.
Tip 2 : Object Oriented Programming is the easiest and the most underrated concept. In every interview I have given so far, they have asked me the OOPs concepts. I have learnt and understood each and every basic concept of OOPs, primarily from the videos of Coding Ninjas which have polished my skill in this area and now I can answer any question of this topic. 
Tip 3 : The projects that you have done in your college life should be on your tips. You should know each and every little detail of it, and sometimes the interviewer may also ask what would happen if you changed some things in your project, so you should be clear with it's working and how would your project work after changing some specifications.

Application resume tips for other job seekers

Tip 1 : Highlight your technical skills and write only the things from which you will be comfortable answering from.
Tip 2 : Try to maximize the number of technical achievements on the resume and minimize the extra curricular part.

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Jun 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. RPA Development Automation Anywhere V11 questions.Scenarios,Ui automation,SAP automation,Excel Automation,Power automate desktop

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a Hands on experience and Clear understanding of your Skill and Project.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Dec 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic Aptitude like Quantitative , English and Logical Reasoning. Coding round had 4 questions - 2 SQL problems and 2 codes

Round 2 - HR 

(2 Questions)

  • Q1. Personality assessment , character judging and seeing if you are fit for the company on the basis of value was checked
  • Q2. Tell me about yourself

Interview Preparation Tips

Topics to prepare for Amdocs Software Engineer interview:
  • C++
  • SDLC
Interview preparation tips for other job seekers - Nothing to worry about. Just show confidence and good communication skills and a ability to learn.

Interview Questionnaire 

1 Question

  • Q1. Computer networking, oops, programming

I applied via Recruitment Consultant and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Program for reverse of string in minimum iteration
  • Ans. 

    Program to reverse a string in minimum iteration

    • Use two pointers, one at the start and one at the end of the string

    • Swap the characters at the two pointers and move the pointers towards each other

    • Repeat until the pointers meet in the middle of the string

  • Answered by AI
  • Q2. Project architecture and structure and role you were doing
  • Q3. Core java concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Be ready with examples of what knowledge you have?

I appeared for an interview before Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 Minutes
Round difficulty - Medium

The test included MCQ questions from SQL, Linux Commands, C/C++ programming, Logical Reasoning, Aptitude questions. The other section was the coding round, where 2 SQL queries and 2 coding questions were there.

  • Q1. 

    Subarray with Equal Occurrences Problem Statement

    You are provided with an array/list ARR of length N containing only 0s and 1s. Your goal is to determine the number of non-empty subarrays where the numbe...

  • Ans. 

    Count the number of subarrays where the number of 0s is equal to the number of 1s in a given array of 0s and 1s.

    • Iterate through the array and keep track of the count of 0s and 1s encountered so far.

    • Use a hashmap to store the count of 0s and 1s encountered at each index.

    • For each index, check if the count of 0s is equal to the count of 1s encountered so far and update the result accordingly.

  • Answered by AI
  • Q2. 

    Pythagorean Triplets Detection

    Determine if an array contains a Pythagorean triplet by checking whether there are three integers x, y, and z such that x2 + y2 = z2 within the array.

    Input:

    The first lin...
  • Ans. 

    Detect if an array contains a Pythagorean triplet by checking if there are three integers x, y, and z such that x^2 + y^2 = z^2.

    • Iterate through all possible triplets of numbers in the array and check if they form a Pythagorean triplet.

    • Use a nested loop to generate all possible combinations of three numbers from the array.

    • Check if the sum of squares of two numbers is equal to the square of the third number for each trip...

  • Answered by AI
Round 2 - Face to Face 

(3 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

This was a standard DSA round where I was asked to solve 2 questions and also code it in a production ready manner . At the end I was also asked some questions related to Linux and SQL . I was tested on some basic commands of Linux .

  • Q1. 

    Palindromic Substrings Problem Statement

    Given a string S, your task is to return all distinct palindromic substrings of the given string in alphabetical order.

    Explanation:

    A string is considered a pal...

  • Ans. 

    Return all distinct palindromic substrings of a given string in alphabetical order.

    • Iterate through all possible substrings of the given string.

    • Check if each substring is a palindrome.

    • Store distinct palindromic substrings in alphabetical order.

  • Answered by AI
  • Q2. 

    Swap Two Numbers Problem Statement

    Given two integers a and b, your task is to swap these numbers and output the swapped values.

    Input:

    The first line contains a single integer 't', representing the num...
  • Ans. 

    Swap two integers 'a' and 'b' and output the swapped values.

    • Create a temporary variable to store one of the integers before swapping.

    • Swap the values of 'a' and 'b' using the temporary variable.

    • Output the swapped values of 'a' and 'b'.

  • Answered by AI
  • Q3. What is meant by normalization and denormalization?
  • Ans. 

    Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity, while denormalization is the process of intentionally adding redundancy to improve query performance.

    • Normalization involves breaking down a table into smaller tables and defining relationships between them to reduce redundancy and dependency.

    • Denormalization involves combining tables or adding redundant data to...

  • Answered by AI
Round 3 - Face to Face 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This was a DS/Algo + Core round where I was asked questions related to DBMS , SQL queries and Linux Commands . The first question was of DSA and I was able to code it preety fast . I was also asked to execute some SQL queries on my laptop.
Overall , this round went good according to my opinion.

  • Q1. 

    Anagram Pairs Verification Problem

    Your task is to determine if two given strings are anagrams of each other. Two strings are considered anagrams if you can rearrange the letters of one string to form the...

  • Ans. 

    Check if two strings are anagrams of each other by comparing their sorted characters.

    • Sort the characters of both strings and compare them.

    • Use a dictionary to count the frequency of characters in each string and compare the dictionaries.

    • Ensure both strings have the same length before proceeding with comparison.

    • Handle edge cases like empty strings or strings with different lengths.

  • Answered by AI
  • Q2. How would you delete duplicate emails from a database using SQL?
  • Ans. 

    Use SQL query with GROUP BY and HAVING clause to delete duplicate emails from a database.

    • Use GROUP BY clause to group emails together

    • Use HAVING clause to filter out groups with more than one email

    • Use DELETE statement to remove duplicate emails

  • Answered by AI
  • Q3. What is the difference between the DELETE and TRUNCATE commands in a DBMS?
  • Ans. 

    DELETE removes specific rows from a table, while TRUNCATE removes all rows and resets auto-increment values.

    • DELETE is a DML command, while TRUNCATE is a DDL command.

    • DELETE can be rolled back, while TRUNCATE cannot be rolled back.

    • DELETE triggers ON DELETE triggers, while TRUNCATE does not trigger any triggers.

    • DELETE is slower as it maintains logs, while TRUNCATE is faster as it does not maintain logs.

    • Example: DELETE FRO...

  • Answered by AI
Round 4 - HR 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Easy

This was a typical HR round with some standard Behavioral questions .

  • Q1. What is something about you that is not included in your resume?
  • Q2. Why do you want to work at Amdocs?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAAmdocs interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview in Jul 2021.

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not fake/guess, if you don't know the answer just tell your interviewer that you are not aware about it instead of saying irrelevant stuffs.

Meltwater Interview FAQs

How many rounds are there in Meltwater Solution Engineer interview?
Meltwater interview process usually has 2 rounds. The most common rounds in the Meltwater interview process are One-on-one Round and Technical.
How to prepare for Meltwater Solution Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Meltwater. The most common topics and skills that interviewers at Meltwater expect are Agile, Analytical, Backend, Concept Development and Continuous Integration.
What are the top questions asked in Meltwater Solution Engineer interview?

Some of the top questions asked at the Meltwater Solution Engineer interview -

  1. Deep dive into javascript, nod...read more
  2. JavaScript basic questi...read more

Tell us how to improve this page.

Meltwater Solution Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 863 Interviews
Google Interview Questions
4.4
 • 841 Interviews
Amdocs Interview Questions
3.7
 • 517 Interviews
Adobe Interview Questions
3.9
 • 235 Interviews
Salesforce Interview Questions
4.0
 • 230 Interviews
24/7 Customer Interview Questions
3.5
 • 176 Interviews
Chetu Interview Questions
3.3
 • 174 Interviews
AVASOFT Interview Questions
2.9
 • 165 Interviews
View all
Meltwater Solution Engineer Salary
based on 14 salaries
₹8.4 L/yr - ₹13 L/yr
11% more than the average Solution Engineer Salary in India
View more details
Solution Engineer
14 salaries
unlock blur

₹8.4 L/yr - ₹13 L/yr

Data Acquisition Specialist
7 salaries
unlock blur

₹4 L/yr - ₹6 L/yr

Senior Support Engineer
7 salaries
unlock blur

₹11 L/yr - ₹14.6 L/yr

Data Analyst
6 salaries
unlock blur

₹5 L/yr - ₹5.7 L/yr

Product Support Engineer
6 salaries
unlock blur

₹6 L/yr - ₹10.6 L/yr

Explore more salaries
Compare Meltwater with

Oracle

3.7
Compare

Amdocs

3.7
Compare

Automatic Data Processing (ADP)

4.0
Compare

24/7 Customer

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