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 507 Reviews

Filter interviews by

Optimum Infosystem Technical Consultant Interview Questions and Answers

Updated 4 Dec 2021

Optimum Infosystem Technical Consultant Interview Experiences

Interview questions from similar companies

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

Basic aptitude which is based on computer science skills

Round 2 - Technical 

(1 Question)

  • Q1. Basic coding questions

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

Interview Questionnaire 

1 Question

  • Q1. Question were basically on the project related like project architecture and some sql based questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic knowledge of your skills
  • Q2. Scenario based questions.
Round 2 - Technical 

(2 Questions)

  • Q1. Scenario based questions
  • Q2. SQL technical question.
Round 3 - HR 

(1 Question)

  • Q1. Salary Discussion, joining date negotiation and Joining Bonus.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be perfect and ready with your skills whatever you have.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell us about yourself
  • Q2. Lot of questions on SQL and Linux commands
Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell us about yourself
  • Q2. It was a manager round combined with some technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing much, stick to your basics and prepare all the concepts
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Introduce yourself, including what' s your roles and responsibility and what's your day to day task
  • Q2. Given a scenario, suppose there is slowness in system, and there is no APM tool then how will you identify the issue and solve it.
  • Ans. 

    Identify potential causes through system analysis, logs, and monitoring tools. Implement troubleshooting steps to resolve the issue.

    • Analyze system performance metrics such as CPU usage, memory usage, disk I/O, and network traffic to identify bottlenecks.

    • Check system logs for any error messages or warnings that could indicate the source of the slowness.

    • Review application logs to see if there are any specific requests or...

  • Answered by AI
  • Q3. Question on thread dump, in what case it should be taken, how many thread dumps are required and at what interval.
  • Q4. If there is slowness in system and you have thread dump, what analysis you will do from it
  • Ans. 

    I would analyze the thread dump to identify any bottlenecks or issues causing the system slowness.

    • Identify any threads that are in a blocked or waiting state

    • Look for any threads consuming excessive CPU or memory

    • Check for any deadlocks or resource contention issues

    • Analyze the stack traces to pinpoint the root cause of the slowness

  • Answered by AI
  • Q5. Do study about all web and app server and also respective logs
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(5 Questions)

  • Q1. Difference between first() or FirstOrDefault()
  • Ans. 

    first() returns the first element of a sequence, while FirstOrDefault() returns the first element or a default value if the sequence is empty.

    • first() throws an exception if the sequence is empty, while FirstOrDefault() returns a default value (e.g. null) in that case.

    • Use first() when you expect the sequence to always have at least one element, and FirstOrDefault() when the sequence might be empty.

    • Example: var numbers =...

  • Answered by AI
  • Q2. Left join vs right join
  • Ans. 

    Left join includes all records from the left table and matching records from the right table, while right join includes all records from the right table and matching records from the left table.

    • Left join: includes all records from the left table and matching records from the right table

    • Right join: includes all records from the right table and matching records from the left table

    • Example: Left join - SELECT * FROM table1...

  • Answered by AI
  • Q3. Optimization of SQL query
  • Ans. 

    Optimizing SQL queries involves using indexes, minimizing joins, and avoiding unnecessary columns.

    • Use indexes on columns frequently used in WHERE clauses

    • Minimize the use of JOIN operations

    • Avoid selecting unnecessary columns in the query

    • Consider using stored procedures for frequently executed queries

  • Answered by AI
  • Q4. Tool used to check query slowness
  • Ans. 

    One tool used to check query slowness is SQL Server Profiler.

    • SQL Server Profiler can be used to trace and analyze query performance.

    • It provides detailed information on query execution, including duration, reads, writes, and more.

    • Users can identify slow queries and optimize them for better performance.

    • Other tools like Query Store in SQL Server Management Studio can also be used for monitoring query performance.

  • Answered by AI
  • Q5. Design repository pattern using EF core
  • Ans. 

    Repository pattern using EF core for data access layer

    • Create an interface for the repository with generic CRUD methods

    • Implement the repository interface with EF core for data access

    • Use dependency injection to inject the repository into services

    • Separate concerns by having repositories handle data access logic

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Mix of coding, theory and design questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Oct 2023.

Round 1 - Coding Test 

Write a program on priority queue

Round 2 - One-on-one 

(3 Questions)

  • Q1. Questions on network protocol
  • Q2. Question on non-blocking socket
  • Q3. Question on linked list
Round 3 - One-on-one 

(1 Question)

  • Q1. Interview with cliient directly similar questions like round 2

Interview Preparation Tips

Interview preparation tips for other job seekers - All rounds are technical and for my experiences. They want a genuine guy who can really contribute
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Sep 2023. 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 

(3 Questions)

  • Q1. Builder design pattern in java
  • Ans. 

    Builder design pattern is a creational design pattern used to construct complex objects step by step.

    • Builder pattern separates the construction of a complex object from its representation.

    • It allows the same construction process to create different representations of the object.

    • Useful when there are multiple ways to construct an object or when the object creation process is complex.

    • Example: StringBuilder in Java allows ...

  • Answered by AI
  • Q2. Docker, MQ series involved
  • Q3. JOIN Query with country , emp name
  • Ans. 

    JOIN query to retrieve country and employee name

    • Use JOIN keyword to combine data from multiple tables

    • Specify the columns to select from each table

    • Use ON keyword to specify the relationship between the tables

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - we need to work in depth in Design patterns , Micro services concepts

Skills evaluated in this interview

Tell us how to improve this page.

Optimum Infosystem Technical Consultant Salary
based on 7 salaries
₹11 L/yr - ₹20.6 L/yr
36% more than the average Technical Consultant Salary in India
View more details

Optimum Infosystem Technical Consultant Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

4.0

Salary

4.0

Job security

3.0

Company culture

4.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Senior Consultant
364 salaries
unlock blur

₹8 L/yr - ₹30.2 L/yr

Consultant
233 salaries
unlock blur

₹5 L/yr - ₹18.9 L/yr

Lead Consultant
91 salaries
unlock blur

₹9.5 L/yr - ₹35.3 L/yr

Senior Software Engineer
77 salaries
unlock blur

₹9 L/yr - ₹34 L/yr

Associate Consultant
74 salaries
unlock blur

₹2.8 L/yr - ₹9.5 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
Did you find this page helpful?
Yes No
write
Share an Interview