Upload Button Icon Add office photos

Merkle Sokrati

Compare button icon Compare button icon Compare

Filter interviews by

Merkle Sokrati Senior Software Engineer 2 Interview Questions and Answers

Updated 26 Jan 2025

Merkle Sokrati Senior Software Engineer 2 Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I appeared for an interview in Dec 2024.

Round 1 - Coding Test 

Asked questions from mern stack, sql database, gcp cloud

Round 2 - Assignment 

Python programming round

Round 3 - One-on-one 

(5 Questions)

  • Q1. One on one round with client regarding project details and some technical question
  • Q2. How to add 2 arrays in python
  • Ans. 

    Use list comprehension to add corresponding elements of two arrays.

    • Use list comprehension to iterate over both arrays simultaneously and add corresponding elements.

    • Ensure both arrays are of the same length.

    • Example: result = [str(int(x) + int(y)) for x, y in zip(array1, array2)]

  • Answered by AI
  • Q3. Horizontal vs Vertical scalling
  • Ans. 

    Horizontal scaling involves adding more machines to distribute load, while vertical scaling involves increasing resources on a single machine.

    • Horizontal scaling is more cost-effective as it allows for adding cheaper machines as needed.

    • Vertical scaling is limited by the capacity of a single machine and can be more expensive.

    • Examples of horizontal scaling include adding more servers to a web application cluster.

    • Examples ...

  • Answered by AI
  • Q4. Left vs inner joins
  • Ans. 

    Left join includes all records from the left table and matching records from the right table, while inner join only includes matching records from both tables.

    • Left join returns all records from the left table and the matched records from the right table.

    • Inner join returns only the matched records from both tables.

    • Use left join when you want to include all records from the left table, regardless of whether there is a ma...

  • Answered by AI
  • Q5. How to scale application
  • Ans. 

    Scaling application involves optimizing performance, increasing capacity, and ensuring reliability.

    • Implementing load balancing to distribute traffic evenly across servers

    • Using caching mechanisms to reduce database load

    • Horizontal scaling by adding more servers to handle increased traffic

    • Vertical scaling by upgrading server hardware for improved performance

  • Answered by AI

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Merkle Sokrati?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. Core python
  • Q2. OOPS concept

Senior Software Engineer 2 Interview Questions Asked at Other Companies

asked in Synechron
Q1. What microservices patterns are you aware ? let's assume that the ... read more
Q2. Given a scenario, draw a system diagram and explain the reasoning ... read more
Q3. Draw a system diagram for an e-commerce system that allows a cust ... read more
asked in Wipro
Q4. What are the key features of Java 8 that facilitate coding with s ... read more
Q5. Explain the internal workings of Node.js and how it processes asy ... read more

I applied via Naukri.com and was interviewed in Oct 2019. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Scripting was major focus, program to read the numbers 1 to infinity and convert them to words , ex : 1 as one , 100 as hundred , 1543 as one thousand five hundreden fourty three
  • Ans. 

    A program to convert numbers into their English word representation, handling numbers from 1 to infinity.

    • Use a recursive function to break down numbers into manageable parts.

    • Handle special cases for numbers like 11-19 (e.g., eleven, twelve).

    • Use arrays or dictionaries to map numbers to words for efficiency.

    • Example: 1543 is broken down into 1000 + 500 + 40 + 3, resulting in 'one thousand five hundred forty three'.

  • Answered by AI
  • Q2. Ansible concepts, this was major focus
  • Q3. Jenkins pipeline concepts
  • Q4. Basic other tools questions

Interview Preparation Tips

Interview preparation tips for other job seekers - It wasn't that scary, one technical round, managerial tech round, manager round, hr round, all happened in a single day

Skills evaluated in this interview

I appeared for an interview in Jun 2021.

Interview Questionnaire 

1 Question

  • Q1. Sql queries

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Feb 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 - Technical 

(1 Question)

  • Q1. Python, sql, etl, cloud, web tool
Round 3 - Behavioral 

(1 Question)

  • Q1. Functional question and write some sql basic query
Round 4 - Client Interview 

(1 Question)

  • Q1. Basic question on project
Round 5 - HR 

