Upload Button Icon Add office photos

Filter interviews by

Zenith Technologies Interview Questions, Process, and Tips

Updated 20 May 2022

Zenith Technologies Interview Experiences

1 interview found

I applied via Walk-in and was interviewed in Apr 2022. There were 2 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 

(5 Questions)

  • Q1. Joins,what is index,
  • Ans. 

    Joins are used to combine data from two or more tables based on a related column. An index is a data structure that improves the speed of data retrieval.

    • Joins are used in SQL to combine data from multiple tables.

    • Indexes are used to improve the speed of data retrieval by creating a data structure that allows for faster searching.

    • Indexes can be created on one or more columns in a table.

    • There are different types of joins,...

  • Answered by AI
  • Q2. And ,or operators beetween operators
  • Q3. What is like operator
  • Ans. 

    The like operator is used to compare a string to a pattern using wildcards.

    • The pattern can include % to match any number of characters and _ to match a single character.

    • Example: SELECT * FROM customers WHERE name LIKE 'J%' will return all customers with names starting with J.

    • Example: SELECT * FROM customers WHERE name LIKE '%son' will return all customers with names ending in son.

  • Answered by AI
  • Q4. What is , insert delete
  • Ans. 

    Insert delete is a common operation performed on data structures like arrays and linked lists.

    • Insertion involves adding a new element to the data structure at a specific position.

    • Deletion involves removing an element from the data structure at a specific position.

    • Examples include inserting a new value into an array at index 3 or deleting a node from a linked list.

    • These operations can affect the size and order of the da

  • Answered by AI
  • Q5. What is Update, trunkate,
  • Ans. 

    Update and truncate are SQL commands used to modify data in a database.

    • Update is used to modify existing data in a table.

    • Truncate is used to delete all data from a table.

    • Update can be used with a WHERE clause to modify specific rows.

    • Truncate cannot be used with a WHERE clause and will delete all rows.

    • Update is a DML (Data Manipulation Language) command.

    • Truncate is a DDL (Data Definition Language) command.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Looking job for perfect and practicality, regularly

Skills evaluated in this interview

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Prepare python data structures and python basics

Interview Questionnaire 

1 Question

  • Q1. C++ Basic , malloc, calloc

I applied via Recruitment Consultant and was interviewed before Feb 2020. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Please Tell me about yourself
  • Q2. Please describe brake system architecture for Locomotives
  • Ans. 

    The brake system architecture for locomotives includes air brakes, mechanical brakes, and electronic brakes.

    • Air brakes use compressed air to apply and release brakes

    • Mechanical brakes use friction to slow down or stop the train

    • Electronic brakes use sensors and computer systems to control the braking process

    • The brake system also includes brake shoes, brake discs, brake pads, and brake calipers

    • The brake system is designed

  • Answered by AI
  • Q3. Please perform Emergency Brake Distance calculation for a Locomotive
  • Ans. 

    Emergency brake distance calculation for a locomotive.

    • Determine the speed of the locomotive

    • Find the deceleration rate of the locomotive

    • Calculate the stopping distance using the formula: (speed^2) / (2 x deceleration rate)

    • Consider factors such as track conditions and weather

    • Perform regular maintenance to ensure brakes are functioning properly

  • Answered by AI
  • Q4. What are the projects you have worked in the past?
  • Ans. 

    I have worked on various projects including network infrastructure, cloud migration, and software development.

    • Designed and implemented a new network infrastructure for a small business

    • Migrated on-premise servers to AWS cloud for a healthcare company

    • Developed a web application for a non-profit organization to manage volunteers

    • Implemented security measures for a financial institution's IT systems

    • Upgraded and maintained s...

  • Answered by AI
  • Q5. What was your specific role in those projects?

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good interview as the interviews were eager to listen and very attentive. I prepared myself for the test and was able to explain to them in a whiteboard.
Round 1 - Personal Interview 

(1 Question)

  • Q1. Questions bases on your resume and projects

I applied via Recruitment Consultant and was interviewed in Nov 2019. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Basic C++, and Data structure focus on pointers and virtual function, vptr, vtable
  • Q2. Prepare about ur current project and process followed for entire development process thoroughly
  • Q3. Prepare common tools like. Linux, git, gdb
  • Q4. Prepare basics of data structures, OOPS, design patterns used

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep a steady approach, focus more and more on basics and working principle of concepts

I applied via Recruitment Consultant and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Write a logic given to you in any plc software that you have
  • Ans. 

    Logic for PLC software

    • Define inputs and outputs

    • Create ladder logic diagram

    • Test and debug program

  • Answered by AI
  • Q2. Tell me something about the projects you have handled

Interview Preparation Tips

Interview preparation tips for other job seekers - Brief your projects as short as possible... Otherwise your interviewer may get bored...

I applied via Referral and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Do you know anything about cloud computing?
  • Ans. 

    Yes, cloud computing refers to the delivery of computing services over the internet.

    • Cloud computing allows users to access data and applications from anywhere with an internet connection.

    • It offers scalability, flexibility, and cost-effectiveness compared to traditional on-premises computing.

    • Examples of cloud computing services include Amazon Web Services, Microsoft Azure, and Google Cloud Platform.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Very chill interview on the basis of profile.
