Premium Employer

i

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

Tejas Networks Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Tejas Networks Senior Software Engineer Interview Questions and Answers

Updated 7 Aug 2024

Tejas Networks Senior Software Engineer Interview Experiences

2 interviews found

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

I applied via Job Portal and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Dsa and pointer and logical .

Round 2 - Coding Test 

Tree and LL and graphs.

Round 3 - HR 

(2 Questions)

  • Q1. How will you solved problems
  • Ans. 

    I approach problems methodically by breaking them down, analyzing root causes, brainstorming solutions, and testing them.

    • Break down the problem into smaller, manageable parts

    • Analyze the root causes of the problem

    • Brainstorm potential solutions

    • Test and iterate on the solutions until the problem is resolved

  • Answered by AI
  • Q2. How will you manage workload
  • Ans. 

    I will manage workload by prioritizing tasks, setting realistic deadlines, delegating when necessary, and regularly reviewing progress.

    • Prioritize tasks based on deadlines and importance

    • Set realistic deadlines and milestones

    • Delegate tasks to team members when necessary

    • Regularly review progress and adjust workload as needed

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Regarding Java memory management
Round 2 - One-on-one 

(1 Question)

  • Q1. Regarding RMI process

Senior Software Engineer Interview Questions Asked at Other Companies

Q1. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in DBS Bank
Q2. Tell me about yourself. What technology are you using? What is a ... read more
asked in GlobalLogic
Q3. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
asked in UST
Q4. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q5. Pascal's Triangle Construction You are provided with an integer ' ... read more

Interview questions from similar companies

I applied via Walk-in and was interviewed before Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. A lot questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - I came in HCL without any reference, Randomly I came to give interview. there were total 3 rounds I faced. 1 Round Technical. 2nd Technial. 3 HR . For clearing technical round in HCL you should be technically strong. My 1st round took more than a hour and 2nd round took nearly 45 mins. Your basics should be clear and strong.

I applied via Approached by Company and was interviewed before Jun 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. C#,asp.net mvc,.net core

Interview Preparation Tips

Interview preparation tips for other job seekers - Please go through glassdoor interview questions

I applied via LinkedIn and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Data structures
  • Q2. Advanced android

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview panel is very good just basics should be clear

I applied via Naukri.com and was interviewed in Dec 2019. There were 3 interview rounds.

Interview Questionnaire 