(1 Question)

  • Q1. Salary negotiation and check behaviour qiestion

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company too work and enjoy latest tech stack in data science and analytics
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Introduce yourself
  • Q2. DS/Ago problem - dynamic programming

Interview Preparation Tips

Interview preparation tips for other job seekers - nothing
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Check string is pallindrome or not
  • Ans. 

    A palindrome is a string that reads the same forwards and backwards, like 'racecar' or 'level'.

    • Definition: A palindrome is a word, phrase, or sequence that reads the same backward as forward. Examples include 'madam' and '12321'.

    • Ignoring Spaces and Punctuation: When checking for palindromes, spaces and punctuation are often ignored. For instance, 'A man, a plan, a canal, Panama!' is a palindrome.

    • Case Sensitivity: Palin...

  • Answered by AI
  • Q2. Bubble sort explanation

Interview Preparation Tips

Interview preparation tips for other job seekers - nothing
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jul 2023. There were 3 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 

Held on interview bit. 3 ques were asked. Questions were from range query and DP.

Round 3 - Technical 

(1 Question)

  • Q1. 1 Hard DSA question. Given a sequence of positive numbers, make it a non-decreasing sequence. Operation allowed: adjacent elements can be added to form a single element. What is the minimum no of operatio...
  • Ans. 

    Transform a sequence into a non-decreasing order using minimum adjacent additions.

    • Identify positions where the sequence decreases.

    • Each decrease indicates a necessary operation to merge elements.

    • Example: For [3, 2, 5], merge 3 and 2 to get [5, 5] (1 operation).

    • Count total decreases to determine the number of operations needed.

    • Example: For [1, 3, 2, 4], merge 3 and 2 to get [1, 5, 4] (1 operation), then merge 5 and 4 to ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice DSA as much as you can. Be well-versed in CS fundamentals such as CN, OS, DBMS, and OOPS.
Practice CP if you can.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Asked two array and string dsa questions of medium-hard level

Interview Preparation Tips

Topics to prepare for Media.net Software Services (India) Software Developer interview:
  • DSA
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. Basic JavaScript and React.js questions
  • Q2. Questions on functions, hooks and DOM
  • Q3. Questions on SSR
  • Q4. Questions on strings and arrays
Round 2 - Coding Test 

Api related questions

Merkle Sokrati Interview FAQs

How many rounds are there in Merkle Sokrati Senior Software Engineer 2 interview?
Merkle Sokrati interview process usually has 3 rounds. The most common rounds in the Merkle Sokrati interview process are Coding Test, Assignment and One-on-one Round.
What are the top questions asked in Merkle Sokrati Senior Software Engineer 2 interview?

Some of the top questions asked at the Merkle Sokrati Senior Software Engineer 2 interview -

  1. how to add 2 arrays in pyt...read more
  2. how to scale applicat...read more
  3. Horizontal vs Vertical scall...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

2-4 weeks 100%
View more

Interview Questions from Similar Companies

R.R. Donnelley Interview Questions
3.8
 • 117 Interviews
Epsilon Interview Questions
3.8
 • 93 Interviews
Publicis Interview Questions
3.7
 • 54 Interviews
Regalix Interview Questions
2.9
 • 50 Interviews
Xdbs Interview Questions
3.1
 • 39 Interviews
Groupm Media Interview Questions
3.8
 • 37 Interviews
Mediamint Interview Questions
3.4
 • 35 Interviews
View all
Senior Business Analyst
203 salaries
unlock blur

₹5.4 L/yr - ₹9 L/yr

Business Analyst
125 salaries
unlock blur

₹4 L/yr - ₹6 L/yr

Business Strategy Manager
90 salaries
unlock blur

₹7.5 L/yr - ₹14 L/yr

Senior Associate
41 salaries
unlock blur

₹4 L/yr - ₹11 L/yr

Media Associate
32 salaries
unlock blur

₹3 L/yr - ₹7 L/yr

Explore more salaries
Compare Merkle Sokrati with

R.R. Donnelley

3.8
Compare

Epsilon

3.8
Compare

ChannelPlay

3.8
Compare

Affinity Express

3.0
Compare
write
Share an Interview