Learn about new technology like cloud etc.

Skills evaluated in this interview

I appeared for an interview in Aug 2017.

Interview Questionnaire 

4 Questions

  • Q1. Difference between c and java?
  • Ans. 

    C is a procedural programming language while Java is an object-oriented programming language.

    • C is a low-level language while Java is a high-level language.

    • C requires manual memory management while Java has automatic memory management.

    • C is platform-dependent while Java is platform-independent.

    • C supports pointers while Java does not.

    • C has a simpler syntax compared to Java.

  • Answered by AI
  • Q2. Difference between final, finally and finalize
  • Ans. 

    final, finally, and finalize are keywords in Java with different meanings.

    • final is a keyword used to declare a constant value, a variable that cannot be modified.

    • finally is a block used in exception handling to ensure a piece of code is always executed, whether an exception is thrown or not.

    • finalize is a method in the Object class that is called by the garbage collector before an object is destroyed.

    • final and finally a...

  • Answered by AI
  • Q3. About yourself
  • Q4. Why Johnson
  • Ans. 

    Johnson is a reputable company known for its innovative software solutions and collaborative work environment.

    • Johnson has a strong reputation in the industry for delivering high-quality software solutions.

    • The company values collaboration and teamwork, which aligns with my own work style.

    • I admire Johnson's commitment to innovation and staying ahead of technological advancements.

  • Answered by AI

Interview Preparation Tips

Round: Apptitude Test
Experience: Questions was unpredictable as it was from reasoning,verbal , and from general knowledge also.Technical questions was also there.
Tips: Technical question was not that hard. Just have good basic knowledge of programming and DBMS

Round: Technical Interview
Experience: It was from basic concepts only.

Round: HR Interview
Experience: There were 12 HRs to take my interview but asked mainly from CV only.

Tips: Be calm and confident and learn the basic of subjects

College Name: BPPIMT

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Nov 2017. There were 8 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Technical Interview on Power Systems/Switchgear & Control System. Detailed discussion on Switchgear and Protection. Discussion on IEC and IS standards.
  • Q2. HR interview on experience and Pay scale
  • Q3. Detailed discussion on experience and expectations.
  • Q4. Baground & Certificate verification

Interview Preparation Tips

Round: Resume Shortlist
Experience: Engineering Degree & Suitable profile

Round: Group Discussion
Experience: Topic : Switchgear & Control System.

I have actively participated in technical discussion.

Round: Second level of technical round with higher authority
Experience: Details analysis on market segment

Round: Case Study Interview
Experience: Case study on my interest and profile interested in.

General Tips: Prepare and answer correctly to the questions you asked, do not lead interviewer in wrong way. Interviewers will easily guess what we are delivering.

Be 100% interested on your profile & role, Don't attend interview for the shake of job.

Skills: Technical Knowledge(ML, Communication, Body Language, Analytical Skills, Leadership, Presentation Skills, Time Management, Decision Making Skills
Duration: 1-3 Months

Zenith Technologies Interview FAQs

How many rounds are there in Zenith Technologies interview?
Zenith Technologies interview process usually has 2 rounds. The most common rounds in the Zenith Technologies interview process are Resume Shortlist and Technical.
How to prepare for Zenith Technologies 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 Zenith Technologies. The most common topics and skills that interviewers at Zenith Technologies expect are C, C++, Design, HTML and Javascript.
What are the top questions asked in Zenith Technologies interview?

Some of the top questions asked at the Zenith Technologies interview -

  1. What is like opera...read more
  2. What is , insert del...read more
  3. what is Update, trunka...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Siemens Interview Questions
4.1
 • 427 Interviews
Johnson Controls Interview Questions
3.5
 • 263 Interviews
Falcon Autotech Interview Questions
3.9
 • 46 Interviews
Wipro PARI Interview Questions
3.3
 • 44 Interviews
View all

Zenith Technologies Reviews and Ratings

based on 14 reviews

4.0/5

Rating in categories

4.4

Skill development

3.6

Work-life balance

3.0

Salary

3.4

Job security

3.1

Company culture

3.6

Promotions

3.8

Work satisfaction

Explore 14 Reviews and Ratings
Automation Engineer
19 salaries
unlock blur

₹4 L/yr - ₹8.4 L/yr

Senior Automation Engineer
19 salaries
unlock blur

₹8.5 L/yr - ₹18 L/yr

MES Engineer
6 salaries
unlock blur

₹3.5 L/yr - ₹11.8 L/yr

Software Developer
4 salaries
unlock blur

₹10 L/yr - ₹13.2 L/yr

Quality Analyst
4 salaries
unlock blur

₹6 L/yr - ₹7 L/yr

Explore more salaries
Compare Zenith Technologies with

Siemens

4.1
Compare

Schneider Electric

4.1
Compare

Johnson Controls

3.5
Compare

Honeywell Automation

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