Upload Button Icon Add office photos
Engaged Employer

i

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

Optimum Infosystem Verified Tick

Compare button icon Compare button icon Compare
3.4

based on 499 Reviews

Filter interviews by

Optimum Infosystem Senior Developer Lead Interview Questions and Answers for Experienced

Updated 24 Apr 2024

Optimum Infosystem Senior Developer Lead Interview Experiences for Experienced

1 interview found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - Assignment 

Coding assesment and logical coding

Round 2 - One-on-one 

(1 Question)

  • Q1. Asked about the given task or assigment
Round 3 - HR 

(1 Question)

  • Q1. HR round and salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - there is no job security here please dont apply for this company
frequent project RAMP Downs and thrown into bench

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
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 - One-on-one 

(1 Question)

  • Q1. Experience in terraform Azure DevOps CI/CD Kubernetes Monitoring
  • Ans. 

    I have extensive experience in Terraform, Azure DevOps CI/CD, Kubernetes, and monitoring tools.

    • Implemented infrastructure as code using Terraform to automate provisioning of resources

    • Set up CI/CD pipelines in Azure DevOps for automated deployment

    • Managed Kubernetes clusters for container orchestration

    • Utilized monitoring tools like Prometheus and Grafana for performance tracking

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Devops head takes final round. He is from sales background and he talks nicely. Dont get cheated by him. if you are good candidate my advice is not to join Tiger DevOps

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What are the traversal conditions for a Doubly Linked List? And write a program to traverse.This was the first question and I had no answer and ended up the interview immediately by asking any questions fo...
  • Ans. 

    Traversal conditions for a Doubly Linked List involve moving forward and backward through each node.

    • Start at the head node and move to the next node by following the 'next' pointer.

    • To traverse backward, start at the tail node and move to the previous node by following the 'prev' pointer.

    • Continue this process until reaching the end of the list.

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. What is the contract between hashCode and equals method?
  • Ans. 

    The contract between hashCode and equals method is that if two objects are equal according to the equals method, then their hash codes must also be equal.

    • hashCode and equals method must be consistent - if two objects are equal according to equals method, their hash codes must be equal

    • If two objects have the same hash code, they may or may not be equal according to equals method

    • Overriding equals method in a class requir...

  • Answered by AI
  • Q2. Features introduced in Java 8
  • Ans. 

    Java 8 introduced several new features including lambda expressions, functional interfaces, streams, and default methods in interfaces.

    • Lambda expressions allow you to pass functions as arguments.

    • Functional interfaces have a single abstract method and can be used with lambda expressions.

    • Streams provide a way to work with sequences of elements.

    • Default methods allow interfaces to have method implementations.

  • Answered by AI
  • Q3. What are the ways to start a thread
  • Ans. 

    Ways to start a thread in Java

    • Extending the Thread class and overriding the run() method

    • Implementing the Runnable interface and passing it to a Thread object

    • Using a thread pool from the Executors class

  • Answered by AI
  • Q4. What will happen if you start a thread which is already running
  • Ans. 

    The thread will continue running as it is already active

    • The thread will not be started again if it is already running

    • Attempting to start a thread that is already running will not have any effect

    • The thread will continue its execution without any interruption

  • Answered by AI
  • Q5. Explain about the join and sleep method
  • Ans. 

    Join method is used to wait for a thread to finish its execution, while sleep method is used to pause the execution of a thread for a specified amount of time.

    • Join method is used to wait for a thread to finish its execution before moving on to the next task.

    • Sleep method is used to pause the execution of a thread for a specified amount of time, allowing other threads to run.

    • Example: thread1.join() will wait for thread1 ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just listen to a lot of mock interview or original interview videos to get a hang of how an interview will be and even to check your knowledge and recall the things which you have learned.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Hackerrank coding round.

Round 2 - Technical 

(1 Question)

  • Q1. Questions and coding testing your OOPS knowledge
Round 3 - Technical 

(1 Question)

  • Q1. Every tech stack, SQL, OOPS, JAVA

Interview Preparation Tips

