Upload Button Icon Add office photos
Engaged Employer

i

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

Coditas Technologies Verified Tick

Compare button icon Compare button icon Compare
3.1

based on 216 Reviews

Filter interviews by

Coditas Technologies Data Engineer Interview Questions, Process, and Tips

Updated 25 Nov 2024

Top Coditas Technologies Data Engineer Interview Questions and Answers

Coditas Technologies Data Engineer Interview Experiences

2 interviews found

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 25 Nov 2024

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 May 2024. There were 2 interview rounds.

Round 1 - On Call 

(3 Questions)

  • Q1. Project Worked on and brief overview
  • Q2. Technologies worked on
  • Ans. 

    I have worked on a variety of technologies including Python, SQL, Hadoop, Spark, and AWS.

    • Python

    • SQL

    • Hadoop

    • Spark

    • AWS

  • Answered by AI
  • Q3. Rate in skills out of 5
  • Ans. 

    Rate in skills out of 5

    • Programming: 5

    • Data Analysis: 4

    • Database Management: 4

    • Machine Learning: 3

  • Answered by AI
Round 2 - Technical 

(5 Questions)

  • Q1. What transformation done in project
  • Q2. Explain explode function
  • Ans. 

    Explode function is used to split a string into an array of strings based on a delimiter.

    • The explode function takes in a delimiter and a string as input

    • It splits the string into an array of strings based on the delimiter

    • For example, explode(',', 'apple,banana,orange') would return ['apple', 'banana', 'orange']

  • Answered by AI
  • Q3. Python question to convert string to dictionary
  • Q4. Spark coding question to flatten a Json
  • Q5. Persist, cache and unpersist in pyspark

Interview Preparation Tips

Interview preparation tips for other job seekers - Friendly interviewer, smooth process.

Skills evaluated in this interview

Data Engineer Interview Questions & Answers

user image Mayur Gunjal

posted on 28 Oct 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Duplicate in list
  • Ans. 

    Find duplicates in a list of elements.

    • Iterate through the list and keep track of elements seen so far

    • If an element is already in the seen elements, it is a duplicate

    • Use a hash set to efficiently check for duplicates

  • Answered by AI
  • Q2. Anagram in list
  • Ans. 

    Check if any two strings in the list are anagrams of each other

    • Iterate through the list and for each string, sort the characters and check if it already exists in a hashmap

    • If it exists, then the current string is an anagram of the existing string

    • Return true if anagrams are found, false otherwise

  • Answered by AI

Skills evaluated in this interview

Data Engineer Interview Questions Asked at Other Companies

asked in Cisco
Q1. Optimal Strategy for a GameYou and your friend Ninjax are playing ... read more
asked in Sigmoid
Q2. Next Greater ElementYou are given an array arr of length N. You h ... read more
asked in Sigmoid
Q3. Search In Rotated Sorted ArrayAahad and Harshit always have fun b ... read more
asked in Cisco
Q4. Covid VaccinationWe are suffering from the Second wave of Covid-1 ... read more
asked in Sigmoid
Q5. K-th element of 2 sorted arrayYou are given two sorted arrays/lis ... read more

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. It depends on the client, I got very simple SQL questions and ADF questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Coding Test 

A combination of aptitude and coding

Round 2 - Technical 

(2 Questions)

  • Q1. Some python related question
  • Q2. Some SQL related question
Round 3 - Technical 

(2 Questions)

  • Q1. Some python problem to solve
  • Q2. Some puzzle to answer
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Naukri.com and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Coding Test 

1 python question and 1 sql question for coding and rest were the mcqs based on sql and python.

Round 2 - Technical 

(2 Questions)

  • Q1. Python code was asked for checking the anagrams
  • Q2. Sql code asked to solve on screen share using various use cases like group by, having, count
Round 3 - Technical 

