Upload Button Icon Add office photos

Filter interviews by

Digilytics AI Interview Questions and Answers

Updated 7 Nov 2021

Digilytics AI Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Singleton class
  • Q2. Multithreading sample program
  • Q3. Query to find student with second highest marks
  • Ans. 

    Query to find second highest marks of a student

    • Sort the marks in descending order

    • Select the second highest mark

    • Join with student table to get student details

  • Answered by AI
  • Q4. Joins in sql
  • Ans. 

    Joins in SQL are used to combine data from two or more tables based on a related column.

    • Joins are used to retrieve data from multiple tables.

    • There are different types of joins such as inner join, left join, right join, and full outer join.

    • The join condition is specified using the ON keyword.

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column;

  • Answered by AI
  • Q5. Can static method be overriden/ overloaded?
  • Ans. 

    No, static methods cannot be overridden but can be overloaded.

    • Static methods belong to the class and not to the instance of the class.

    • Overriding is not possible as it requires inheritance and static methods cannot be inherited.

    • Overloading is possible as it allows multiple methods with the same name but different parameters.

    • Example: public static void method() and public static void method(int a)

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview is based on core java / SQL mainly. There will be atleast 3 technical rounds. You will be asked to share screen and write sample queries/ code. The interviewer will ask you questions and will even help you out a bit to answer those. You should have problem solving technique as they analyse your problem solving capabilities.

Skills evaluated in this interview

Product Engineer Interview Questions asked at other Companies

Q1. Left View of a Binary Tree Given a binary tree, your task is to print the left view of the tree. The left view of a binary tree contains the nodes visible when the tree is viewed from the left side. Input: The input consists of elements in ... read more
Add answer

Jobs at Digilytics AI

View all

Interview questions from similar companies

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

I applied via Referral and was interviewed in Dec 2024. There were 4 interview rounds.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Difference between Lag & Lead with an example
  • Q2. Example explaining Rank,Dense_Rank,Row_Number
  • Q3. Business question around customer funneling.
  • Q4. Some technical questions around marketing campaigns(utm_source,campaign_id,etc.)
Round 2 - One-on-one 

(2 Questions)

  • Q1. Questions around customer funneling(Ideal and non-ideal)
  • Q2. Some other business related problems and situational questions.
Round 3 - One-on-one 

(1 Question)

  • Q1. Behavioural and resume basaed questions with some situational questions.
Round 4 - HR 

(1 Question)

  • Q1. Behavioral questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - HR had taken all my documents and confirmed that she will close the offer within 2-3 days but even after 1 week and multiple follow-ups she started ignoring my mails and messages and did not give any update.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - Technical 

(5 Questions)

  • Q1. What is the architecture of the Java Virtual Machine (JVM)?
  • Ans. 

    The Java Virtual Machine (JVM) is an abstract computing machine that enables a computer to run Java programs.

    • JVM is platform-independent and converts Java bytecode into machine code.

    • It consists of class loader, runtime data areas, execution engine, and native method interface.

    • JVM memory is divided into method area, heap, stack, and PC register.

    • Examples of JVM implementations include Oracle HotSpot, OpenJ9, and GraalVM.

  • Answered by AI
  • Q2. What is the default connection pooling in Spring Boot, and how can it be customized?
  • Ans. 

    The default connection pooling in Spring Boot is HikariCP, which can be customized through properties in the application.properties file.

    • HikariCP is the default connection pooling library in Spring Boot, known for its high performance and low overhead.

    • To customize the connection pooling, you can modify properties like 'spring.datasource.hikari.*' in the application.properties file.

    • For example, you can set maximum pool ...

  • Answered by AI
  • Q3. What are the best practices for optimizing a Spring Boot application?
  • Ans. 

    Best practices for optimizing a Spring Boot application

    • Use Spring Boot Actuator to monitor and manage application performance

    • Implement caching mechanisms like Spring Cache to reduce database calls

    • Optimize database queries and indexes for better performance

    • Use asynchronous processing with Spring's @Async annotation for non-blocking operations

    • Profile and analyze application performance using tools like VisualVM or JProfi

  • Answered by AI
  • Q4. What is a heap dump, and how can it be used to identify memory leaks?
  • Ans. 

    A heap dump is a snapshot of the memory usage of a Java application at a specific point in time.

    • Heap dumps can be generated using tools like jmap or VisualVM.

    • They provide detailed information about objects in memory, their sizes, and references.

    • Analyzing a heap dump can help identify memory leaks by pinpointing objects that are consuming excessive memory.

    • Common signs of memory leaks in a heap dump include a large numbe...

  • Answered by AI
  • Q5. How can you diagonally iterate through and print the elements of a 2D array?program
  • Ans. 

    Diagonally iterate through and print elements of a 2D array of strings.

    • Use nested loops to iterate through rows and columns of the 2D array.

    • Calculate the diagonal elements by incrementing row and column indices together.

    • Print the elements as you iterate through the diagonal of the array.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I was interviewed in Nov 2024.

