Premium Employer

i

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

Navitasys India Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Navitasys India Assistant Engineering Manager Interview Questions and Answers

Updated 2 Jan 2025

Navitasys India Assistant Engineering Manager Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

Interview questions from similar companies

I applied via Campus Placement and was interviewed before May 2021. There were 3 interview rounds.

Interview Preparation Tips

Topics to prepare for TCS Assistant Engineer interview:
  • Java
  • Python
  • SQL
Interview preparation tips for other job seekers - Prepare general aptitude and any basic programming like java Or python. Basic questions can be asked.

Interview Questionnaire 

12 Questions

  • Q1. What is an ideal diode?. Draw its input output characteristic curve
  • Ans. 

    An ideal diode is a theoretical diode that exhibits zero voltage drop when forward biased and infinite resistance when reverse biased.

    • An ideal diode acts as a perfect conductor when forward biased.

    • It allows current to flow in one direction with zero voltage drop.

    • When reverse biased, it acts as an open circuit with infinite resistance.

    • The input-output characteristic curve of an ideal diode is a vertical line at zero vol...

  • Answered by AI
  • Q2. Write a program for computing the factorial of a number using recursion
  • Ans. 

    Program to compute factorial of a number using recursion

    • Define a function that takes a number as input

    • Check if the number is 0 or 1, return 1 if true

    • Else, call the function recursively with n-1 as input and multiply with n

    • Return the result

    • Example: factorial(5) = 5 * factorial(4) = 5 * 4 * factorial(3) = 5 * 4 * 3 * factorial(2) = 5 * 4 * 3 * 2 * factorial(1) = 5 * 4 * 3 * 2 * 1 = 120

  • Answered by AI
  • Q3. List ten cellular operators in India
  • Ans. 

    There are several cellular operators in India. Here are ten of them.

    • Airtel

    • Vodafone Idea

    • Reliance Jio

    • BSNL

    • MTNL

    • Tata Docomo

    • Aircel

    • Uninor

    • Videocon

    • Loop Mobile

  • Answered by AI
  • Q4. Draw the layers of OSI model
  • Ans. 

    The OSI model has 7 layers that define how data is transmitted over a network.

    • Layer 1: Physical - deals with the physical connection of devices

    • Layer 2: Data Link - responsible for error-free transfer of data between devices

    • Layer 3: Network - handles routing of data between different networks

    • Layer 4: Transport - ensures reliable delivery of data between applications

    • Layer 5: Session - establishes and manages connections ...

  • Answered by AI
  • Q5. What is the function of session layer?
  • Ans. 

    Session layer manages and controls the connections between applications.

    • Establishes, maintains and terminates sessions between applications

    • Synchronizes data exchange between applications

    • Manages session checkpoints and recovery

    • Examples: Telnet, FTP, SMTP

  • Answered by AI
  • Q6. Tell us something about zener diode
  • Ans. 

    A zener diode is a type of diode that allows current to flow in the reverse direction when a certain voltage is reached.

    • Zener diodes are commonly used as voltage regulators.

    • They have a sharp breakdown voltage, which makes them useful for stabilizing voltage in electronic circuits.

    • Zener diodes are often used in power supplies, voltage references, and surge protectors.

    • They are also used in noise reduction circuits and as...

  • Answered by AI
  • Q7. Who is the chairman of ISRO?
  • Ans. 

    The chairman of ISRO is K. Sivan.

    • K. Sivan is an Indian space scientist and the current chairman of ISRO.

    • He has been associated with ISRO for over three decades and has contributed to several missions.

    • Under his leadership, ISRO has achieved several milestones including the successful launch of Chandrayaan-2.

  • Answered by AI
  • Q8. Write a program to print first 10 natural numbers on the screen
  • Ans. 

    Program to print first 10 natural numbers on the screen

    • Declare a variable i and initialize it to 1

    • Use a loop to print i and increment it until i reaches 10

  • Answered by AI
  • Q9. What is an IP address?
  • Ans. 

    An IP address is a unique numerical identifier assigned to every device connected to the internet.

    • IP stands for Internet Protocol

    • It consists of four sets of numbers separated by dots

    • Each set can range from 0 to 255

    • Example: 192.168.1.1 is an IP address

    • IPv4 and IPv6 are the two versions of IP addresses

  • Answered by AI
  • Q10. What is the full form of DRDO and NASA?
  • Ans. 

    DRDO stands for Defense Research and Development Organization and NASA stands for National Aeronautics and Space Administration.

    • DRDO is an agency of the Government of India, responsible for the development of technology for use by the military.

    • NASA is a United States government agency responsible for the civilian space program, as well as aeronautics and aerospace research.

    • DRDO was established in 1958 and has developed...

  • Answered by AI
  • Q11. Why do you want to join TCS?
  • Q12. How will you be able to adjust yourself in the environment of the company?