(2 Questions)

  • Q1. Python code was asked for swaping any number but without using python libraries
  • Q2. Sql code was asked using concepts of rank dense,rank, partition by
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Four Pillars of OOPS in Java?
  • Ans. 

    Encapsulation, Inheritance, Polymorphism, Abstraction are the four pillars of OOPS in Java.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the implementation details and showing only the necessary features.

  • Answered by AI
  • Q2. What is a constructor in Java?
  • Ans. 

    A constructor in Java is a special type of method that is used to initialize objects.

    • Constructors have the same name as the class they are in.

    • They do not have a return type, not even void.

    • Constructors are called when an object of a class is created.

    • Example: public class Car { public Car() { // constructor code } }

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain kuberentes architecture
  • Ans. 

    Kubernetes architecture is a container orchestration platform that manages containerized applications across a cluster of nodes.

    • Kubernetes follows a master-slave architecture with a master node and multiple worker nodes.

    • Master node components include API server, scheduler, controller manager, and etcd.

    • Worker node components include kubelet, kube-proxy, and container runtime (e.g. Docker).

    • Nodes communicate with each oth...

  • Answered by AI
  • Q2. What is docker file
  • Ans. 

    A Dockerfile is a text document that contains all the commands a user could call on the command line to assemble an image.

    • Dockerfile is used to build Docker images by specifying the base image, adding dependencies, and defining commands to run.

    • Each instruction in a Dockerfile creates a layer in the image, allowing for efficient reuse of layers.

    • Examples of Dockerfile instructions include FROM, RUN, COPY, and CMD.

    • Dockerf...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. General questions
  • Q2. Excel Questions
Round 2 - Assignment 

Excel Assignment on building a dashboard

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

I applied via Referral and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. . Net technical
Round 2 - Technical 

(1 Question)

  • Q1. Angular technical

Interview Preparation Tips

Interview preparation tips for other job seekers - They told in 2 rounds you are selected, we are sending your profile to manager, then will connect, after 10 days also not given response,
If you people are not interested to select developer, then you why wasting time on scheduling interviews..

Request to all developer,those looking for new position and attending interviews.Don't waste time attending for interview in this company
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Find missing char
  • Ans. 

    The question asks to find a missing character in an array of strings.

    • Iterate through each string in the array

    • Check the length of each string to find the missing character

    • Compare the characters in each string to identify the missing one

  • Answered by AI

Coditas Technologies Interview FAQs

How many rounds are there in Coditas Technologies Data Engineer interview?
Coditas Technologies interview process usually has 1-2 rounds. The most common rounds in the Coditas Technologies interview process are Technical.
How to prepare for Coditas Technologies Data Engineer 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 Coditas Technologies. The most common topics and skills that interviewers at Coditas Technologies expect are Python, SQL, AWS, Data Warehousing and Spark.
What are the top questions asked in Coditas Technologies Data Engineer interview?

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

  1. Rate in skills out o...read more
  2. explain explode funct...read more
  3. Technologies worked...read more

Tell us how to improve this page.

Coditas Technologies Data Engineer Salary
based on 54 salaries
₹4.8 L/yr - ₹14 L/yr
15% less than the average Data Engineer Salary in India
View more details

Coditas Technologies Data Engineer Reviews and Ratings

based on 8 reviews

3.5/5

Rating in categories

4.1

Skill development

4.1

Work-life balance

3.2

Salary

4.1

Job security

3.7

Company culture

3.6

Promotions

3.9

Work satisfaction

Explore 8 Reviews and Ratings
Software Engineer
355 salaries
unlock blur

₹3.6 L/yr - ₹12 L/yr

Associate Software Engineer
151 salaries
unlock blur

₹3.5 L/yr - ₹7.2 L/yr

Software Developer
126 salaries
unlock blur

₹6 L/yr - ₹23 L/yr

Senior Software Engineer
109 salaries
unlock blur

₹10.8 L/yr - ₹30 L/yr

QA Engineer
64 salaries
unlock blur

₹2.5 L/yr - ₹11.1 L/yr

Explore more salaries
Compare Coditas Technologies 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