Round 1 - Case Study 

Here’s a simple framework to approach a case study effectively:


---

Case Study Framework

1. Understand the Problem

Read the case thoroughly and identify the key issue.

Ask clarifying questions if needed (if in a live setting).

Summarize the problem in your own words.



2. Analyze the Situation

SWOT Analysis (Strengths, Weaknesses, Opportunities, Threats)

Identify relevant stakeholders.

Gather data or key insights from the case text.



3. Identify Alternatives

Brainstorm possible solutions to the problem.

Consider multiple approaches (e.g., short-term vs. long-term solutions).



4. Evaluate the Alternatives

Weigh the pros and cons of each solution.

Assess feasibility, costs,

Round 2 - Technical 

(2 Questions)

  • Q1. What are the common performance issues that can occur in a system?
  • Ans. 

    Common performance issues in a system include slow response times, high resource usage, bottlenecks, and crashes.

    • Slow response times can be caused by inefficient code, network latency, or overloaded servers.

    • High resource usage can lead to system slowdowns and crashes, often caused by memory leaks or inefficient algorithms.

    • Bottlenecks occur when a component of the system becomes a limiting factor, such as a database ser...

  • Answered by AI
  • Q2. What is your experience with software bug fixing?
  • Ans. 

    I have experience in identifying and resolving software bugs through thorough testing and collaboration with developers.

    • Identifying bugs by reproducing issues reported by users

    • Collaborating with developers to understand root cause of bugs

    • Testing bug fixes to ensure they are effective

    • Utilizing bug tracking tools like Jira or Bugzilla

    • Experience with regression testing to prevent reoccurrence of bugs

  • Answered by AI
Round 3 - Coding Test 

Shortcut Tips for Coding Tests: 1. Master the Basics: Familiarize yourself with arrays, strings, loops, and conditional statements. 2. Learn Patterns: Concentrate on sliding window, two-pointer techniques, recursion, and divide-and-conquer methods. 3. Use Standard Algorithms: Study breadth-first search (BFS), depth-first search (DFS), sorting algorithms, and dynamic programming principles. 4. Understand Data Structures: Practice with stacks, queues, linked lists, and trees. 5. Practice Edge Cases: Consider scenarios involving empty inputs, duplicates, and large datasets. 6. Write Pseudocode: Outline your plan before starting to code. 7. Optimize Early: Always strive for efficiency in your solutions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Quick Tips for Job Seekers:

1. Know Your Strengths: Identify skills and tailor your resume.


2. Network: Leverage LinkedIn, industry events, and connections.


3. Customize Applications: Align resumes and cover letters to job descriptions.


4. Prepare for Interviews: Research companies and practice answers.


5. Upskill: Learn in-demand tools, certifications, and soft skills.


6. Stay Organized: Track applications and follow-ups.


7. Be Positive: Handle rejections as learning opportunities.


8. Leverage Social Media: Optimize LinkedIn and maintain professionalism online.


9. Consider All Opportunities: Explore freelance, contract, or adjacent roles.


10. Follow Up: Send thank-you notes and stay connected with recruiters.



Stay consistent and persistent—your opportunity is ahead!
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

I applied via Walk-in

Round 1 - Aptitude Test 

They gave 100 aptitude questions like distance,time,logical reasoning , puzzle, etc.. to solve within 1 hour but 40 marks is pass mark.

Round 2 - Technical 

