Upload Button Icon Add office photos

Filter interviews by

Deepen AI Interview Questions and Answers for Experienced

Updated 8 Nov 2024

Deepen AI Interview Experiences for Experienced

Popular Designations

2 interviews found

POD Lead Interview Questions & Answers

user image Anonymous

posted on 8 Nov 2024

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

I applied via Referral and was interviewed before Nov 2023. There was 1 interview round.

Round 1 - HR 

(3 Questions)

  • Q1. Tell me about your self
  • Q2. What is meaning of AI
  • Ans. 

    AI stands for Artificial Intelligence, which refers to the simulation of human intelligence in machines that are programmed to think and learn like humans.

    • AI involves the development of algorithms that enable machines to perform tasks that typically require human intelligence.

    • Examples of AI include virtual assistants like Siri and Alexa, self-driving cars, and recommendation systems like those used by Netflix and Amazo...

  • Answered by AI
  • Q3. Are you comfortable to with with employees

Interview Preparation Tips

Topics to prepare for Deepen AI POD Lead interview:
  • To know the company details
  • To learn about you applying role
  • You can give interview confidenc
Interview preparation tips for other job seekers - To search the jobs any way you can prepare so much of your skills because. Hr will asked different questions to different persons as you mentioned in the resume. Be prepare and all the best for you are searching new jobs to give good interview. And, Good luck.

Skills evaluated in this interview

POD Lead Interview Questions asked at other Companies

Q1. What is meaning of AI
View answer (1)

Interview Questionnaire 

1 Question

  • Q1. Automation related

Manual Tester Interview Questions asked at other Companies

Q1. What is sdlc stlc waterfall model,smoke testing, black box testing, what is quality, what is strub and driver, different levels of testing, UAT, system testing. What is defect, Defect life cycle.
View answer (1)

Interview questions from similar companies

I applied via Recruitment Consulltant and was interviewed before Sep 2021. There were 6 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 

Hacker rank test on Python, SQL and Aptitude , English

Round 3 - Technical 

(2 Questions)

  • Q1. Technical from Hiring Manager
  • Q2. How many Surf excel are consuming in Gurgaon area on daily basis Advance excel Questions. Python and SQL basics
Round 4 - Technical 

(1 Question)

  • Q1. Technical -Senior Manager-Product Management
Round 5 - Technical 

(1 Question)

  • Q1. HOD Product Management- 1: 1 Techno Managerial -
Round 6 - HR 

(1 Question)

  • Q1. Salary Discussion and Hr rounds -general question

Interview Preparation Tips

Interview preparation tips for other job seekers - Be specific.
They more focused on a problem What and How.
be ready to answer any challenge based on technical or Case studies

I applied via Naukri.com and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Related to resume and business case.

Interview Preparation Tips

Interview preparation tips for other job seekers - The entire interview plus hiring takes more than 3 months. In most occasions the Finance rejects the offer proposed by the HRs. HRs are highly unprofessional (Lead HR - Parvathi Urs). A huge risk of offer getting dissolved mid-way as well so take risk accordingly.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - HR 

(3 Questions)

  • Q1. Tell me something about your self ?
  • Q2. What are your strengths?
  • Q3. Why are you interested in this job?

Interview Preparation Tips

Interview preparation tips for other job seekers - Identify career goals
Dedicate to time search
Keep your self busy
Use several job search websites
Optimize your linkedin profile
Make networking part of your everyday life
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

SQL. Statstics python mathematics

Round 2 - One-on-one 

(1 Question)

  • Q1. SQL+case study regarding busienss
Round 3 - Case Study 

Some profitable case

Round 4 - Case Study 

Startegy case round regarding swiggy

Intern Interview Questions & Answers

Rapido user image voota prasad naidu

posted on 15 Sep 2023

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Aug 2023. There were 2 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 

(2 Questions)

  • Q1. Did you know marketing operations
  • Q2. Did you know rapido

Interview Preparation Tips

Interview preparation tips for other job seekers - It's a easy for interview but knowledge is very important
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected
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 

Sql test in Hackerrank

Round 3 - One-on-one 

(1 Question)

  • Q1. Questions on SQL was asked
Round 4 - One-on-one 

(1 Question)

  • Q1. Managerial round. I was asked questions on case study for captain acquisition
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Oct 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. About yourself?
Round 2 - Technical 

(1 Question)

  • Q1. About languages?
Round 3 - HR 

(1 Question)

  • Q1. Normal questions were there

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 minutes
Round difficulty - Easy

