Upload Button Icon Add office photos

Filter interviews by

Clarivate Java Developer Interview Questions and Answers

Updated 24 May 2021

Clarivate Java Developer Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Write program to add two numbers in sequence
  • Ans. 

    Program to add two numbers in sequence

    • Declare two integer variables to store the numbers

    • Take input from user for both variables

    • Add the two variables and store the result in a third variable

    • Print the result

  • Answered by AI
  • Q2. What is directives
  • Ans. 

    Directives are instructions given to the compiler to perform specific tasks.

    • Directives are used in programming languages like C, C++, and Java.

    • They are used to provide instructions to the compiler.

    • Examples of directives include #include, #define, and #ifdef.

  • Answered by AI
  • Q3. Question about java 1.8

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Job Portal and was interviewed in Sep 2022. There were 3 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 - Coding Test 

Easy java coding questions with dp

Round 3 - Assignment 

Java mcqs are given answer them

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic java questions are needed and learn python as well
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding test was good difficulty was easy to medium.

Round 2 - Technical 

(1 Question)

  • Q1. Coding DSA, OOPS and basic programming concepts
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Naukri.com

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 - Coding Test 

The written test involved qiestions from bssic aptitude, computer fundamentals and coding.

Round 3 - Technical 

(1 Question)

  • Q1. This was a technical discussion with the pannel. The discussion was mostly based in what's written in resume. Expect the questions from Java, OOPs, Data structures, SQL.
Round 4 - One-on-one 

(1 Question)

  • Q1. This was a one on one discussion with the manager. It was mostly to identify if the candidate meets basic non technical requirements for the job role.
Round 5 - HR 

(1 Question)

  • Q1. This round was little tricky as i was interviewed by the HR head since all other HRs were busy interviewing other candidates. it was mostly to check the communication skills, flexibility of the employee, t...
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jun 2022. 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 - Aptitude Test 

Stocks, profit and loss, percentage, work, speed and time

Round 3 - Technical 

(2 Questions)

  • Q1. Projects explanation
  • Ans. 

    I have worked on various projects including web development, mobile app development, and data analysis.

    • Developed a responsive e-commerce website using HTML, CSS, and JavaScript

    • Created a mobile app for tracking fitness goals using React Native

    • Performed data analysis on customer behavior using Python and SQL

  • Answered by AI
  • Q2. Depends on individual

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on basics of languages and Perfect on project explaination

I applied via Campus Placement and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Simple program
  • Q2. I wrote a simple program in C

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and confident

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Easy

This was MCQ+Coding round.

  • Q1. How can you check if two strings are anagrams of each other?
  • Ans. 

    Check if two strings are anagrams by comparing the sorted versions of the strings.

    • Sort both strings and compare if they are equal.

    • Use a hashmap to store the frequency of characters in each string and compare the maps.

    • Ignore spaces and punctuation when comparing the strings.

  • Answered by AI
Round 2 - Face to Face 

Round duration - 90 minutes
Round difficulty - Easy

This was face to face interview round.

Round 3 - Face to Face 

Round duration - 90 minutes
Round difficulty - Easy

This was face to face interview round.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from National Institute Of Technology, Silchar, Assam. I applied for the job as SDE - 1 in SiddharthnagarEligibility criteria6 CGPAAmazon interview preparation:Topics to prepare for the interview - Basic Computer Science backgroundTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Participate in live contests on websites like Codechef, Codeforces etc as much as possible.
Tip 2 : Practice previous interview questions from LeetCode, GeeksForGeeks.
Tip 3 : Revise Computer Science subjects like DBMS, OOPS thoroughly.

Application resume tips for other job seekers

Add projects and Internships if you have done any and add only those things which you really know.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 Minutes
Round difficulty - Medium