Interview Preparation Tips

Round: Test
Experience: Aptitude test was of a good level. It testing the basic concepts and was quants based with a few questions on reasoning which were comparatively easy. Good practice is required since the cut off in ky round was over 20 que out of a total of 30 questions.

Letter writing is an easy task. Just make sure that you use all the words given in the question statement.
Tips: Practice as much as you can!
Total Questions: 1 hour

Round: Technical Interview
Experience: This was quite long! Lasted for about 30 minutes! Questions were general and based on diodes, square wave rectifier. They as you about your favorite subject and the programming language you are comfortable with. It was not difficult. If one has a basic knowledge of your field then one can easy crack it.
Tips: Stay calm and confident

Round: HR Interview
Experience: This interview was of very short duration and was quite simple.
Tips: Stay calm and confident.

Skills: Basic Concepts, Confidence
College Name: Guru Nanak Dev University, Amritsar

Skills evaluated in this interview

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

Interview Questionnaire 

2 Questions

  • Q1. Oops concepts
  • Q2. Inheritance, encapsulation

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare normally and confidently

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

Interview Questionnaire 

1 Question

  • Q1. It provides 4 basic feature in cpp

Interview Preparation Tips

Interview preparation tips for other job seekers - Do your homework, practice

I applied via Campus Placement and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. 1. they asked to write a program such as Fibonacci series and write a c program by using switch statement
  • Q2. 2. What is the difference between while and do while with example and local variable and global variable
  • Ans. 

    While and do-while are loops in programming. While checks the condition before executing the loop, do-while checks after.

    • While loop executes only if the condition is true, do-while executes at least once before checking the condition.

    • Local variables are declared inside a function and can only be accessed within that function. Global variables can be accessed from anywhere in the program.

    • Example of while loop: while(i<1...

  • Answered by AI
  • Q3. 3. Basics of c programming related question
  • Q4. 4. About project
  • Q5. 5. Tell me about yourself
  • Q6. 6. where would you see yourself after 5years
  • Q7. 7. Tell me about CTS
  • Ans. 

    CTS stands for Cognizant Technology Solutions, a multinational IT services company.

    • CTS is headquartered in Teaneck, New Jersey, USA.

    • It was founded in 1994.

    • CTS provides services in areas such as digital engineering, consulting, and operations.

    • It has a global presence with offices in over 40 countries.

    • CTS is one of the largest IT services companies in the world, with over 300,000 employees.

    • It is listed on the NASDAQ stoc

  • Answered by AI
  • Q8. 8. Basically your from NON IT why you choose IT field

Interview Preparation Tips

Interview preparation tips for other job seekers - Be punctual at your interview, speak in confidence, don't get nervous while u answering, Atleast u have to know about basics of c programming
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement and was interviewed in Sep 2021. There were 4 interview rounds.

Interview Questionnaire 

11 Questions

  • Q1. If u have a cake in front of u in how many minimum cuts u take to get 8 equal pieces
  • Ans. 

    To get 8 equal pieces from a cake, you need a minimum of 3 cuts.

    • The first cut divides the cake into two equal halves.

    • The second cut divides one of the halves into two equal quarters.

    • The third cut divides one of the quarters into two equal eighths.

  • Answered by AI
  • Q2. Static variables
  • Q3. Some simple C programs
  • Q4. Global and local variables
  • Q5. Why should we use return 0 when int main() is used
  • Ans. 

    return 0 in int main() indicates successful termination of program execution.

    • return 0 is used to indicate that the program has executed successfully.

    • It is not mandatory to use return 0, but it is a good programming practice.

    • If return 0 is not used, the program may return garbage values to the operating system.

    • Other values can also be used instead of 0 to indicate different types of program termination.

    • For example, retu...

  • Answered by AI
  • Q6. Tell me something about yourself
  • Q7. Tell me about your project
  • Ans. 

    I worked on a project to design and implement a new software system for managing inventory in a manufacturing company.

    • Developed a user-friendly interface for employees to input and track inventory data

    • Implemented a database to store and organize inventory information

    • Created automated reports to provide real-time updates on inventory levels

    • Collaborated with cross-functional teams to gather requirements and ensure system

  • Answered by AI
  • Q8. Where will u see yourself after 5 yrs
  • Q9. What are ur Strengths
  • Q10. What we need to use to convert string to numerical
  • Ans. 

    We need to use parsing or casting to convert string to numerical.

    • Use parseInt() or parseFloat() for converting string to integer or float respectively.

    • Use Number() constructor to convert string to number.

    • Use unary plus (+) operator to convert string to number.

    • Ensure that the string contains only numerical characters, else it will result in NaN (Not a Number).

  • Answered by AI
  • Q11. And core branch related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident never get tensed if u don't know the answer directly say them that "I dont have more knowledge on this mam/ sir" be active and stay clam😊

Skills evaluated in this interview

Assistant Engineer Interview Questions & Answers

TCS user image gadicharla bhoomika

posted on 16 Jan 2023

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

I applied via LinkedIn and was interviewed in Jul 2022. There were 5 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared and don't be nervous while attending interviews.Do practice on speaking fluent acsent .

I applied via Campus Placement and was interviewed in Sep 2022. There were 2 interview rounds.

Interview Preparation Tips

Topics to prepare for TCS Assistant Engineer interview:
  • DBMS Basic questions
  • Data Structures
  • C++
  • OOPS
  • Project
  • HTML
  • CSS
Interview preparation tips for other job seekers - I have a good experience and confidence good and communication skills excellent
Contribute & help others!
anonymous
You can choose to be anonymous

Navitasys India Interview FAQs

How many rounds are there in Navitasys India Assistant Engineering Manager interview?
Navitasys India interview process usually has 1 rounds. The most common rounds in the Navitasys India interview process are One-on-one Round.
What are the top questions asked in Navitasys India Assistant Engineering Manager interview?

Some of the top questions asked at the Navitasys India Assistant Engineering Manager interview -

  1. Machine learning account...read more
  2. According to p...read more

Recently Viewed

SALARIES

ISS SDB Security Services

SALARIES

La-Gajjar Machineries

SALARIES

Supreme Industries

INTERVIEWS

ISS SDB Security Services

No Interviews

SALARIES

Supreme Industries

INTERVIEWS

ISS SDB Security Services

No Interviews

INTERVIEWS

Navitasys India

No Interviews

INTERVIEWS

Navitasys India

No Interviews

INTERVIEWS

Navitasys India

No Interviews

SALARIES

Harsha Engineers

Tell us how to improve this page.

Navitasys India Assistant Engineering Manager Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Join Navitasys India Innovate To Power Your Life

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.7
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all

Navitasys India Assistant Engineering Manager 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

4.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Assistant Engineer
243 salaries
unlock blur

₹2 L/yr - ₹5.6 L/yr

Diploma Trainee Engineer
156 salaries
unlock blur

₹1.5 L/yr - ₹2.5 L/yr

Junior Assistant Trainee
154 salaries
unlock blur

₹1.8 L/yr - ₹2.5 L/yr

Assistant Junior Engineer
90 salaries
unlock blur

₹1.9 L/yr - ₹3.5 L/yr

Production Engineer
72 salaries
unlock blur

₹1.1 L/yr - ₹7 L/yr

Explore more salaries
Compare Navitasys India 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