The test had it's webcam on, we were not allowed to go out of the frame.

  • Q1. 

    Nth Fibonacci Number Problem Statement

    Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1.

    Input:

    ...
  • Ans. 

    The program calculates the Nth Fibonacci number using a recursive formula.

    • The Fibonacci series starts with 1, 1, and each subsequent number is the sum of the two preceding numbers.

    • The program uses a recursive function to calculate the Nth Fibonacci number.

    • The time complexity of the program is O(2^N), which can be optimized using memoization or dynamic programming.

  • Answered by AI
  • Q2. 

    Longest Consecutive Sequence Problem Statement

    You are provided with an unsorted array/list ARR of N integers. Your task is to determine the length of the longest consecutive sequence present in the array...

  • Ans. 

    The task is to find the length of the longest consecutive sequence in an unsorted array of integers.

    • Sort the array to bring consecutive numbers together

    • Iterate through the sorted array and keep track of the current consecutive sequence length

    • Update the maximum length if a longer sequence is found

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

The interview was online from home.

  • Q1. 

    Reverse the String Problem Statement

    You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string.

    Example:

    Input:
    STR = "abcde"
    Output:
    "e...
  • Ans. 

    The task is to reverse a given string containing lowercase letters, uppercase letters, digits, and special characters.

    • Iterate through the string from the last character to the first character and append each character to a new string.

    • Alternatively, you can use built-in string reversal functions or methods available in your programming language.

    • To solve the follow-up question with O(1) space complexity, you can use a tw...

  • Answered by AI
Round 3 - HR 

Round duration - 20 minutes
Round difficulty - Easy

This was last round. In this round interviewer ask about me and what i know about company. Also he ask about my projects as well as my future goals . 
The interviewer was very understanding and supportive.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in GurgaonEligibility criteriaNoGreyOrange interview preparation:Topics to prepare for the interview - Data Structures, Object-Oriented Programming, Algorithms, Dynamic programming, Graphs, Operating Systems and Database Management System,Java, MySQL, HTML, CSS, JavaScript, Nodejs, PythonTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Find a good course, and first clear all your fundamentals and implementation of every data structure. You should be thorough with their time as well as space complexities. 
Tip 2 : Upon clearing the fundamentals, select a platform where you have a large no of questions, also whose test cases are good. eg. LeetCode, InterviewBit or Codezen. Go and complete 300-400 questions.
Tip 3 : Also whenever you're not able to solve the problem, check out the editorial and then re-attempt it again. Also, check the discussion if there is some good solution to the same problem.
Tip 4 : For OOPS, DS and programming, I recommend Codezen, Leetcode, InterviewBit and GeeksforGeeks.
Tip 5 : For OS, DBMS and Computer Network, I recommend GateSmasher, Knowledge Gate and TutorialsPoint.

Application resume tips for other job seekers

Tip 1 : Resume should contain facts, numbers, and data comparison.
Tip 2 : Mention only those projects and internships in your resume that you are comfortable with, that is, you can explain to the interviewee.
Tip 3 : Technical achievements in the field you're applying to, would be good.
Tip 4 : DO NOT FAKE THINGS, the interviewer is smart enough.

Final outcome of the interviewSelected

Skills evaluated in this interview

Deepen AI Interview FAQs

How many rounds are there in Deepen AI interview for experienced candidates?
Deepen AI interview process for experienced candidates usually has 1 rounds. The most common rounds in the Deepen AI interview process for experienced candidates are HR.
How to prepare for Deepen AI interview for experienced candidates?
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 Deepen AI. The most common topics and skills that interviewers at Deepen AI expect are Asset Management, Balance Sheet, Django, Financial Statement Analysis and MongoDB.
What are the top questions asked in Deepen AI interview for experienced candidates?

Some of the top questions asked at the Deepen AI interview for experienced candidates -

  1. What is meaning of...read more
  2. Some technical questions and system based questi...read more
  3. Group descuscat...read more

Tell us how to improve this page.

Deepen AI Interview Process for Experienced

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Zeta Interview Questions
3.3
 • 69 Interviews
Ather Energy Interview Questions
4.0
 • 56 Interviews
Grey Orange Interview Questions
3.2
 • 38 Interviews
Rapido Interview Questions
3.8
 • 28 Interviews
Druva Interview Questions
3.7
 • 25 Interviews
ZestMoney Interview Questions
4.0
 • 14 Interviews
Postman Interview Questions
3.6
 • 11 Interviews
View all

Deepen AI Reviews and Ratings

based on 32 reviews

4.0/5

Rating in categories

3.6

Skill development

3.5

Work-life balance

3.2

Salary

3.4

Job security

3.6

Company culture

3.2

Promotions

3.6

Work satisfaction

Explore 32 Reviews and Ratings
Associate Data Analyst
30 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Data Analyst
29 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Quality Analyst
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Data Analyst
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Deepen AI with

Netradyne Technology

3.3
Compare

Grey Orange

3.2
Compare

Niramai Health Analytix

3.1
Compare

Ather Energy

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