Upload Button Icon Add office photos
Engaged Employer

i

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

CitiusTech Verified Tick

Compare button icon Compare button icon Compare
3.4

based on 1.6k Reviews

Filter interviews by

CitiusTech Lead Engineer Interview Questions and Answers

Updated 16 Dec 2021

CitiusTech Lead Engineer Interview Experiences

2 interviews found

Lead Engineer Interview Questions & Answers

user image Anonymous

posted on 16 Dec 2021

I applied via Recruitment Consultant and was interviewed in Jun 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Related to java web services

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good experience, asked questions on core java, web services and some coding questions

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

Interview Questionnaire 

2 Questions

  • Q1. Technical questions from basic and advanced C# for first round.
  • Q2. In second round there was a man who wasted 1 hour just talking all unnecessary stuff.

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't waste time on giving interviews to this company. They will just waste time with no offers even after good interviews. Either they won't reply or reject on the basis on notice period or Salary. Bad experience.

Lead Engineer Interview Questions Asked at Other Companies

asked in Tata Power
Q1. What is the resistance value of tripping & closing coil of vc ... read more
asked in Tata Power
Q2. 1.What is the contact resistance of VCB.?
asked in HCLTech
Q3. Which BGP path attributes are used to manipulate the ingress traf ... read more
asked in HCL Group
Q4. Monitoring tools and what metrics we capture during or after test ... read more
Q5. Java 8 features? What is functional interface? Difference between ... read more

Interview questions from similar companies

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

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

Round 1 - Coding Test 

I was tasked with creating a Spring Boot microservice.

Lead Engineer Interview Questions & Answers

Encora user image Om Prakash Bind

posted on 16 Jul 2024

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

(2 Questions)

  • Q1. Pls explain Plugins execution pipeline
  • Ans. 

    Plugins execution pipeline is the sequence of steps followed when a plugin is executed in a software system.

    • Plugins are first loaded into the system.

    • The system then determines the order in which the plugins will be executed.

    • Each plugin is executed according to its defined functionality.

    • Output from one plugin may serve as input to another plugin.

    • Finally, the system processes the results of all plugins and completes the

  • Answered by AI
  • Q2. What is the differnce b/w Business rule and JavaScript? When to use what?
  • Ans. 

    Business rules are guidelines or constraints defined by a business, while JavaScript is a programming language used for web development.

    • Business rules are specific to a business domain and define constraints or guidelines for operations.

    • JavaScript is a programming language used for creating interactive web pages and web applications.

    • Business rules are typically defined by business analysts or stakeholders, while JavaSc...

  • Answered by AI
Round 2 - Behavioral 

(2 Questions)

  • Q1. Where do you see yourself in next 5 years?
  • Q2. Explain any major challenge in your previous projects and how did you handle that?

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Not Selected

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

Round 1 - Technical 

(5 Questions)

  • Q1. Java 8 features? What is functional interface? Difference between Runnable and Callable? Write java8 syntax in notepad? Mainly interviewer was focusing that how much syntax I know, which is not at all good...
  • Ans. 

    Java 8 introduced new features like lambda expressions, functional interfaces, and streams. Functional interfaces have a single abstract method. Runnable is a functional interface for running a task in a separate thread, while Callable is a functional interface that can return a result and throw checked exceptions.

    • Java 8 introduced lambda expressions for writing concise code.

    • Functional interfaces have a single abstract...

  • Answered by AI
  • Q2. Java 8 features
  • Q3. Streams syntax is required
  • Q4. Runnable and Callable
  • Q5. Way of Mutable object creation
  • Ans. 

    Mutable objects in Python can be created using various methods such as assignment, copy, or using built-in functions like dict() or list().

    • Assignment operator can be used to create mutable objects, for example: x = [1, 2, 3]

    • Copying an existing mutable object using the copy() method or slicing can create a new mutable object

    • Using built-in functions like dict() or list() to create mutable objects

  • Answered by AI

Interview Preparation Tips