Interview started at 11:00 am. It was an online round. During the coding round I submitted optimized solution and got full acceptance of the solutions.

  • Q1. 

    Detect Cycle in a Directed Graph

    You are provided with a directed graph composed of 'N' nodes. You have a matrix called 'EDGES' with dimensions M x 2, which specifies the 'M' edges in the graph. Each edge...

  • Ans. 

    Detect cycle in a directed graph using depth-first search (DFS) algorithm.

    • Use DFS to traverse the graph and detect back edges indicating a cycle.

    • Maintain a visited array to keep track of visited nodes during traversal.

    • If a node is visited again during traversal and it is not the parent node, then a cycle exists.

    • Return true if a cycle is detected, false otherwise.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 80 Minutes
Round difficulty - Medium

Interview started at 10:00 am. Interview went well, I was able to connect with the interviewer and enjoyed the whole interview

  • Q1. 

    Next Smallest Palindrome Problem Statement

    Find the next smallest palindrome strictly greater than a given number 'N' represented as a string 'S'.

    Explanation:

    You are given a number in string format, a...

  • Ans. 

    Find the next smallest palindrome greater than a given number represented as a string.

    • Convert the string to an integer, find the next greater palindrome, and convert it back to a string.

    • Handle cases where the number is a palindrome or has all digits as '9'.

    • Consider both odd and even length numbers when finding the next palindrome.

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 80 Minutes
Round difficulty - Medium

Interview started at 11:00 am. Interview went well.

  • Q1. 

    Boundary Traversal of a Binary Tree

    Given a binary tree of integers, your task is to return the boundary nodes of the tree in Anti-Clockwise direction starting from the root node.

    Input:

    The first line ...
  • Ans. 

    Return the boundary nodes of a binary tree in Anti-Clockwise direction starting from the root node.

    • Traverse the left boundary nodes in a top-down manner

    • Traverse the leaf nodes from left to right

    • Traverse the right boundary nodes in a bottom-up manner

    • Handle cases where duplicates occur in the boundary nodes

    • Implement the function without printing as printing is already managed

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaGood knowledge of Data Structures, Some great projects which are used by the usersAmazon interview preparation:Topics to prepare for the interview - Data Structures, Web development, System Design, Algorithms, Dynamic Programming, Database, OS, Networking, OOPS, DevOpsTime required to prepare for the interview - 8 monthsInterview preparation tips for other job seekers

Tip 1 : For Data Structures number of questions doesn't matter. Try to understand the logic behind them and try to apply them in creating multiple scenario's. Learn them by heart. 
Tip 2 : For Web.Development Try to learn full stack development. See which part interests you more, Increase your knowledge horizon, Always try to build a system a system considering It will be served to millions of customers. By doing this 1-2 projects will increase and cover all the major things which one should learn in their career/college.

Application resume tips for other job seekers

Tip 1 : Always try to make it a single page 
Tip 2 : Always make resume company specific. eg. Data Structures part more if you are applying for MNC's eg. Amazon, Google, DE Shaw, browserstack.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

Interview Questionnaire 

1 Question

  • Q1. What technical challenges have you faced in your work till now and how did you overcome it?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be truthful and give detailed explanation of the issues and how it was resolved. Explain the severity of the problem and what blockage it had caused in your daily work. How did you chose a solution and how fast was it implemented.

Associate Interview Questions & Answers

TCS user image Anonymous

posted on 12 Oct 2020

I applied via Referral and was interviewed before Oct 2019. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic communication check, any thing about your self.

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are bcom/ba/bsc stream then basic communication skills and for Accounts/commerce related must have Academics knowledge. Same for bsc/ba Aacdemigs knowledge.
Excel/ Microsoft office knowledge any computer laungage extra advantage.

Clarivate Interview FAQs

How to prepare for Clarivate Java Developer 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 AWS and RDBMS.
What are the top questions asked in Clarivate Java Developer interview?

Some of the top questions asked at the Clarivate Java Developer interview -

  1. Write program to add two numbers in seque...read more
  2. What is directi...read more
  3. Question about java ...read more

Tell us how to improve this page.

Clarivate Java Developer Salary
based on 6 salaries
₹4 L/yr - ₹20 L/yr
84% more than the average Java Developer Salary in India
View more details
Senior Software Engineer
165 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

IP Analyst
158 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
157 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Research Analyst
144 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Content Analyst
131 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Clarivate with

Thomson Reuters

4.1
Compare

Elsevier

4.4
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