Upload Button Icon Add office photos

Filter interviews by

Clarivate Associate Software Engineer Interview Questions, Process, and Tips

Updated 16 Oct 2024

Top Clarivate Associate Software Engineer Interview Questions and Answers

  • Q1. Best Time to Buy and Sell Stock II Problem Statement Given the stock prices for a certain number of days, represented as an array, determine the maximum profit you can a ...read more
  • Q2. Can you explain the implementation of abstract classes and interfaces in inheritance, as well as the concepts of function overloading and overriding?
  • Q3. What is asynchronous function in JavaScript?
View all 7 questions

Clarivate Associate Software Engineer Interview Experiences

9 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was set of java problem solving questions

Round 2 - Technical 

(2 Questions)

  • Q1. Sorting algorithms
  • Q2. Linked list reversing
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Questions on DP and greed algorithms

Round 2 - Technical 

(2 Questions)

  • Q1. Basic and medium DSA
  • Q2. About project and tech stack used in project

Associate Software Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Triplets with Given Sum Problem Given an array or list ARR consis ... read more
asked in Clarivate
Q2. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
Q3. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
asked in CGI Group
Q4. Frog Jump Problem Statement A frog is positioned on the first ste ... read more
asked in Gainsight
Q5. Connecting Ropes with Minimum Cost You are given 'N' ropes, each ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at S J B Institute of Technology, Bangalore and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. 1. general question on interview explain your project. 2.small logic from project code. 3.question of buisness use case and logic understanding.

Interview Preparation Tips

Interview preparation tips for other job seekers - preapre your resume well.
also prepare the question on your skills mentioned in resume.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

C++ about the other day and night

Round 2 - Technical 

(1 Question)

  • Q1. Basic knowledge and insights from the particular individual house of cards

Clarivate interview questions for designations

 Software Engineer

 (1)

 Associate Consultant

 (1)

 Software Developer

 (2)

 Associate

 (2)

 QA Engineer

 (1)

 Research Associate

 (1)

 Legal Associate

 (1)

 Associate Content Analyst

 (3)

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 Feb 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Initial coding test on hacker rank, easy to med level, pretty straight forward, not too difficult

Round 2 - Technical 

(5 Questions)

  • Q1. Reverse alternate words in a given string
  • Ans. 

    Reverse alternate words in a given string

    • Split the string into words

    • Reverse alternate words using a loop

    • Join the words back into a string

  • Answered by AI
  • Q2. Implement bubble sort
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements, and swaps them if they are in the wrong order.

    • Start at the beginning of the array and compare the first two elements. If the first element is greater than the second, swap them.

    • Continue comparing adjacent elements and swapping them if necessary until the end of the array is reached.

    • Repeat this process for each ...

  • Answered by AI
  • Q3. Find frequency of letters in a given string
  • Ans. 

    Use a hashmap to store the frequency of each letter in the given string.

    • Iterate through the string and update the frequency of each letter in the hashmap.

    • Return the hashmap containing the frequency of each letter.

  • Answered by AI
  • Q4. A few general aptitude related questions
  • Q5. Behavioral questions

Skills evaluated in this interview

Get interview-ready with Top Clarivate Interview Questions

I was interviewed in Mar 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 75 minutes
Round difficulty - Medium

Consists of MCQ + 2 coding questions( medium level)

  • Q1. 

    Best Time to Buy and Sell Stock II Problem Statement

    Given the stock prices for a certain number of days, represented as an array, determine the maximum profit you can achieve. You may perform as many tra...

  • Ans. Brute Force Approach

    Let's say we have stock values of two days, say, [20, 30].

    One must have to buy the stock first in order to sell it in the coming days.

    So, 

    1. if I choose to buy the stock on first day for a value of 20 and sell it on the second day for a value of 30, I can earn a max profit of 10.

    2. If I chose to skip day 1, then buying the stock on day 2 will put me in lose since there are no further days on wh...

  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

The round is based on data structures, oops concepts and implementation, OS and DBMS general questions. And Please do not forget to read about scheduling algorithms and ACID properties of RDBMS.

  • Q1. Can you explain the implementation of abstract classes and interfaces in inheritance, as well as the concepts of function overloading and overriding?

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chandigarh Group of Colleges (CGC), Landran. I applied for the job as Associate Software Engineer in BangaloreEligibility criteriaabove 7 CGPA in B.techClarivate Analytics interview preparation:Topics to prepare for the interview - OOPS, Java, Data Structures, Spring Boot, MySQL.Time required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Practice some questions (easy level)
Tip 2 : Brush up on the implementation of OOPS concepts.
Tip 3 : Brush up on the queries of MYSQL

