Upload Button Icon Add office photos

Filter interviews by

Clear (1)

CyberArk Senior Data Scientist Interview Questions and Answers

Updated 8 Nov 2022

CyberArk Senior Data Scientist Interview Experiences

1 interview found

I applied via Approached by Company and was interviewed before Nov 2021. 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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Basic DS And Algo questions
Round 3 - Technical 

(1 Question)

  • Q1. DS and Algo, questions related to ML AND NLP, and my projects, Questions related to Databricks, as I worked on it
Round 4 - Technical 

(1 Question)

  • Q1. Questions related to NLP and Azure Infra

Interview Preparation Tips

Interview preparation tips for other job seekers - Good fundamentals and fair knowledge on DS and Algo should suffice

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Programming and logical reasoning

Interview Preparation Tips

Interview preparation tips for other job seekers - 3 rounds of technical interview

Data Analyst Interview Questions & Answers

McAfee user image Sidharth Kriplani

posted on 13 Aug 2023

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

I applied via Referral and was interviewed before Aug 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all Resume tips
Round 2 - Technical 

(4 Questions)

  • Q1. I was provided with three tables: 1st table had city wise sales, 2nd table had province_id and name, 3rd table had city_id, city_name, and province_id 1. Get the highest sales value, city, province. Do th...
  • Q2. Can aggregate functions be used with HAVING clause? With WHERE clause? What is the difference between WHERE and HAVING clause? Can HAVING be used without GROUP BY?
  • Ans. 

    Yes, aggregate functions can be used with HAVING and WHERE clauses. WHERE filters rows before grouping, HAVING filters groups after grouping.

    • Aggregate functions can be used with HAVING clause to filter groups based on the result of the aggregate function.

    • Aggregate functions can also be used with WHERE clause to filter rows before grouping.

    • WHERE clause filters rows before grouping, while HAVING clause filters groups aft...

  • Answered by AI
  • Q3. What is the order of execution of a SQL Query?
  • Ans. 

    The order of execution of a SQL query is: FROM, WHERE, GROUP BY, HAVING, SELECT, ORDER BY.

    • FROM: Specifies the tables involved in the query

    • WHERE: Filters the rows based on specified conditions

    • GROUP BY: Groups the rows that have the same values into summary rows

    • HAVING: Filters the groups based on specified conditions

    • SELECT: Selects the columns to be displayed in the result set

    • ORDER BY: Sorts the result set based on speci

  • Answered by AI
  • Q4. What are User Defined Functions? Stored Procedures? Triggers?
  • Ans. 

    User Defined Functions, Stored Procedures, and Triggers are database objects used to perform specific tasks in database management systems.

    • User Defined Functions are custom functions created by users to perform specific calculations or operations in a database.

    • Stored Procedures are precompiled SQL statements that can be executed by calling the procedure name.

    • Triggers are special types of stored procedures that are auto...

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. This was a managerial round

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for SQL the most

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Windows OS related
Round 2 - One-on-one 

(1 Question)

  • Q1. Work experience related
Round 3 - One-on-one 

(1 Question)

  • Q1. Managerial+ Behavioural
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Data Structure, Hashing
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basics on Swift
  • Q2. Diff between GCD and Queue in depth
  • Ans. 

    GCD is a low-level API for managing concurrent operations, while Queue is a high-level API for managing tasks in a FIFO order.

    • GCD stands for Grand Central Dispatch and is a low-level API for managing concurrent operations in iOS and macOS.

    • Queues are a high-level API in GCD used for managing tasks in a FIFO (First In, First Out) order.

    • GCD allows you to create and manage queues, while queues are used to execute tasks con...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - there were 4 rounds of interview, I got selected in all and later they said they have budget issue there was miscommunication happened to you while screening. Don't waste your time on giving interview for this company.

Skills evaluated in this interview

I was interviewed before Mar 2021.

Round 1 - Technical 

(3 Questions)

  • Q1. How to check a number is power of 2
  • Ans. 

    To check if a number is a power of 2, we can use bitwise operations.

    • A power of 2 has only one bit set to 1, so we can use the bitwise AND operator to check if the number is a power of 2.

    • If n is a power of 2, then n & (n-1) will be 0.

    • For example, 8 (1000 in binary) is a power of 2, and 8 & 7 (0111 in binary) is 0.

  • Answered by AI
  • Q2. Sort a stack without using another data structure
  • Ans. 

    Sort a stack without using another data structure

    • Use recursion to pop the top element and insert it at the bottom of the remaining stack

    • Repeat until the stack is sorted in ascending order

    • Time complexity: O(n^2), space complexity: O(n) due to recursion

  • Answered by AI
  • Q3. Check weather array have continuous increasing than decreasing value
  • Ans. 

    Check if array has continuous increasing and decreasing values

    • Loop through the array and check if each element is greater than the previous one

    • Once you find the maximum element, check if the remaining elements are in decreasing order

    • If yes, return true else false

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Design a cricinfo (LLD)
  • Ans. 

    Design a cricinfo (LLD)

    • Identify the entities: players, teams, matches, scorecards, tournaments, etc.

    • Define the relationships between entities

    • Create a database schema to store the data

    • Implement APIs to fetch and update data

    • Design a UI to display the information

    • Consider scalability and performance

    • Ensure data security and privacy

  • Answered by AI
Round 3 - HR 

(3 Questions)

  • Q1. Share details of your previous job.
  • Q2. Why should we hire you?
  • Q3. What are your strengths and weaknesses?

Interview Preparation Tips

Interview preparation tips for other job seekers - Do study basic Data Structure questions and also prepare for Low level design.
Do work on behavioral questions too.

Skills evaluated in this interview

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

(1 Question)

  • Q1. System design - 1500 max inserting request to db a day max latency 60 se
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Datatypes in python
  • Ans. 

    Python has various datatypes like int, float, str, list, tuple, dict, set, bool.

    • int: whole numbers

    • float: decimal numbers

    • str: text

    • list: ordered collection

    • tuple: ordered, immutable collection

    • dict: key-value pairs

    • set: unordered collection with no duplicates

    • bool: True or False values

  • Answered by AI
  • Q2. Diffrence between django and flask
  • Ans. 

    Django is a high-level Python web framework that encourages rapid development and clean, pragmatic design. Flask is a lightweight WSGI web application framework.

    • Django is a full-featured framework with built-in ORM, admin panel, and authentication system.

    • Flask is a microframework that is more lightweight and flexible, allowing developers to choose their own tools and libraries.

    • Django follows the 'batteries included' ph...

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Interviewer was not aware about the concepts in C++.. Asked abstract class in C++ and singly linked list implementation. Don't go for f2f interviews which they schedule on weekends interviewers are rude an...

Interview Preparation Tips

Topics to prepare for Qualys Senior Software Engineer interview:
  • DSA
  • C++
Contribute & help others!
anonymous
You can choose to be anonymous

CyberArk Interview FAQs

How many rounds are there in CyberArk Senior Data Scientist interview?
CyberArk interview process usually has 4 rounds. The most common rounds in the CyberArk interview process are Technical and Resume Shortlist.
What are the top questions asked in CyberArk Senior Data Scientist interview?

Some of the top questions asked at the CyberArk Senior Data Scientist interview -

  1. Questions related to NLP and Azure In...read more
  2. Basic DS And Algo questi...read more
  3. DS and Algo, questions related to ML AND NLP, and my projects, Questions relate...read more

Recently Viewed

JOBS

Emerson Electric Co.

No Jobs

SALARIES

FireEye

INTERVIEWS

CyberArk

No Interviews

JOBS

Flexera Software

No Jobs

JOBS

Genpact

No Jobs

JOBS

Infor Global Solution

No Jobs

SALARIES

Zscaler Softech

SALARIES

Flexera Software

JOBS

Flexera Software

No Jobs

JOBS

Strategic Talent Partner

No Jobs

Tell us how to improve this page.

Interview Questions from Similar Companies

Qualys Interview Questions
3.8
 • 38 Interviews
McAfee Interview Questions
4.0
 • 30 Interviews
Backbase Interview Questions
3.9
 • 22 Interviews
RSA Security Interview Questions
3.8
 • 19 Interviews
3Pillar Global Interview Questions
3.3
 • 19 Interviews
Mentor Graphics Interview Questions
4.0
 • 18 Interviews
Gen Interview Questions
4.0
 • 17 Interviews
Yodlee Interview Questions
3.8
 • 17 Interviews
Bottomline Interview Questions
3.3
 • 17 Interviews
View all

CyberArk Senior Data Scientist Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

5.0

Salary

4.0

Job security

5.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
50 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
38 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Graphic Designer
16 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Sdet Engineer
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare CyberArk with

Palo Alto Networks

3.9
Compare

Check Point Software Technologies

3.8
Compare

FireEye

4.3
Compare

Gen

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