Filter interviews by
I applied via LinkedIn and was interviewed in Jan 2024. There were 2 interview rounds.
Decimal zero constraint in C is a rule that specifies how decimal zero values are treated in calculations.
In C, decimal zero values are treated as regular zero values in most calculations.
However, when dividing a decimal zero by another decimal zero, the result is undefined.
To avoid potential issues, it is recommended to check for decimal zero values before performing calculations.
Python supports various datatypes including integers, floats, strings, lists, tuples, dictionaries, and booleans.
Integers are whole numbers without decimal points.
Floats are numbers with decimal points.
Strings are sequences of characters.
Lists are ordered collections of items.
Tuples are similar to lists but are immutable.
Dictionaries are key-value pairs.
Booleans represent either True or False.
I applied via Referral and was interviewed in Apr 2024. There were 2 interview rounds.
Easy cat level questions
The first function is the initial step or action performed in a process or system.
It sets the foundation for subsequent functions.
It often determines the overall success or failure of the process.
Examples include data collection, analysis, planning, and decision-making.
I have intermediate knowledge of Python, including data manipulation, web scraping, and automation.
Proficient in data manipulation using pandas library
Experience with web scraping using BeautifulSoup and Selenium
Familiar with automation tasks using libraries like requests and pyautogui
Analytics involves collecting, analyzing, and interpreting data to make informed decisions and drive business growth.
Analytics involves collecting data from various sources such as websites, social media, and customer interactions.
Data is then analyzed using statistical methods and tools to identify trends, patterns, and insights.
Interpreting the data helps businesses make informed decisions and optimize strategies for...
I applied via Campus Placement and was interviewed before Feb 2023. There were 4 interview rounds.
Four sections, including logical, technical, English and maths
2 set of coding questions, with test cases
Adani Digital Labs interview questions for popular designations
I appeared for an interview before Mar 2024, where I was asked the following questions.
I expect to contribute effectively, grow professionally, and collaborate with a dynamic legal team to achieve our goals.
Contribute to case preparation by conducting thorough legal research and analysis, ensuring all arguments are well-supported.
Collaborate with colleagues on complex cases, sharing insights and strategies to enhance our overall effectiveness.
Engage in continuous professional development, attending works...
I am open to relocating to Ahmedabad for the right opportunity, considering both personal and professional factors.
Ahmedabad has a growing legal market, providing ample opportunities for career advancement.
The city offers a rich cultural heritage, which can enhance personal life.
Relocating would allow me to network with local legal professionals and firms.
I am adaptable and willing to embrace new environments for profe
In five years, I aim to be a leading legal expert, contributing to impactful cases and mentoring future lawyers.
Develop expertise in a specific area of law, such as intellectual property or environmental law.
Take on leadership roles in legal projects, demonstrating my ability to manage teams and drive results.
Engage in continuous education through workshops and certifications to stay updated on legal trends.
Build a str...
I appeared for an interview before Mar 2024.
Three coding questions categorized as medium difficulty on LeetCode.
Project discussion round, followed by technical interview.
I applied via Naukri.com and was interviewed before Oct 2022. There were 3 interview rounds.
2-4 lc med easy question
The question is asking about advanced concepts in JavaScript such as event loop, promises, closures, and Redux for frontend development.
Event loop in JavaScript helps manage asynchronous operations by executing callback functions in a queue.
Promises in JavaScript are used for handling asynchronous operations and providing a more readable and manageable code structure.
Closures in JavaScript allow functions to retain acc...
The program capitalizes the first letter of each reversed word in a sentence.
Split the sentence into an array of words using space as a delimiter.
Reverse each word in the array and capitalize the first letter.
Join the modified words back into a sentence.
posted on 27 Oct 2021
I appeared for an interview in Feb 2021.
Round duration - 90 Minutes
Round difficulty - Hard
The test was at 6 pm with cam on and in fullscreen mode.
You are given three strings 'A', 'B', and 'C'. Determine if 'C' is formed by interleaving 'A' and 'B'.
String 'C' is an interleaving of 'A' and 'B' if the lengt...
The problem involves determining if a string 'C' is formed by interleaving two given strings 'A' and 'B'.
Check if the length of 'C' is equal to the sum of the lengths of 'A' and 'B'.
Verify if all characters of 'A' and 'B' exist in 'C' while maintaining their order.
Return 'True' if 'C' is an interleaving of 'A' and 'B', otherwise return 'False'.
Given two lists representing the inorder and postorder traversal of a binary tree of integer type with 'N' nodes, construct the binary tree and r...
Construct a binary tree from inorder and postorder traversal lists and return its root.
Create a map to store the indices of elements in the inorder traversal list for quick access during tree construction.
Use the postorder list to determine the root of the tree and recursively build left and right subtrees.
Construct the tree by recursively dividing the inorder list based on the root index in postorder list.
Return the r...
Round duration - 45 Minutes
Round difficulty - Easy
At 10:00 AM. Interviewer was very friendly and young but his cam was off.
Kevin has sketched a series of integers, forming a diagram that represents a binary tree. Challenged by a friend, Kevin needs to find all paths from the root to the leaf where th...
Round duration - 45 Minutes
Round difficulty - Easy
It was held at 4 p.m. The interviewer was senior compared to the one in the previous round. Also, his cam was also on, but he wasn't speaking much and neither giving any expressions.
Given a set of boxes represented by an array gainPower
, where each box has a certain power value, along with an initial power value 'power', your task is to maximize the t...
Maximize total score by selecting boxes optimally based on power values and operations.
Iterate through the boxes and perform operations based on power values and current score
Keep track of power, score, and selected boxes to maximize total score
Example: For input [3, 50, [20, 30, 40]], select boxes with power 20 and 30 to get a score of 2
Tip 1 : DSA is the key. Starting from scratch, one can become proficients in a couple of months.
Tip 2 : Solve questions just a bit outside your comfort zone. Solve too easy to too hard questions is not of any use.
Tip 3 : Be consistent, make a habit of following good coding practices.
Tip 4 : Get to know the ins and out of your projects. You must be very confident while explaining those.
Tip 5 : Don't just directly to system-design, brush up on OOPS principles, networks, OS, DBMS before that.
Tip 1 : Keep it crisp and to the point. Make bullet points.
Tip 2 : Bold the things you want to be paid attention to. Use numbers rather than vague sentences.
Tip 3 : Only put the things you are confident about.
Tip 4 : Don't put things irrelevant to the job, it only dilutes the main content.
posted on 16 Sep 2021
I appeared for an interview in Dec 2020.
Round duration - 75 minutes
Round difficulty - Easy
This round was conducted in Hackerrank portal for a total duration of 75 minutes and was divided into 4 sections.
1st Section : Aptitude Section : 14 questions , 28 minutes
2nd Section : Technical Section : 12 questions , 17 minutes
3rd Section :1 coding Questions : 20 minutes+30 minutes
This Round was Conducted on Hackerrank (Webcam Enabled).
To find and correct a bug in code, analyze problem statement, review code, use debugging tools, and test different scenarios.
Understand the problem statement and expected output
Review the code for syntax errors, logical errors, and potential bugs
Use debugging tools like breakpoints, print statements, and IDE debuggers
Test the code with different inputs and edge cases to identify the bug
Make necessary corrections and re
Given a Binary Tree of distinct integers and two integers, target
and K
, return a list of values of all nodes located at a distance K
from the target no...
Find nodes at distance K from target node in a Binary Tree.
Use BFS to traverse the tree and keep track of the distance of each node from the target node.
Maintain a set to keep track of visited nodes to avoid revisiting them.
Return the values of nodes at distance K from the target node.
Round duration - 90 minutes
Round difficulty - Medium
I was shared a link of Google Meet and the Google Docs was shared where there was 1 coding problem to be coded there and then the code was run on an IDE to check the sample tests.
Then the interview was followed by a lot of Operating System and Computer System Architecture Questions.
There were 2 Interviewers and both were helpful.
The timing was from 2:30 PM to 4:00 PM
Determine the length of the largest subarray within a given array of 0s and 1s, such that the subarray contains an equal number of 0s and 1s.
Input beg...
Find the length of the largest subarray with equal number of 0s and 1s in a given array.
Iterate through the array and maintain a count of 0s and 1s encountered so far.
Store the count difference in a hashmap with the index as key.
If the same count difference is encountered again, the subarray between the two indices has equal 0s and 1s.
Return the length of the longest subarray found.
Round duration - 45 minutes
Round difficulty - Easy
The round was held on Google Meet with HR from 2:30 PM to 3:15 PM.
The HR was friendly and asked the basic questions.
Tip 1 : Practice daily 4-5 medium level problems on sites like Leetcode, CodeZen, Hackerearth
Tip 2 : Even though Data Structures and Algorithms is the base but study Course Subjects like DBMS,OS,OOPS too.
Tip 3 : Try to Participate in Contests on LeetCode,Codeforces.
Tip 1 : Mention atleast 1 project and past work experience as it sets good impression.
Tip 2 : Keep your resume up to date for the role you are applying.
Tip 3 : Try to keep your resume of 1 Page.
The duration of Adani Digital Labs interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 6 interviews
Interview experience
based on 48 reviews
Rating in categories
Deputy General Manager
19
salaries
| ₹41 L/yr - ₹66 L/yr |
Deputy Manager
16
salaries
| ₹15 L/yr - ₹21 L/yr |
Associate Manager
14
salaries
| ₹16.4 L/yr - ₹30 L/yr |
Assistant Manager
11
salaries
| ₹6.9 L/yr - ₹14.5 L/yr |
Senior Executive
9
salaries
| ₹7 L/yr - ₹13.1 L/yr |
R.R. Donnelley
Epsilon
Denave
Smollan Group