Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Amantya Technologies Team. If you also belong to the team, you can get access from here

Amantya Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Amantya Technologies Senior Data Engineer Interview Questions, Process, and Tips

Updated 12 Feb 2024

Amantya Technologies Senior Data Engineer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response
Round 1 - Technical 

(5 Questions)

  • Q1. Ques -> Can you define difference b/w Azure data lake and Delta lake.
  • Ans. 

    Azure Data Lake is a cloud-based storage and analytics service, while Delta Lake is an open-source storage layer that adds reliability to data lakes.

    • Azure Data Lake is a service provided by Microsoft Azure for storing and analyzing large amounts of data.

    • Delta Lake is an open-source storage layer that adds ACID transactions and schema enforcement to data lakes.

    • Azure Data Lake is a cloud-based solution, while Delta Lake ...

  • Answered by AI
  • Q2. How to implemented Primary key and foreign key in delta tables.
  • Ans. 

    Primary keys and foreign keys can be implemented in delta tables using constraints and references.

    • Primary keys can be implemented using the PRIMARY KEY constraint, which ensures that each record in the table has a unique identifier.

    • Foreign keys can be implemented using the FOREIGN KEY constraint, which establishes a link between two tables based on a common column.

    • The referenced table must have a primary key defined, a...

  • Answered by AI
  • Q3. How to handle exception in python?
  • Ans. 

    Exception handling in Python allows for the graceful handling of errors and prevents program crashes.

    • Use try-except blocks to catch and handle exceptions.

    • Multiple except blocks can be used to handle different types of exceptions.

    • The finally block is executed regardless of whether an exception occurred or not.

    • Exceptions can be raised using the 'raise' keyword.

    • Custom exceptions can be defined by creating a new class that

  • Answered by AI
  • Q4. What is star schema and snowflake schema
  • Ans. 

    Star schema is a data modeling technique where a central fact table is connected to multiple dimension tables. Snowflake schema is an extension of star schema with normalized dimension tables.

    • Star schema is a simple and denormalized structure

    • It consists of a central fact table connected to multiple dimension tables

    • Dimension tables contain descriptive attributes

    • Star schema is easy to understand and query, but can lead t...

  • Answered by AI
  • Q5. Which are the most frequently change
  • Ans. 

    The most frequently changing data

    • Customer preferences

    • Market trends

    • Weather data

    • Stock prices

    • Social media trends

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Angular A to Z Hooks,Services,Api Integration,component communication
  • Q2. Html ,CSS basic
Round 2 - Behavioral 

(1 Question)

  • Q1. Server and web api related questions
Round 3 - HR 

(2 Questions)

  • Q1. Can you provide details about yourself and your educational background?
  • Ans. 

    I am a software engineer with a Bachelor's degree in Computer Science and experience in developing web applications.

    • Bachelor's degree in Computer Science

    • Experience in developing web applications

  • Answered by AI
  • Q2. About Winjit technologies

Interview Preparation Tips

Interview preparation tips for other job seekers - Trust the process; ensure a clear understanding of the basics and the logic of object-oriented programming concepts. Wishing you all the best.
Interview experience
3
Average
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 

(4 Questions)

  • Q1. All employees having same salary in the smae department sql and pysprk
  • Q2. How to create pipeline in databricks
  • Ans. 

    To create a pipeline in Databricks, you can use Databricks Jobs or Apache Airflow for orchestration.

    • Use Databricks Jobs to create a pipeline by scheduling notebooks or Spark jobs.

    • Utilize Apache Airflow for more complex pipeline orchestration with dependencies and monitoring.

    • Leverage Databricks Delta for managing data pipelines with ACID transactions and versioning.

  • Answered by AI
  • Q3. Palindrome, 2nd char in every word make is to upper case, sql rank and dense rank releated questions , given 2 tables country and city we need to calculate total population in each continent by joining the...
  • Q4. String manuplation questions inpython

Interview Preparation Tips

Interview preparation tips for other job seekers - PRepare well on pyspark
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral

Round 1 - Coding Test 

Print a specific pattern using any programming language.

Round 2 - One-on-one 

(3 Questions)

  • Q1. What is a class in Object-Oriented Programming (OOP)?
  • Ans. 

    A class in OOP is a blueprint for creating objects, defining their properties and behaviors.

    • Classes are templates for creating objects in OOP

    • They define the properties (attributes) and behaviors (methods) of objects

    • Objects are instances of classes, each with its own unique data

    • Inheritance allows classes to inherit properties and behaviors from other classes

    • Encapsulation ensures that the data is hidden and can only be a...

  • Answered by AI
  • Q2. What is the difference between an abstract class and an interface?
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructors, fields, and methods, while interface cannot have any implementation.

    • A class can only extend one abstract class, but can implement multiple interfaces.

    • Abstract classes are used to define common characteristics of subclasses, while interfaces are used to define contracts for...

  • Answered by AI
  • Q3. What is joining and creating an inner join query?
  • Ans. 

    Joining is combining data from two or more tables based on a related column, while an inner join query retrieves only the matching records.

    • Joining is used to combine data from multiple tables in a database.

    • Inner join query retrieves only the records that have matching values in both tables.

    • Syntax for inner join: SELECT columns FROM table1 INNER JOIN table2 ON table1.column = table2.column;

    • Example: SELECT orders.order_i...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Webkul Software Associate Software Engineer interview:
  • OOPS
  • Baisc Of any of Programing
  • MySQL
  • joins
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Self Introduction
  • Q2. Twilio Framework