9 Questions

  • Q1. What is difference between controller and rest controller?
  • Ans. 

    A controller is a component that handles incoming requests and returns a response, while a REST controller specifically handles RESTful requests.

    • A controller is responsible for handling various types of requests, such as HTTP, WebSocket, etc.

    • A REST controller is a type of controller that specifically handles RESTful requests, which follow the principles of Representational State Transfer (REST).

    • REST controllers typical...

  • Answered by AI
  • Q2. What is functional interface?
  • Ans. 

    A functional interface is an interface that has only one abstract method.

    • Functional interfaces are used in lambda expressions and method references.

    • They can have default methods and static methods.

    • Examples include Runnable, Comparator, and Function interfaces.

    • Functional interfaces can be annotated with @FunctionalInterface annotation.

  • Answered by AI
  • Q3. What is lamda expression?
  • Ans. 

    Lambda expression is a concise way to represent anonymous functions in programming languages.

    • Lambda expressions are commonly used in functional programming languages.

    • They can be used to create functions on the fly without having to define them explicitly.

    • Lambda expressions are often used in higher-order functions, such as map, filter, and reduce.

    • They can also be used to create closures, which are functions that capture...

  • Answered by AI
  • Q4. What is exception propagation?
  • Ans. 

    Exception propagation is the process of passing an exception up the call stack to be handled by a higher-level method.

    • Exceptions are thrown when an error occurs in a method.

    • If the exception is not caught and handled within the method, it is propagated up the call stack.

    • Each method in the call stack has the option to catch and handle the exception or propagate it further up.

    • If the exception reaches the top of the call s...

  • Answered by AI
  • Q5. Difference between get and load method in hibernate?
  • Ans. 

    get() method returns null if the object is not found in the cache or database, while load() method throws an exception.

    • get() method is eager loading while load() method is lazy loading.

    • get() method returns the object from the database or cache while load() method returns a proxy object.

    • get() method is slower than load() method.

    • get() method is used when we are not sure if the object exists in the database or cache while...

  • Answered by AI
  • Q6. What is method overriding?
  • Ans. 

    Method overriding is when a subclass provides its own implementation of a method that is already defined in its superclass.

    • Method overriding is used to achieve runtime polymorphism.

    • The method signature (name, parameters, return type) must be the same in both the superclass and subclass.

    • The access level of the overriding method cannot be more restrictive than the overridden method.

    • Example: class Dog extends Animal { pub...

  • Answered by AI
  • Q7. What IOC and DI in spring?
  • Ans. 

    IOC and DI are design patterns used in Spring framework for loose coupling and dependency injection.

    • IOC (Inversion of Control) is a design pattern where the control of object creation and lifecycle is handed over to a container or framework.

    • DI (Dependency Injection) is a design pattern where the dependencies of an object are injected into it by an external entity, rather than the object creating them itself.

    • Spring fram...

  • Answered by AI
  • Q8. What is internal working of hashmap?
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to retrieve values quickly.

    • HashMap uses an array of buckets to store key-value pairs

    • Each bucket contains a linked list of entries with the same hash code

    • When a key-value pair is added, its hash code is used to determine the bucket and added to the linked list

    • When a value is retrieved, its hash code is used to find the bucket and search the linked ...

  • Answered by AI
  • Q9. Advantages of spring boot?
  • Ans. 

    Spring Boot provides rapid application development and microservices architecture.

    • Easy configuration and setup

    • Embedded servers for faster development

    • Auto-configuration of dependencies

    • Supports multiple data sources

    • Actuator for monitoring and managing applications

    • Simplifies development of RESTful web services

    • Enables building of microservices architecture

    • Provides a wide range of plugins and extensions

    • Reduces boilerplate c

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Mostly focus on core java concept and then spring, hibernate, spring boot. Be confident with your answers. Always answer in a simple way don't make it complicated to understand it.

Skills evaluated in this interview

I applied via Monster and was interviewed in Oct 2018. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Hands on software and it's applications.
  • Ans. 

    Hands-on experience with software and its practical applications.

    • I have worked on various software projects and have experience in developing, testing, and deploying software applications.

    • I have experience in programming languages such as Java, Python, and C++.

    • I have worked on projects involving web development, mobile app development, and database management.

    • I have experience in using software development tools such a...

  • Answered by AI
  • Q2. Basic HR Questions

Interview Preparation Tips

General Tips: Candidate should improve communication and technical skills to track the interview.
Skills: Communication, Analytical Skills
Duration: <1 week

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Questions about unix, she’ll scripting, sql and plsql

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic unix,sql and shell scripting

I applied via Naukri.com and was interviewed before Dec 2019. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. We were asked to make a hotel booking app in reactjs.
  • Ans. 

    To make a hotel booking app in ReactJS

    • Create a form to input booking details

    • Use a calendar component to select dates

    • Display available rooms and prices

    • Implement payment gateway

    • Include user authentication and booking history

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I got the job by winning third place at a women's hackathon which was held at hcl technologies. Practice building an app on your own and use routing and material ui components.

I applied via Campus Placement and was interviewed before Mar 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 - Coding Test 

Data structures, Puzzles , Projects
Data Structures : Binary search ,reverse linkedist, reverse array, insertion sort, Time complexity of insertion sort, Selection sort.
Projects: Explain anyone project which you have mentioned in resume

Round 3 - HR 

(3 Questions)

  • Q1. What are your strengths and weaknesses?
  • Q2. Tell me about yourself.
  • Q3. Challenges you faced in your projects.

Interview Preparation Tips

Topics to prepare for HCLTech Senior Software Engineer interview:
  • Data Structures
  • Operating Systems
  • Computer Networking
Interview preparation tips for other job seekers - Prepare Data Structures, Fundamentals of CS (like OS, DBMS, Computer network), anyone programming language (CPP, JAVA,PYTHON), some puzzles questions

Tejas Networks Interview FAQs

How many rounds are there in Tejas Networks Senior Software Engineer interview?
Tejas Networks interview process usually has 2-3 rounds. The most common rounds in the Tejas Networks interview process are One-on-one Round, Coding Test and HR.
How to prepare for Tejas Networks Senior Software 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 Tejas Networks. The most common topics and skills that interviewers at Tejas Networks expect are Agile, Coding, Ethernet, Firmware and Networking.
What are the top questions asked in Tejas Networks Senior Software Engineer interview?

Some of the top questions asked at the Tejas Networks Senior Software Engineer interview -

  1. Regarding Java memory managem...read more
  2. Regarding RMI proc...read more

Tell us how to improve this page.

Tejas Networks Senior Software Engineer Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more
Join Tejas Networks Powering Next- Generation Network
Tejas Networks Senior Software Engineer Salary
based on 43 salaries
₹9 L/yr - ₹22 L/yr
8% more than the average Senior Software Engineer Salary in India
View more details

Tejas Networks Senior Software Engineer Reviews and Ratings

based on 6 reviews

3.9/5

Rating in categories

4.3

Skill development

3.9

Work-life balance

3.5

Salary

4.8

Job security

3.8

Company culture

3.5

Promotions

3.1

Work satisfaction

Explore 6 Reviews and Ratings
R&D Engineer
268 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Network Engineer
161 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Engineer
154 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Engineer
121 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
92 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Tejas Networks with

Sterlite Technologies

3.8
Compare

HFCL Limited

4.0
Compare

Vihaan Networks

3.9
Compare

Bharti Airtel

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