Application resume tips for other job seekers

Tip 1 : Hands on experience in OOPS
Tip 2 : Hands on experience in MYSQL

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Indeed and was interviewed before Aug 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

It's on hacker rank. Be prepared for two coding questions.

Round 2 - One-on-one 

(2 Questions)

  • Q1. This round will expect you to code one or two questions infront of the interviewers.
  • Q2. Question which was given in hacker rank.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, be good at any one coding language be it C, java or python. Be prepared for some situation based questions as well.
Round 1 - Coding Test 

Medium level coding

Round 2 - Technical 

(1 Question)

  • Q1. Resume related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Need daily practice of code to do the coding challenge

I applied via Campus Placement and was interviewed in Jul 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What is polymorphism?
  • Ans. 

    Polymorphism is the ability of an object to take on many forms.

    • It allows objects of different classes to be treated as if they were objects of the same class.

    • It is achieved through method overriding and method overloading.

    • Example: A parent class Animal can have child classes like Dog, Cat, and Cow. All of them have a common method called 'makeSound', but each of them makes a different sound.

    • Example: A method can be ove...

  • Answered by AI
  • Q2. What is asynchronous function in JavaScript?
  • Ans. 

    Asynchronous functions in JavaScript allow code to run without blocking other code from executing.

    • Asynchronous functions use callbacks or promises to handle the result of the function.

    • They are useful for tasks that may take a long time to complete, such as fetching data from a server.

    • Examples include setTimeout(), fetch(), and XMLHttpRequest().

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was hr and technical round both at the same time.

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is the difference between drop and delete in SQL?
  • Ans. 

    Drop removes a table from the database while delete removes specific rows from a table.

    • DROP is a DDL (Data Definition Language) command used to remove a table and its data from the database.

    • DELETE is a DML (Data Manipulation Language) command used to remove specific rows from a table based on a condition.

    • DROP command is irreversible and all the data in the table is lost, while DELETE can be rolled back if used within a...

  • Answered by AI
  • Q2. What are the different commands in SQL?
  • Ans. 

    SQL commands are used to interact with databases and perform various operations like querying, updating, and deleting data.

    • SELECT - retrieves data from a database

    • INSERT - adds new data to a database

    • UPDATE - modifies existing data in a database

    • DELETE - removes data from a database

    • CREATE - creates a new database or table

    • ALTER - modifies the structure of a database object

    • DROP - deletes a database object

    • JOIN - combines row...

  • Answered by AI

Clarivate Interview FAQs

How many rounds are there in Clarivate Associate Software Engineer interview?
Clarivate interview process usually has 1-2 rounds. The most common rounds in the Clarivate interview process are Technical, Coding Test and Aptitude Test.
How to prepare for Clarivate Associate Software 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 Clarivate. The most common topics and skills that interviewers at Clarivate expect are Python, Javascript, SQL, Analytical skills and Coding.
What are the top questions asked in Clarivate Associate Software Engineer interview?

Some of the top questions asked at the Clarivate Associate Software Engineer interview -

  1. What is asynchronous function in JavaScri...read more
  2. What is polymorphi...read more
  3. Reverse alternate words in a given str...read more

Tell us how to improve this page.

Clarivate Associate Software Engineer Interview Process

based on 5 interviews

2 Interview rounds

  • Coding Test Round
  • Technical Round
View more
Clarivate Associate Software Engineer Salary
based on 126 salaries
₹6 L/yr - ₹11 L/yr
56% more than the average Associate Software Engineer Salary in India
View more details

Clarivate Associate Software Engineer Reviews and Ratings

based on 12 reviews

3.9/5

Rating in categories

3.5

Skill development

4.0

Work-life balance

3.5

Salary

3.7

Job security

3.7

Company culture

2.7

Promotions

3.4

Work satisfaction

Explore 12 Reviews and Ratings
Senior Software Engineer
161 salaries
unlock blur

₹9 L/yr - ₹28 L/yr

IP Analyst
155 salaries
unlock blur

₹3 L/yr - ₹6.1 L/yr

Research Analyst
143 salaries
unlock blur

₹2.7 L/yr - ₹7 L/yr

Software Engineer
135 salaries
unlock blur

₹5.2 L/yr - ₹15 L/yr

Associate Content Analyst
131 salaries
unlock blur

₹2 L/yr - ₹8 L/yr

Explore more salaries
Compare Clarivate with

Thomson Reuters

4.1
Compare

Elsevier

4.5
Compare

Wolters Kluwer

3.9
Compare

Springer Nature in India

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