Round 2 - Technical 

(2 Questions)

  • Q1. Related to Django Framework
  • Q2. Related to Twilio Framework
Round 3 - Group Discussion 

Job Roles and Responsibility & Salary Discussion

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Springboot notations
  • Q2. How to handle multiple request on springboot
  • Ans. 

    Use thread pooling and asynchronous processing to handle multiple requests efficiently in Spring Boot.

    • Implement thread pooling to manage multiple requests concurrently.

    • Use asynchronous processing to handle requests without blocking the main thread.

    • Consider using reactive programming with Spring WebFlux for better scalability.

    • Optimize database queries and external API calls to reduce response times.

    • Implement caching mec...

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is server and abap server
  • Ans. 

    A server is a computer or software that provides functionality for other programs or devices. ABAP server is a server that runs ABAP programs.

    • A server is a computer or software that provides services or resources to other computers or programs.

    • ABAP server is a server that runs ABAP (Advanced Business Application Programming) programs, commonly used in SAP systems.

    • ABAP server handles requests from clients and executes A...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Basic all type questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Project related and technology se related
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
Not Selected

I was interviewed in Feb 2024.

Round 1 - reading test 

(3 Questions)

  • Q1. Read the text over screen share
  • Ans. 

    The candidate is asked to read and answer a question displayed on screen share.

    • Read the text carefully to understand the question

    • Analyze the information provided in the text

    • Formulate a clear and concise answer based on the text

  • Answered by AI
  • Q2. Read news paper
  • Q3. Write details over screen share
  • Ans. 

    The interviewer is asking the candidate to write details over screen share.

    • Prepare a clear outline before starting to write

    • Use bullet points or numbered lists for better organization

    • Include relevant details and examples to support your points

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - A small company having hectic, pathetic, inhuman and never ending interview process. I was interviewed and they need immediate joiner and after clearing 3 round of technical interview they suppose to release offer letter after HR discussion. All of the sudden they came up with detail that requirement get full and later after 2 month they call again and ask for further interview process and took another 3 technical rounds which I have cleared all. Till the time I cleared 6 round of interviews for same roll and it has been 2.5 months and initially they were looking for immediate joiner. Now you under stand how pathetic their hiring process is. Again they came up with more round and even HR didn't bother to update me that what will be this discussion all about. and surprisingly its a reading test followed by a grammar test , which I think should be taken at start of the all interview process. My laptop screen having some issues and my glasses got broken ... if HR updated me I could get it fixed. but due to all this I was unable to read smaller text on the screen . This interview was done by a Architect level person , how foolish it look like, I even communicated HR about my situation as if he informed about this round I could have get thing fixed and performed in better way as I already cleared 6 technical round and having 10 + years of experience. He said that you are not shortlisted for further rounds. I even request him that please arrange another round as I have some technical issues with system and my glasses also broken, he denied. SO suggesting here is just stay away from this company they will create hope and waste all you efforts and time. I could have get selected in another organization but I spent more time in this organization hiring process. One more this .. all the rating about this organization was forced written by its employees who want to leave organization as if you join you will get trapped . I got to know about it from one of former employee. SO I am thanking to GOD that I am not selected in this organization.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is your name
  • Q2. What is your strength

Interview Preparation Tips

Interview preparation tips for other job seekers - No comments links to this video is small

Amantya Technologies Interview FAQs

How many rounds are there in Amantya Technologies Senior Data Engineer interview?
Amantya Technologies interview process usually has 1 rounds. The most common rounds in the Amantya Technologies interview process are Technical.
What are the top questions asked in Amantya Technologies Senior Data Engineer interview?

Some of the top questions asked at the Amantya Technologies Senior Data Engineer interview -

  1. How to implemented Primary key and foreign key in delta tabl...read more
  2. Ques -> Can you define difference b/w Azure data lake and Delta la...read more
  3. How to handle exception in pyth...read more

Tell us how to improve this page.

Amantya Technologies Senior Data Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Software Engineer
250 salaries
unlock blur

₹3 L/yr - ₹11.8 L/yr

Senior Software Engineer
107 salaries
unlock blur

₹8.2 L/yr - ₹22 L/yr

Technical Lead
72 salaries
unlock blur

₹11.8 L/yr - ₹31 L/yr

Software Developer
35 salaries
unlock blur

₹3.5 L/yr - ₹13.4 L/yr

Senior Test Engineer
21 salaries
unlock blur

₹7.1 L/yr - ₹16.5 L/yr

Explore more salaries
Compare Amantya Technologies with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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