Upload Button Icon Add office photos

Filter interviews by

Tranzita Systems Interview Questions and Answers

Updated 14 Dec 2024

Tranzita Systems Interview Experiences

3 interviews found

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 14 Dec 2024

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Write a query to find the second highest salary from the table.
  • Ans. 

    Query to find the second highest salary from a table

    • Use the ORDER BY clause to sort the salaries in descending order

    • Use the LIMIT clause to retrieve the second row

  • Answered by AI
  • Q2. You have a list and your task is to remove the duplicates item from the list without using any inbuilt function.
  • Ans. 

    Remove duplicates from a list without using inbuilt functions

    • Create an empty list to store unique items

    • Iterate through the original list and add items to the new list if they are not already present

    • Return the new list with duplicates removed

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Why should we hire you?
  • Ans. 

    I have a strong background in data engineering with proven experience in designing and implementing scalable data solutions.

    • I have a solid understanding of data modeling, ETL processes, and data warehousing.

    • I have experience working with various databases such as SQL, NoSQL, and cloud-based solutions like AWS Redshift.

    • I am proficient in programming languages like Python, Java, and Scala for data processing and analysis...

  • Answered by AI
  • Q2. Why you left your previous organization?
  • Ans. 

    Seeking new challenges and growth opportunities.

    • Desire for career advancement

    • Looking for new challenges

    • Seeking better work-life balance

    • Relocation to a different city

    • Company restructuring or downsizing

  • Answered by AI

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a Coin Game You are playing a coin game with your friend Ninjax. There are N coins placed in a straight line. Here are the rules of the game: 1. Each coin has a value associated with it. 2. The game involves two players... read more
View answer (1)

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 30 Nov 2024

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

I applied via Campus Placement and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Assignment 

Development Related task.

Round 2 - Technical 

(2 Questions)

  • Q1. Data Structures questions
  • Q2. Questions based on the projects.

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on DSA as a fresher and work on the communication skills.

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a Coin Game You are playing a coin game with your friend Ninjax. There are N coins placed in a straight line. Here are the rules of the game: 1. Each coin has a value associated with it. 2. The game involves two players... read more
View answer (1)

I applied via Company Website and was interviewed before Nov 2021. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Assignment 

They mostly ask about data science related questions on Pandas

Round 3 - Coding Test 

They ask List Dictionary and String related questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Need to learn Pandas and Python for joining. In TRANZITa System job

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a Coin Game You are playing a coin game with your friend Ninjax. There are N coins placed in a straight line. Here are the rules of the game: 1. Each coin has a value associated with it. 2. The game involves two players... read more
View answer (1)

Jobs at Tranzita Systems

View all

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. What is the architecture of Spark
  • Ans. 

    Spark has a master-slave architecture with a cluster manager and worker nodes.

    • Spark has a driver program that communicates with a cluster manager to allocate resources and schedule tasks.

    • The cluster manager can be standalone, Mesos, or YARN.

    • Worker nodes execute tasks and store data in memory or on disk.

    • Spark can also utilize external data sources like Hadoop Distributed File System (HDFS) or Amazon S3.

    • Spark supports va...

  • Answered by AI

Skills evaluated in this interview

I applied via Walk-in and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Interview mainly asked about spark architecture.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with the basic

I applied via Campus Placement and was interviewed before Jul 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Joined as a fresher, basic C program algo

Interview Preparation Tips

Interview preparation tips for other job seekers - Very easy to crack

I applied via Naukri.com and was interviewed in Mar 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. They will probably measure your technical knowledge for their requirement as per the project.
Round 3 - HR 

(1 Question)

  • Q1. Investigated why I am changing my current job, what was my role serving at that point of time. Finally, discussion about the compensation, bonus etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident on what you know, be moderate on the area where you have awareness. Your confidence shows up it all and that's what needed sometimes. In some cases your technical experience might not be sufficient for the role they are looking for, do not get low in such cases keep trying and your time will arrive. Good Luck!
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Python list comprehension
  • Q2. SQL- product with second highest total price
  • Ans. 

    Use SQL query to find the product with the second highest total price.

    • Use the ORDER BY clause to sort the products by total price in descending order

    • Use the LIMIT clause to select the second row after sorting

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected

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

Round 1 - One-on-one 

(4 Questions)

  • Q1. Lazy evaluation narrow wide tranform data brick utlity functions
  • Q2. Dag,edges vertices
  • Q3. Spark architecture
  • Q4. Memory allocation
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Approached by Company

Round 1 - Technical 

(3 Questions)

  • Q1. Word Count program in Spark Scala
  • Ans. 

    Implement a Word Count program in Spark Scala

    • Use Spark's RDD API to read input text file

    • Split each line into words and map them to key-value pairs

    • ReduceByKey operation to count occurrences of each word

    • Save the result to an output file

  • Answered by AI
  • Q2. Apache spark architecture
  • Q3. Higher Order Functions in Scala
  • Ans. 

    Higher Order Functions in Scala are functions that take other functions as parameters or return functions as results.

    • Higher Order Functions allow for more concise and readable code.

    • Examples include map, filter, reduce, and flatMap in Scala.

    • They promote code reusability and modularity.

    • Higher Order Functions are a key feature of functional programming.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare the Spark and Scala thoroughly and do some programs related to it.

Skills evaluated in this interview

Tranzita Systems Interview FAQs

How many rounds are there in Tranzita Systems interview?
Tranzita Systems interview process usually has 2-3 rounds. The most common rounds in the Tranzita Systems interview process are Assignment, Technical and Resume Shortlist.
How to prepare for Tranzita Systems 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 Tranzita Systems. The most common topics and skills that interviewers at Tranzita Systems expect are SQL, Python, Node.Js, Angular and Power Bi.
What are the top questions asked in Tranzita Systems interview?

Some of the top questions asked at the Tranzita Systems interview -

  1. you have a list and your task is to remove the duplicates item from the list wi...read more
  2. write a query to find the second highest salary from the tab...read more
  3. Data Structures questi...read more

Tell us how to improve this page.

Tranzita Systems Interview Process

based on 3 interviews

Interview experience

3.7
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
View all

Tranzita Systems Reviews and Ratings

based on 10 reviews

2.7/5

Rating in categories

3.3

Skill development

2.7

Work-life balance

2.8

Salary

2.7

Job security

2.5

Company culture

2.6

Promotions

2.8

Work satisfaction

Explore 10 Reviews and Ratings
Software Development Engineer
18 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Data Engineer
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer 1
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer II
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Tranzita Systems 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