(4 Questions)

  • Q1. I said that I know html, css and basics of C#. So, they gave first question as do the web page designing using html and css. In page, it contains header and footer. In between header and footer the body t...
  • Q2. Sum of digits inc#
  • Ans. 

    The question is asking for a program to calculate the sum of digits in a given number.

    • Create a function that takes in a number as input

    • Convert the number to a string to iterate through each digit

    • Sum up all the digits and return the total

  • Answered by AI
  • Q3. Scenario based basic program question. 15 team players in the cricket team . But you have to choose only 11 members to play. He told that 11 members have binary value 1 and another 4 members have binay va...
  • Q4. In sql server, join two tables it contains same columns but don't use joins.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare what mentioned in resume
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic Hacker Rank SQL Questions 2 . and 10 MCQ based

Round 2 - Technical 

(3 Questions)

  • Q1. Select customer, sum(amt ) as total_amt from t1 group by customer how many no. of rows it will return and explain this table t1 column name-> dept customer item amt
  • Q2. Select * , sum(amt) over (partition by customer) as total_amt from t2
  • Ans. 

    The query selects all columns and calculates the total amount for each customer in table t2.

    • The query uses a window function to calculate the sum of 'amt' for each customer in the 't2' table.

    • The 'partition by customer' clause divides the result set into partitions based on the 'customer' column.

    • The 'select *' statement selects all columns from the table along with the calculated total amount.

    • The 'sum(amt) over (partiti...

  • Answered by AI
  • Q3. How many Customers has purchased same item on the Same day more than onnce
  • Ans. 

    To find customers who purchased the same item multiple times on the same day.

    • Identify unique customers who purchased the same item multiple times on the same day

    • Check for duplicate transactions by customer and item on the same day

    • Aggregate the data to count the number of customers who made multiple purchases of the same item on the same day

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic sql and solve questiosn without seeing answers
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What you know about It hardware?
  • Ans. 

    IT hardware refers to physical components of a computer system, such as the motherboard, CPU, RAM, and hard drive.

    • IT hardware includes components like motherboards, CPUs, RAM, and hard drives.

    • It also encompasses peripherals like monitors, keyboards, and printers.

    • Understanding IT hardware is essential for troubleshooting and maintaining computer systems.

    • Examples of IT hardware brands include Intel, AMD, Samsung, and Wes

  • Answered by AI
  • Q2. What you know about material management?
  • Ans. 

    Material management involves planning, organizing, and controlling the flow of materials from acquisition to consumption.

    • Involves procurement, storage, and distribution of materials

    • Focuses on optimizing inventory levels to meet demand

    • Includes forecasting, inventory control, and supplier management

    • Ensures efficient use of resources and cost-effective operations

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What you know about IT hardware?
  • Ans. 

    IT hardware refers to physical components of a computer system, such as the motherboard, CPU, RAM, and hard drive.

    • IT hardware includes components like motherboards, CPUs, RAM, hard drives, and graphics cards.

    • Understanding IT hardware is essential for troubleshooting computer issues and upgrading systems.

    • Examples of IT hardware brands include Intel, AMD, NVIDIA, and Western Digital.

  • Answered by AI
  • Q2. What you know about material management ?
  • Ans. 

    Material management involves planning, organizing, and controlling the flow of materials from acquisition to use or disposal.

    • Involves procurement, storage, and distribution of materials

    • Ensures efficient use of resources and cost-effective operations

    • Includes inventory management and supply chain optimization

    • Focuses on reducing waste and improving productivity

    • Examples: Just-in-time inventory system, ABC analysis for inve

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Store Manager, IT hardware
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Sep 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

Aptitude and Logical Reasoning

Round 2 - Technical 

(2 Questions)

  • Q1. Understanding of current roles and responsibilities
  • Q2. Behavioural questions
Round 3 - Technical 

(2 Questions)

  • Q1. Discussion of current roles and responsibilities
  • Q2. Behavioural questions to check the role fit
Round 4 - Technical 

(3 Questions)

  • Q1. Discussion on current roles and responsibilities
  • Q2. How do you convince a Upset customer
  • Ans. 

    Listen to their concerns, empathize with them, offer solutions, and follow up to ensure satisfaction.

    • Listen actively to their concerns without interrupting.

    • Empathize with their situation and show understanding.

    • Offer solutions or alternatives to address their issues.

    • Follow up with the customer to ensure their satisfaction and resolve any remaining concerns.

    • Apologize for any inconvenience caused and take responsibility f...

  • Answered by AI
  • Q3. Culture fit check
Round 5 - One-on-one 