Topics to prepare for HERE Technologies Lead Engineer interview:
  • Java 8
  • Threads
  • Syntax

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Core java in depth
  • Q2. Javascript in depth
  • Ans. 

    Javascript is a versatile programming language commonly used for web development.

    • Javascript is a high-level, interpreted programming language.

    • It is used for adding interactivity to websites, creating web applications, and building server-side applications.

    • Javascript can manipulate the DOM, handle events, and make asynchronous requests using AJAX.

    • It supports object-oriented, functional, and imperative programming styles...

  • Answered by AI

Skills evaluated in this interview

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

I was interviewed before Nov 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. .Net core and Azure
  • Q2. Scenario based questions

I applied via Recruitment Consultant and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Custom priority queue implementation
  • Ans. 

    Custom priority queue implementation

    • Define a data structure to hold the elements and their priorities

    • Implement methods to add, remove and peek elements based on priority

    • Use a heap or binary tree to maintain the priority order

    • Consider edge cases like empty queue and duplicate elements

  • Answered by AI
  • Q2. Data structures problems
  • Q3. Internal working of map, treemap ansd set
  • Ans. 

    Map, TreeMap and Set are data structures used in Java to store and manipulate collections of objects.

    • Map is an interface that maps unique keys to values.

    • TreeMap is a class that implements the Map interface and stores its elements in a sorted order.

    • Set is an interface that stores unique elements.

    • TreeSet is a class that implements the Set interface and stores its elements in a sorted order.

    • All three data structures are p

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on data structures and algorithms before attending the interview

Skills evaluated in this interview

I applied via Monster and was interviewed in Aug 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is volatile how to use gdb what is singleton
  • Ans. 

    Questions on volatile, gdb usage, and singleton pattern.

    • Volatile is a keyword in C that tells the compiler not to optimize the variable.

    • GDB is a debugger tool used to analyze and debug code during runtime.

    • Singleton is a design pattern that restricts the instantiation of a class to one object.

    • To use GDB, compile the code with the -g flag, run the executable with gdb, set breakpoints, and use commands like 'next' and 'pr...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic preparation of C++ language is must

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Java Exception handling, streams, parallel execution
  • Q2. Kafka internals
Round 2 - Technical 

(2 Questions)

  • Q1. Easy level leetcode question
  • Q2. Kafka internals
Round 3 - Behavioral 

(3 Questions)

  • Q1. Explain your current role and responsibilities
  • Q2. How would you create a map
  • Ans. 

    A map can be created using geographic data and software tools to visualize locations and their relationships.

    • Gather geographic data such as coordinates, boundaries, and landmarks

    • Use mapping software like Google Maps, ArcGIS, or Mapbox to input and visualize the data

    • Customize the map with labels, colors, and markers to enhance readability

    • Consider the audience and purpose of the map to determine the level of detail and i

  • Answered by AI
  • Q3. Cloud migration strategy

Skills evaluated in this interview

CitiusTech Interview FAQs

What are the top questions asked in CitiusTech Lead Engineer interview?

Some of the top questions asked at the CitiusTech Lead Engineer interview -

  1. In second round there was a man who wasted 1 hour just talking all unnecessary ...read more
  2. Technical questions from basic and advanced C# for first roun...read more
  3. Related to java web servi...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 CitiusTech interviews
Job Portal
Recruitment Consultant
50%
50%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
CitiusTech Lead Engineer Salary
based on 6 salaries
₹10 L/yr - ₹36 L/yr
30% more than the average Lead Engineer Salary in India
View more details

CitiusTech Lead Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-Life balance

4.0

Salary & Benefits

3.0

Job Security

4.0

Company culture

3.0

Promotions/Appraisal

4.0

Work Satisfaction

Explore 1 Review and Rating
Senior Software Engineer
2.5k salaries
unlock blur

₹5.8 L/yr - ₹20 L/yr

Technical Lead
2.1k salaries
unlock blur

₹7.4 L/yr - ₹27.2 L/yr

Software Engineer
1.2k salaries
unlock blur

₹3.3 L/yr - ₹11.2 L/yr

Technical Lead 1
360 salaries
unlock blur

₹7 L/yr - ₹25.4 L/yr

Technical Lead 2
288 salaries
unlock blur

₹8.5 L/yr - ₹28 L/yr

Explore more salaries
Compare CitiusTech with

Accenture

3.9
Compare

Capgemini

3.8
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview