Upload Button Icon Add office photos

Filter interviews by

Optym Software Developer Interview Questions and Answers

Updated 23 Dec 2024

Optym Software Developer Interview Experiences

1 interview found

Software Developer Interview Questions & Answers

user image BT21CSE022 Kanishka Saini

posted on 23 Dec 2024

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

I applied via Campus Placement and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Coding Test 

MCQ, 3 coding question 1 SQL query

Round 2 - Technical 

(1 Question)

  • Q1. Second smallest leetcode question and projects

Interview Preparation Tips

Topics to prepare for Optym Software Developer interview:
  • Data Structures
  • SQL
  • Algorithms
Interview preparation tips for other job seekers - Prepare well for the coding round

Interview questions from similar companies

I was interviewed before May 2016.

Interview Preparation Tips

Round: Test
Experience: The first round had two programming questions and one question of database concepts.
Duration: 1 hour
Total Questions: 3

Round: Technical Interview
Experience: In the first technical interview, I was asked basic questions about the domain and my resume. There was also a lot of emphasis on problem solving abilities since I was asked to solve some puzzles.

Round: Technical Interview
Experience: The second technical interview was a written round where I was asked to code some searching / sorting variants , to test my ability to write quality code.

Round: Technical Interview
Experience: The last and the final round was probably the toughest and I was asked to design databases, with some constraints. I was given ample time to do it and it did take a lot of time. After that, we had some interesting questions about data structures and trees and that was it.

College Name: RNSIT, Bangalore

I was interviewed in Mar 2017.

Interview Questionnaire 

3 Questions

  • Q1. Your projects/courses/past experiences
  • Ans. 

    I have worked on various projects during my time in university, including a web development project and a mobile app project.

    • Developed a web application using HTML, CSS, and JavaScript for a school project

    • Created a mobile app using React Native for a personal project

    • Completed courses in data structures and algorithms, as well as software engineering principles

  • Answered by AI
  • Q2. Why do you want to join MA?
  • Ans. 

    I want to join MA because of its reputation for cutting-edge technology and collaborative work environment.

    • MA is known for its innovative projects and use of advanced technology.

    • I am impressed by the collaborative work culture at MA.

    • I believe joining MA will provide me with opportunities for professional growth and development.

  • Answered by AI
  • Q3. What do you hope to gain from this internship?
  • Ans. 

    I hope to gain practical experience in software development, expand my skills, and learn from experienced professionals.

    • Gain practical experience in software development

    • Expand my skills in coding and problem-solving

    • Learn from experienced professionals in the field

  • Answered by AI

Interview Preparation Tips

Round: HR Interview
Experience: This was simply an overall background of my experience in Computer Progranming, nothing intimidating.

Round: Behavioural Interview
Experience: This round was with my supervisor. Here I asked a lot of questions about the work environment, what I'd be working with, technologies involved, etc.
Tips: Ask relevant questions, and show how eager you are for the job. I even sent an email later on to my supervisor for more details, so I could learn the technology in advance. This he told me later, was why he hired me.

College Name: Georgia Institute of Technology
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - HR 

(1 Question)

  • Q1. About yourself and background only

Interview Preparation Tips

Interview preparation tips for other job seekers - good good
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Sep 2022. 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 

(2 Questions)

  • Q1. Basic Java Question with 2 pseudo code in F2f
  • Q2. Decent interiew java8 string
  • Ans. 

    Java 8 introduced new features for working with strings.

    • Java 8 added the join() method to String class for joining strings with a delimiter.

    • The String class now has methods like chars(), codePoints(), and lines() for working with characters and lines.

    • The StringJoiner class can be used to construct sequences of characters separated by a delimiter.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - all the best, prepare hard. Thanks

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Code snippet will be give, provide output Questions on ooops, java 8 programming
Round 2 - One-on-one 

(1 Question)

  • Q1. Write a program to reverse a link list
  • Ans. 

    Program to reverse a linked list

    • Create a function to reverse the linked list by changing the next pointers

    • Use three pointers to keep track of current, previous, and next nodes

    • Iterate through the list and update the pointers accordingly

    • Return the new head of the reversed linked list

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on java and java 8

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude questions with some basic coding questions

Round 2 - Coding Test 

They have given 3 coding questions and some pseudo codings

Round 3 - Technical 

(2 Questions)

  • Q1. Tell about your self
  • Q2. Some coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Mar 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 

(5 Questions)

  • Q1. What are oops concepts in java, explain real time scenario
  • Ans. 

    OOPs concepts in Java include inheritance, polymorphism, encapsulation, and abstraction.

    • Inheritance allows a subclass to inherit properties and methods from a superclass.

    • Polymorphism allows objects to take on multiple forms and behave differently based on their context.

    • Encapsulation hides the implementation details of an object and only exposes necessary information.

    • Abstraction allows for the creation of abstract class...

  • Answered by AI
  • Q2. Uses of interface, inheritance
  • Ans. 

    Interfaces define contracts for behavior, while inheritance allows for code reuse and polymorphism.

    • Interfaces allow for loose coupling and abstraction, enabling multiple implementations of the same behavior.

    • Inheritance allows for code reuse and extension of existing classes, reducing code duplication.

    • Polymorphism allows objects of different classes to be treated as if they were of the same class, simplifying code and i

  • Answered by AI
  • Q3. SQL query for join of tables
  • Ans. 

    SQL query for joining tables

    • Use JOIN keyword to combine two or more tables based on a related column

    • Specify the columns to be selected using SELECT keyword

    • Use ON keyword to specify the condition for joining the tables

    • Different types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN

  • Answered by AI
  • Q4. Java concepts used in your project
  • Ans. 

    Used Java concepts such as inheritance, polymorphism, and exception handling in my project.

    • Implemented inheritance to create a base class and derived classes with specific functionalities.

    • Utilized polymorphism to allow objects of different classes to be treated as if they were of the same class.

    • Implemented exception handling to handle errors and prevent program crashes.

    • Used interfaces to define a set of methods that a ...

  • Answered by AI
  • Q5. Overloading vs overriding, practical uses
  • Ans. 

    Overloading is having multiple methods with the same name but different parameters. Overriding is having a method in a subclass with the same name and parameters as a method in the superclass.

    • Overloading is used to provide different ways to call a method with different parameters

    • Overriding is used to provide a specific implementation of a method in a subclass

    • Overloading is resolved at compile-time while overriding is r...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Zebra Technologies Software Developer interview:
  • Core Java
  • OOPS
  • collection framework
  • Database Management

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

It consists 2 coding questions and you have to answer in 40 mins

Round 2 - HR 

(2 Questions)

  • Q1. HR asked general questions about yourself
  • Q2. Done discussion related to projects and experience

Interview Preparation Tips

Topics to prepare for Sabre Software Developer interview:
  • DSA
  • Cs fundamentals
  • React js
Interview preparation tips for other job seekers - It was totally offline. So prepare well don't relie on cheating
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Nov 2023. There was 1 interview round.

Round 1 - Coding Test 

Sliding window related question

Optym Interview FAQs

How many rounds are there in Optym Software Developer interview?
Optym interview process usually has 2 rounds. The most common rounds in the Optym interview process are Coding Test and Technical.

Tell us how to improve this page.

Optym Software Developer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Optym Software Developer Salary
based on 10 salaries
₹10 L/yr - ₹30 L/yr
198% more than the average Software Developer Salary in India
View more details

Optym Software Developer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
31 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
22 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Principal Software Engineer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

QA Engineer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Optym with

Sabre

4.0
Compare

Blue Yonder

3.9
Compare

Manhattan Associates

3.7
Compare

Kinaxis

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