(3 Questions)

  • Q1. Questions on API's, Technical Architecture
  • Q2. Culture fit check
  • Q3. Scenario based questions with respect to Development and coding and API's

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong preparation is needed for scenario based questions. Use STAR method.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Project based questions
  • Q2. Metrics based questions
  • Q3. Client handling based questions
  • Q4. Changing Team members based scenarios questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Your personal on field experience only will help you to crack the interviews at CSGi
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. Questions on fundamental concepts of cybersecurity.
  • Q2. What are the Business As Usual (BAU) activities in your current company, and what is the rationale behind them?
  • Q3. Will give a scenario and questions based on that.
  • Q4. Can you describe a challenging situation you faced and how you overcame it?
  • Q5. What types of high and critical alerts have you handled, and what steps did you take to resolve them?
  • Ans. 

    I have handled high and critical alerts related to malware infections, data breaches, and phishing attacks.

    • Identifying the source and scope of the alert

    • Isolating affected systems to prevent further damage

    • Implementing security patches and updates

    • Conducting forensic analysis to determine the extent of the breach

    • Collaborating with IT teams to strengthen security measures

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. Few similar questions asked in 1st round.
  • Q2. Will expect an understanding of security concepts in a bit more detailed manner.
  • Q3. What is the architecture of a Security Information and Event Management (SIEM) tool?
  • Ans. 

    SIEM tool architecture includes data collection, normalization, correlation, and reporting components.

    • Data collection: Gathers security data from various sources like logs, network traffic, and endpoints.

    • Normalization: Standardizes the collected data into a common format for analysis.

    • Correlation: Identifies patterns and relationships in the data to detect security incidents.

    • Reporting: Generates reports and alerts based...

  • Answered by AI
  • Q4. Scenario based questions.
Round 3 - HR 

(6 Questions)

  • Q1. Tell me about yourself.
  • Q2. What information do you have about the company?
  • Q3. What are the reasons for choosing this company?
  • Q4. Will discuss on general things about you and your previous employers.
  • Q5. What is your reason for leaving your current company?
  • Q6. What is your current salary, and what are your salary expectations?

Interview Preparation Tips

Topics to prepare for TSYS|Total System Services Information Security Analyst interview:
  • SIEM
  • Information Security
  • EDR
  • Incident management
Interview preparation tips for other job seekers - Be thorough with your Business as Usual (BAU) tasks. Have confidence and avoid including information in your resume that you are not familiar with. Demonstrate your potential by showing a willingness to learn and adapt.

Digilytics AI Interview FAQs

How to prepare for Digilytics AI 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 Digilytics AI. The most common topics and skills that interviewers at Digilytics AI expect are HTML, HTTP, Data Science, Financial Services and Machine Learning.
What are the top questions asked in Digilytics AI interview?

Some of the top questions asked at the Digilytics AI interview -

  1. Can static method be overriden/ overload...read more
  2. Query to find student with second highest ma...read more
  3. Joins in ...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Mu Sigma Interview Questions
2.6
 • 229 Interviews
Tiger Analytics Interview Questions
3.7
 • 221 Interviews
Fractal Analytics Interview Questions
4.0
 • 207 Interviews
AbsolutData Interview Questions
3.6
 • 9 Interviews
Algonomy Interview Questions
4.0
 • 9 Interviews
Crayon Data Interview Questions
3.6
 • 4 Interviews
View all

Digilytics AI Reviews and Ratings

based on 18 reviews

4.4/5

Rating in categories

4.3

Skill development

3.8

Work-life balance

3.9

Salary

3.6

Job security

3.9

Company culture

3.8

Promotions

4.3

Work satisfaction

Explore 18 Reviews and Ratings
HR Generalist | Fresher

Gurgaon / Gurugram

0-2 Yrs

Not Disclosed

Explore more jobs
Data Scientist
8 salaries
unlock blur

₹5 L/yr - ₹10.6 L/yr

Jr. Data Scientist
8 salaries
unlock blur

₹5.3 L/yr - ₹14.9 L/yr

Data Analyst
6 salaries
unlock blur

₹5.5 L/yr - ₹10 L/yr

Analyst
5 salaries
unlock blur

₹5 L/yr - ₹6 L/yr

Consultant
5 salaries
unlock blur

₹14 L/yr - ₹17 L/yr

Explore more salaries
Compare Digilytics AI with

Fractal Analytics

4.0
Compare

Mu Sigma

2.6
Compare

Tiger Analytics

3.6
Compare

LatentView Analytics

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