Upload Button Icon Add office photos

Filter interviews by

YoekiSoft Director Data Management Interview Questions, Process, and Tips

Updated 8 Nov 2021

YoekiSoft Director Data Management Interview Experiences

1 interview found

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

Interview Questionnaire 

4 Questions

  • Q1. How do you improve the DB Performance?
  • Ans. 

    To improve DB performance, optimize queries, use indexes, increase server resources, and implement caching.

    • Optimize queries by using proper indexing and avoiding unnecessary joins

    • Increase server resources like CPU, memory, and storage to handle larger workloads

    • Implement caching mechanisms to store frequently accessed data in memory for faster retrieval

    • Regularly monitor and tune the database for optimal performance

    • Consi...

  • Answered by AI
  • Q2. What is the ideal frequency of index rebuild?
  • Ans. 

    The ideal frequency of index rebuild depends on the specific database and workload.

    • The frequency should be determined based on the rate of data modification and the performance impact of index rebuilds.

    • Indexes with high fragmentation or high levels of data modification may require more frequent rebuilds.

    • Monitoring and analyzing the database performance can help determine the optimal frequency.

    • Consider using maintenance...

  • Answered by AI
  • Q3. How do you ensure that automated index rebuild job rebuilds the indexes on Sundays only?
  • Ans. 

    To ensure automated index rebuild job runs on Sundays only, we can set a schedule in the job properties.

    • Open the job properties and go to the schedule tab

    • Set the schedule to run on Sundays only

    • Save the changes and test the job to ensure it runs as expected

  • Answered by AI
  • Q4. Use DATEPART(dw, getdate())=1 for taking a decision in IF block.
  • Ans. 

    Using DATEPART function to make decisions in IF block

    • DATEPART function extracts a specific part of a date/time value

    • dw parameter in DATEPART function returns the day of the week as a number

    • IF block can be used to execute a code block based on a condition

    • DATEPART(dw, getdate())=1 checks if the current day is Sunday

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Its a fintech startup with not a great professional work environment. No salary slips, no experience letter delivery, no documents about the work they are doing. So the interviews may go very smoothly but one should not join this organization. Not a good move for seasoned professionals.

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Not Selected

I was interviewed in Dec 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. They asked me regarding project
  • Q2. Sql queries and data bricks related questions
Round 2 - Technical 

(1 Question)

  • Q1. Details explaination on project that I have worked and optimization techniques

Interview Preparation Tips

Interview preparation tips for other job seekers - I have successfully cleared the L1 and L2 rounds, and my background verification has also been completed. I was informed that an offer would be sent the next day. However, the HR then stated that there would be a discussion solely about the CTC, with no technical questions involved. I agreed to this; yet, the interviewer proceeded to ask high-level technical questions that I had not worked on, leading to the final decision of not selecting me. It felt like a fake interview process, accompanied by delayed communication and a lack of response, resulting in a very negative experience with Tech Mahindra.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Dec 2024. There were 5 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Resume screening Self introduction Roles and responsibilities
Round 2 - Assignment 

Given task Statics standard deviations Attrition Average of given table values and Given graph economi graph and poverty graph base on that need to gave answers 30 qustion and 60 min time duration

Round 3 - Technical 

(2 Questions)

  • Q1. Versant test should be need to attend Hirepro will have interview prosess in YouTube will check and prepare mid level hard
  • Q2. We can goo for online prosess how it is
Round 4 - One-on-one 

(1 Question)

  • Q1. Manger Level round they will ask KPI NPS AHT standard deviations Service Level handling Root cause Analysis Weighted average Same product how will calculate Totall Swer % how will get Many of like bpi <20 ...
Round 5 - HR 

(1 Question)

  • Q1. Salary discussion and update structure of our role and responsibilities
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Approached by Company

Round 1 - Technical 

(2 Questions)

  • Q1. Complex project scenarios
  • Q2. Team management
Round 2 - Technical 

(2 Questions)

  • Q1. Program management questions
  • Q2. Delivery related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - They prefer hiring through backdoor channels rather than selecting genuine candidates. Unfortunately, the head of HR is also involved in this unethical practice. They often offer compensation that is lower than the stated Cost to Company (CTC). It is advisable to avoid joining this company. it’s worth waiting for other job than join here. Most unethical people to work. Data analytics is Mini cognizant.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Scenario based questions on Azure data factory and pipelines
  • Q2. Optimisation technic to improve the performance of databricks
  • Q3. What is Autoloader
  • Q4. What is unity catalog
  • Q5. How you do the alerting mechanism in adf for failed pipelines
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Sql constrainsts, star schema, dml dcl commands
  • Q2. About cureent project and responsibilities