Interview preparation tips for other job seekers - Be familiar with designing and writing better code follwing OOPS, YAGNI,DRY principles.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Why functional interface when we have interface
  • Ans. 

    Functional interfaces provide a single abstract method for functional programming in Java.

    • Functional interfaces allow for lambda expressions and method references to be used as instances of the interface.

    • Interfaces with multiple abstract methods cannot be used for lambda expressions.

    • Example: java.util.function.Function is a functional interface with a single abstract method apply().

  • Answered by AI
  • Q2. Java 8 explain all features in short
  • Ans. 

    Java 8 introduced new features like lambda expressions, streams, functional interfaces, and default methods.

    • Lambda expressions: Allows writing concise code by enabling functional programming.

    • Streams: Provides a way to work with sequences of elements efficiently.

    • Functional interfaces: Interfaces with a single abstract method, used for lambda expressions.

    • Default methods: Allows adding new methods to interfaces without br

  • Answered by AI
  • Q3. If one functional interface can extend another interface
  • Ans. 

    Yes, one functional interface can extend another interface in Java.

    • Functional interfaces can extend other functional interfaces in Java.

    • The child interface can have only one abstract method, but can inherit default methods from the parent interface.

    • Example: interface Parent { void method1(); } interface Child extends Parent { void method2(); }

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare core 100%. spring boot, sql, can be in 80s

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Coding Test 

One coding question with 40-45 mcq

Round 2 - Technical 

(2 Questions)

  • Q1. 2 coding questions from array
  • Q2. In given array find the sum a*a+b*b=c*c
  • Ans. 

    Use a nested loop to iterate through the array and check for the sum of squares of two elements equal to the square of a third element.

    • Iterate through the array using a nested loop to compare all possible combinations of elements.

    • Calculate the sum of squares of two elements and check if it equals the square of a third element.

    • Return the elements if a match is found, otherwise continue iterating.

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Core java questions, springboot, one string coding question

Skills evaluated in this interview

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

I applied via Naukri.com

Round 1 - Technical 

(1 Question)

  • Q1. Exception handling
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is java and its features ?
  • Ans. 

    Java is a high-level programming language known for its platform independence and object-oriented features.

    • Java is platform-independent, meaning it can run on any device with a Java Virtual Machine (JVM)

    • It is object-oriented, allowing for the creation of reusable code and modular programs

    • Java is known for its robust standard library, providing a wide range of pre-built functionality

    • It supports multithreading, allowing ...

  • Answered by AI
  • Q2. What is java 8 and features
  • Ans. 

    Java 8 is a major release of the Java programming language with new features like lambda expressions, streams, and default methods.

    • Lambda expressions allow you to treat functionality as a method argument.

    • Streams provide a new abstraction to work with sequences of elements.

    • Default methods allow interfaces to have method implementations.

    • Date and Time API provides a new way to work with dates and times.

    • Optional class help

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Project related questions

Optimum Infosystem Interview FAQs

How many rounds are there in Optimum Infosystem Senior Developer Lead interview for experienced candidates?
Optimum Infosystem interview process for experienced candidates usually has 3 rounds. The most common rounds in the Optimum Infosystem interview process for experienced candidates are Assignment, One-on-one Round and HR.

Tell us how to improve this page.

People are getting interviews through

based on 1 Optimum Infosystem interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.8k Interviews
Mphasis Interview Questions
3.4
 • 780 Interviews
CitiusTech Interview Questions
3.4
 • 259 Interviews
View all
Senior Consultant
361 salaries
unlock blur

₹7.5 L/yr - ₹30.3 L/yr

Consultant
249 salaries
unlock blur

₹5.5 L/yr - ₹19.5 L/yr

Lead Consultant
77 salaries
unlock blur

₹9.3 L/yr - ₹35.3 L/yr

Senior Software Engineer
76 salaries
unlock blur

₹9 L/yr - ₹27.8 L/yr

Associate Consultant
71 salaries
unlock blur

₹2.8 L/yr - ₹9.9 L/yr

Explore more salaries
Compare Optimum Infosystem with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
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