Upload Button Icon Add office photos

Filter interviews by

Tides Capital & Management Data Associate Interview Questions and Answers

Updated 2 Mar 2024

Tides Capital & Management Data Associate Interview Experiences

1 interview found

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

I applied via Recruitment Consulltant and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Technical question about excel and word communication

Interview Preparation Tips

Interview preparation tips for other job seekers - This is good opportunity to work in this logistic Industry

Interview questions from similar companies

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

I applied via Referral

Round 1 - Coding Test 

Pyspark, Hive, Yarn, Python

Round 2 - Technical 

(2 Questions)

  • Q1. Questions on windowing function
  • Q2. Questions on spark arch and python

Interview Preparation Tips

Topics to prepare for Axis Bank Data Engineer interview:
  • pyspark
  • hive
  • python
  • yarn
  • sql
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

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

(1 Question)

  • Q1. Case studies, puzzle , Sql, guesstimate, projects
Round 2 - Technical 

(1 Question)

  • Q1. Puzzles, probability, work experience
Round 3 - Technical 

(1 Question)

  • Q1. Python, pyspark
Round 4 - HR 

(1 Question)

  • Q1. Behavioral round

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
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. The data entry operator in all countries what is the data entry operator ok Nice
  • Q2. Thanks for the data entry operator in Bangladesh and the data entry operator in Bangladesh and the data entry operator
  • Q3. Thanks for thedataentryoperatorinBangladeshthe

Interview Preparation Tips

Interview preparation tips for other job seekers - Thanks mahindra bank ok salary
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
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Easy ques to answer basic

Round 2 - Coding Test 

Easy ques to write. not tough ques

Round 3 - Technical 

(2 Questions)

  • Q1. Easy ques to write.Not tough
  • Q2. Easy Ques to write not tough
Round 4 - HR 

(2 Questions)

  • Q1. Great to work here in Bajaj
  • Q2. 15min interview and basic of SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy interview in 15min
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

*****, arjumpudi satyanarayana

Round 2 - Technical 

(5 Questions)

  • Q1. What is the python language
  • Ans. 

    Python is a high-level programming language known for its simplicity and readability.

    • Python is widely used for web development, data analysis, artificial intelligence, and scientific computing.

    • It emphasizes code readability and uses indentation for block delimiters.

    • Python has a large standard library and a vibrant community of developers.

    • Example: print('Hello, World!')

    • Example: import pandas as pd

  • Answered by AI
  • Q2. What is the code problems
  • Ans. 

    Code problems refer to issues or errors in the code that need to be identified and fixed.

    • Code problems can include syntax errors, logical errors, or performance issues.

    • Examples of code problems include missing semicolons, incorrect variable assignments, or inefficient algorithms.

    • Identifying and resolving code problems is a key skill for data scientists to ensure accurate and efficient data analysis.

  • Answered by AI
  • Q3. What is the python code
  • Ans. 

    Python code is a programming language used for data analysis, machine learning, and scientific computing.

    • Python code is written in a text editor or an integrated development environment (IDE)

    • Python code is executed using a Python interpreter

    • Python code can be used for data manipulation, visualization, and modeling

  • Answered by AI
  • Q4. What is the project
  • Ans. 

    The project is a machine learning model to predict customer churn for a telecommunications company.

    • Developing predictive models using machine learning algorithms

    • Analyzing customer data to identify patterns and trends

    • Evaluating model performance and making recommendations for reducing customer churn

  • Answered by AI
  • Q5. What is the lnderssip
  • Ans. 

    The question seems to be incomplete or misspelled.

    • It is possible that the interviewer made a mistake while asking the question.

    • Ask for clarification or context to provide a relevant answer.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for IBM Data Scientist interview:
  • Python
  • Machine Learning
Interview preparation tips for other job seekers - No

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Assignment 

Easy on cyber security

Round 2 - One-on-one 

(2 Questions)

  • Q1. Introduce yourself this is
  • Q2. What is your work experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

Tides Capital & Management Interview FAQs

How many rounds are there in Tides Capital & Management Data Associate interview?
Tides Capital & Management interview process usually has 1 rounds. The most common rounds in the Tides Capital & Management interview process are One-on-one Round.

Tell us how to improve this page.

Tides Capital & Management Data Associate Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
ICICI Bank Interview Questions
4.0
 • 2.4k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
HDFC Bank Interview Questions
3.9
 • 2.1k Interviews
Axis Bank Interview Questions
3.8
 • 1.4k Interviews
Infosys BPM Interview Questions
3.7
 • 926 Interviews
Asian Paints Interview Questions
4.0
 • 627 Interviews
View all
Software Engineer
3 salaries
unlock blur

₹2.3 L/yr - ₹3.1 L/yr

Electrical Engineer
3 salaries
unlock blur

₹2.4 L/yr - ₹3.8 L/yr

Logistics Executive
3 salaries
unlock blur

₹5 L/yr - ₹5 L/yr

Account Assistant
3 salaries
unlock blur

₹1 L/yr - ₹2.9 L/yr

Broadcast Assistant
3 salaries
unlock blur

₹2 L/yr - ₹2.5 L/yr

Explore more salaries
Compare Tides Capital & Management with

TCS

3.7
Compare

Genpact

3.8
Compare

IBM

4.0
Compare

ICICI Bank

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