Round 2 - Technical 

(2 Questions)

  • Q1. Current projects and resposibilities
  • Q2. Where vs having, reason for job change

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Technical - about you current project and responsibilities, basic SQL question-constraints, starschema, DML DCL command, one sql query write.
2. Technical with senior manager- about project ,where vs having , reason of job change
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. Can you introduce yourself and describe your current project experience?
  • Ans. 

    I am a Senior Data Engineer with experience in building scalable data pipelines and optimizing data processing workflows.

    • Experience in designing and implementing ETL processes using tools like Apache Spark and Airflow

    • Proficient in working with large datasets and optimizing query performance

    • Strong background in data modeling and database design

    • Worked on projects involving real-time data processing and streaming analytic

  • Answered by AI
  • Q2. Decorators in python
  • Ans. 

    Decorators in Python are functions that modify the behavior of other functions or methods.

    • Decorators are defined using the @decorator_name syntax before a function definition.

    • They can be used to add functionality to existing functions without modifying their code.

    • Decorators can be used for logging, timing, authentication, and more.

    • Example: @staticmethod decorator in Python is used to define a static method in a class.

  • Answered by AI
  • Q3. What is the SQL query to group by employee ID in order to combine the first name and last name with a space?
  • Ans. 

    SQL query to group by employee ID and combine first name and last name with a space

    • Use the GROUP BY clause to group by employee ID

    • Use the CONCAT function to combine first name and last name with a space

    • Select employee ID, CONCAT(first_name, ' ', last_name) AS full_name

  • Answered by AI
  • Q4. What are constructors in Python?
  • Ans. 

    Constructors in Python are special methods used for initializing objects. They are called automatically when a new instance of a class is created.

    • Constructors are defined using the __init__() method in a class.

    • They are used to initialize instance variables of a class.

    • Example: class Person: def __init__(self, name, age): self.name = name self.age = age person1 = Person('Alice', 30)

  • Answered by AI
  • Q5. Indexing in sql
  • Ans. 

    Indexing in SQL is a technique used to improve the performance of queries by creating a data structure that allows for faster retrieval of data.

    • Indexes are created on columns in a database table to speed up the retrieval of rows that match a certain condition in a WHERE clause.

    • Indexes can be created using CREATE INDEX statement in SQL.

    • Types of indexes include clustered indexes, non-clustered indexes, unique indexes, an...

  • Answered by AI
  • Q6. Why spark works well with parquet files?
  • Ans. 

    Spark works well with Parquet files due to its columnar storage format, efficient compression, and ability to push down filters.

    • Parquet files are columnar storage format, which aligns well with Spark's processing model of working on columns rather than rows.

    • Parquet files support efficient compression, reducing storage space and improving read performance in Spark.

    • Spark can push down filters to Parquet files, allowing f...

  • Answered by AI

Skills evaluated in this interview

Data Engineer Interview Questions & Answers

Genpact user image Sashikanta Parida

posted on 17 Dec 2024

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

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. What are different type of joins available in Databricks?
  • Ans. 

    Different types of joins available in Databricks include inner join, outer join, left join, right join, and cross join.

    • Inner join: Returns only the rows that have matching values in both tables.

    • Outer join: Returns all rows when there is a match in either table.

    • Left join: Returns all rows from the left table and the matched rows from the right table.

    • Right join: Returns all rows from the right table and the matched rows ...

  • Answered by AI
  • Q2. How do you make your data pipeline fault tolerant?
  • Ans. 

    Implementing fault tolerance in a data pipeline involves redundancy, monitoring, and error handling.

    • Use redundant components to ensure continuous data flow

    • Implement monitoring tools to detect failures and bottlenecks

    • Set up automated alerts for immediate response to issues

    • Design error handling mechanisms to gracefully handle failures

    • Use checkpoints and retries to ensure data integrity

  • Answered by AI
  • Q3. What is AutoLoader?
  • Ans. 

    AutoLoader is a feature in data engineering that automatically loads data from various sources into a data warehouse or database.

    • Automates the process of loading data from different sources

    • Reduces manual effort and human error

    • Can be scheduled to run at specific intervals

    • Examples: Apache Nifi, AWS Glue

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. How do you connect to different services in Azure?
  • Ans. 

    To connect to different services in Azure, you can use Azure SDKs, REST APIs, Azure Portal, Azure CLI, and Azure PowerShell.

    • Use Azure SDKs for programming languages like Python, Java, C#, etc.

    • Utilize REST APIs to interact with Azure services programmatically.

    • Access and manage services through the Azure Portal.

    • Leverage Azure CLI for command-line interface interactions.

    • Automate tasks using Azure PowerShell scripts.

  • Answered by AI
  • Q2. What are linked Services?
  • Ans. 

    Linked Services are connections to external data sources or destinations in Azure Data Factory.

    • Linked Services define the connection information needed to connect to external data sources or destinations.

    • They can be used in Data Factory pipelines to read from or write to external systems.

    • Examples of Linked Services include Azure Blob Storage, Azure SQL Database, and Amazon S3.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. What about your self?
  • Q2. Family background
  • Q3. Power BI test and advanced excel
  • Q4. Microsoft access test
  • Q5. Python test and One to one discussion with super boss
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Can you provide an overview of your background, including your past experiences and daily activities, as well as the tools you use in your routine?
  • Ans. 

    I have a background in data analysis with experience in using tools like Python, SQL, and Tableau.

    • I have a degree in Statistics and have worked as a Data Analyst for 3 years.

    • My daily activities include cleaning and analyzing data, creating visualizations, and presenting insights to stakeholders.

    • I use Python for data manipulation and analysis, SQL for querying databases, and Tableau for creating interactive dashboards.

    • I...

  • Answered by AI
  • Q2. What are the concepts of advanced Excel and Power BI projects, and how are they utilized within a company or for clients?
  • Ans. 

    Advanced Excel and Power BI are tools used for data analysis and visualization in companies and for clients.

    • Advanced Excel allows for complex data manipulation, analysis, and visualization using features like pivot tables, macros, and VBA programming.

    • Power BI is a business analytics tool that provides interactive visualizations and business intelligence capabilities, connecting to various data sources.

    • These tools are u...

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

(2 Questions)

  • Q1. Can you explain your project experience related to Advanced Excel and Power BI?
  • Ans. 

    I have extensive experience in using Advanced Excel and Power BI for data analysis projects.

    • Created complex formulas and macros in Excel to automate data processing tasks

    • Designed interactive dashboards in Power BI to visualize and analyze data trends

    • Integrated data from multiple sources into Power BI for comprehensive analysis

    • Used Power Query and Power Pivot in Excel to manipulate and analyze large datasets

    • Provided dat...

  • Answered by AI
  • Q2. What are the concepts of credit and operations, particularly in relation to Know Your Customer (KYC) procedures and the privacy of client data?
  • Ans. 

    Credit and operations concepts in relation to KYC procedures and client data privacy.

    • Credit refers to the extension of money or resources to a client based on their financial history and ability to repay.

    • Operations involve the day-to-day processes and procedures within a financial institution to ensure smooth functioning.

    • KYC procedures are used to verify the identity of clients to prevent fraud and money laundering.

    • Pri...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If your resume is shortlisted, then there is a higher chance that you will be selected.

YoekiSoft Interview FAQs

What are the top questions asked in YoekiSoft Director Data Management interview?

Some of the top questions asked at the YoekiSoft Director Data Management interview -

  1. How do you ensure that automated index rebuild job rebuilds the indexes on Sund...read more
  2. What is the ideal frequency of index rebui...read more
  3. How do you improve the DB Performan...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all

YoekiSoft Director Data Management Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Software Developer
7 salaries
unlock blur

₹2.2 L/yr - ₹8.1 L/yr

Android Developer
7 salaries
unlock blur

₹1.8 L/yr - ₹4 L/yr

UI Developer
5 salaries
unlock blur

₹3 L/yr - ₹3.8 L/yr

Front end Developer
5 salaries
unlock blur

₹2.2 L/yr - ₹4.6 L/yr

Senior UI Developer
4 salaries
unlock blur

₹4.6 L/yr - ₹9.8 L/yr

Explore more salaries
Compare YoekiSoft with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

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