Upload Button Icon Add office photos

Filter interviews by

Optmyzr Software Developer Intern Interview Questions, Process, and Tips

Updated 16 Mar 2024

Top Optmyzr Software Developer Intern Interview Questions and Answers

  • Q1. DFS Traversal Given an undirected and disconnected graph G(V, E), containing 'V' vertices and 'E' edges, the information about edges is given using 'GRAPH' matrix, where ...read more
  • Q2. Trapping Rain Water You have been given a long type array/list 'ARR' of size 'N'. It represents an elevation map wherein 'ARR[i]' denotes the elevation of the 'ith' bar. ...read more
  • Q3. OS Question Tell us the difference between a thread and a process.

Optmyzr Software Developer Intern Interview Experiences

2 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

It consisted of some mcqs , 2 coding questions, 1 sql query

Round 2 - Coding Test 

It consisted of 2 coding questions , 1 lld question,1 file handling question

Round 3 - Technical 

(1 Question)

  • Q1. Projects were asked

I was interviewed in Mar 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 110 minutes
Round difficulty - Medium

There were MCQs related to Aptitude, OS, DBMS, Coding Outputs, and Networks. And There were also 2 Coding Questions in the last.

  • Q1. DFS Traversal

    Given an undirected and disconnected graph G(V, E), containing 'V' vertices and 'E' edges, the information about edges is given using 'GRAPH' matrix, where i-th edge i...

  • Ans. DFS For Each Connected Component
    • Run a loop from 0 to V-1 and if this vertex is not visited do a DFS from this vertex and add all the reachable vertex to a vector/list ‘singleComponent’.
    • Sort the singleComponent vector/list in increasing order and add it to the answer vector/list which is called ‘components’.
    • Print the size of the vector/list ‘components’ on the first line.
    • On each line after the first, print one sing...
  • Answered by CodingNinjas
Round 2 - Coding Test 

(1 Question)

Round duration - 120 minutes
Round difficulty - Medium

It was a coding round. We have to solve the 3 coding questions in 120 minutes.

  • Q1. Trapping Rain Water

    You have been given a long type array/list 'ARR' of size 'N'. It represents an elevation map wherein 'ARR[i]' denotes the elevation of the 'ith' bar. Pri...

  • Ans. Brute Force Approach

    The idea here is to travel over every elevation on the map and calculate the units of water the elevation can store.

     

    Here is the algorithm :

     

    1. Iterate over every elevation or element and find the maximum elevation on to the left and right of it. Say, the maximum elevation on to the left of the current elevation or element that we are looking at is ‘maxLeftHeight’ and the maximum elevation on...
  • Answered by CodingNinjas
Round 3 - Video Call 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

This round was only to test my technical knowledge of various Core CSE Subjects, and along with this, projects from my CV discussed as well.

  • Q1. OS Question

    Tell us the difference between a thread and a process.

  • Q2. DBMS Question

    How Passwords have been stored in the DBMS?

Round 4 - HR 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

This round was basically to judge my Soft Skills like how I speak, and how well are my communication skills.

  • Q1. Basic HR Questions

    How quickly do you adapt to new technology?

    What software packages are you familiar with?

  • Ans. 

    Tip 1 : If the interviewer has told it like tell me about yourself 'your name'. Then never ever start with your name.
    Tip 2 : Always be specific about yourself.
    Tip 3 : Try to impress the interviewer in less than 30 seconds.

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Lovely Professional University. I applied for the job as SDE - Intern in HyderabadEligibility criteriaAbove 8.1 CGPA, Should need to have good Competitive Programming SkillsOptmyzr, Inc. interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Computer Networks, Operating Systems, DBMS, Puzzles, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Try to cover basic knowledge of graphs and DP, as they can be the favorite topic of the company during coding and interview rounds.
Tip 2 : Be well prepared with your CV, because you are going to be asked everything from your CV itself, so be truthful with your CV as well.
Tip 3 : Try to gain a good knowledge of OOPS, and DBMS, as it shows your development skills to the company

Application resume tips for other job seekers

Tip 1 : Your Resume should have at least 2-3 good projects and you should have proper knowledge of all the projects you will be putting into it.
Tip 2 : Your Resume should be of 1 page, and should be well maintained with sections like Education, Skills, Positions Of Responsibility (If Any), Languages, Skills, Projects, Achievements, Certifications.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Approached by Company and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Javascript basic question asked like closure hoisting some output based question
Round 2 - Technical 

(1 Question)

  • Q1. React app optimization and advanced hooks
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Leetcode easy-medium

Round 2 - Technical 

(2 Questions)

  • Q1. What is Cyber Security and information security?
  • Ans. 

    Cyber security is the practice of protecting systems, networks, and data from digital attacks.

    • Cyber security involves implementing measures to prevent unauthorized access, data breaches, and other cyber threats.

    • It includes technologies, processes, and practices designed to protect networks, devices, programs, and data from attack, damage, or unauthorized access.

    • Examples of cyber security measures include firewalls, ant...

  • Answered by AI
  • Q2. What are the types of encryption?
  • Ans. 

    Types of encryption include symmetric encryption, asymmetric encryption, and hashing.

    • Symmetric encryption: Uses the same key for both encryption and decryption, examples include AES and DES.

    • Asymmetric encryption: Uses a pair of public and private keys for encryption and decryption, examples include RSA and ECC.

    • Hashing: Converts data into a fixed-size string of bytes, examples include MD5 and SHA.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Pivot columns in sql
  • Ans. 

    Pivoting columns in SQL involves transforming rows into columns to display data in a different format.

    • Use the PIVOT keyword in SQL to pivot columns

    • Specify the columns to pivot on and the values to display in the new columns

    • Aggregate functions like SUM, AVG, COUNT can be used with PIVOT

    • Example: SELECT * FROM table_name PIVOT (SUM(value_column) FOR pivot_column IN ('value1', 'value2', 'value3'))

  • Answered by AI
  • Q2. Slow changing dimensions
  • Q3. Dynamic rankx top 3
  • Q4. Field parameters
  • Q5. Stored procedures

Interview Preparation Tips

Interview preparation tips for other job seekers - They don't have proper interviewer they were rude and show bad attitude to the candidates.

Better avoid this company

Skills evaluated in this interview

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

Two Medium DSA questions, then questions about react and springboot

Interview Preparation Tips

Interview preparation tips for other job seekers - One React problem solving question and then asked me to design the DB of bookMyshow
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. Basic JavaScript and React.js questions
  • Q2. Questions on functions, hooks and DOM
  • Q3. Questions on SSR
  • Q4. Questions on strings and arrays
Round 2 - Coding Test 

Api related questions

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

I applied via Recruitment Consulltant 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 

(10 Questions)

  • Q1. Explain in detail about your last project
  • Q2. What is Regression Testing and Retesting
  • Ans. 

    Regression testing is testing the existing functionality of the software after making changes to ensure that the changes have not affected the existing functionality. Retesting is testing the same functionality again after fixing the defects found during regression testing.

    • Regression testing is done to ensure that the changes made to the software have not affected the existing functionality.

    • Retesting is done to ensure ...

  • Answered by AI
  • Q3. What 300 & 301 status codes represents?
  • Ans. 

    300 represents multiple choices and 301 represents moved permanently.

    • 300 status code represents multiple choices, indicating that the requested resource has multiple representations available.

    • 301 status code represents moved permanently, indicating that the requested resource has been permanently moved to a new URL.

    • Both status codes are used in HTTP responses to indicate the status of a requested resource.

    • Examples of 3...

  • Answered by AI
  • Q4. What is Sanity Testing and Smoke Testing?
  • Ans. 

    Sanity testing and Smoke testing are types of software testing performed to check the basic functionality of the application.

    • Smoke testing is a type of testing that checks whether the critical functionalities of the application are working fine or not.

    • Sanity testing is a type of testing that checks whether the bugs reported earlier have been fixed or not.

    • Smoke testing is performed after the build is received from the d...

  • Answered by AI
  • Q5. What is Severity and Priority?
  • Ans. 

    Severity is the impact of a defect on the system, while Priority is the order in which defects should be fixed.

    • Severity is based on the extent of damage caused by a defect

    • Priority is based on the importance of the affected functionality

    • High Severity and High Priority defects should be fixed first

    • Example: A spelling mistake in a button label has low Severity but high Priority if it affects usability

  • Answered by AI
  • Q6. Explain High priority and low severity with an example
  • Ans. 

    High priority means the issue needs to be fixed immediately, while low severity means the issue has minimal impact on the system.

    • High priority issues are critical and can cause system failure or data loss

    • Low severity issues are minor and do not affect the system's functionality

    • Example of high priority and low severity issue: A critical security vulnerability is high priority but low severity because it has not yet been...

  • Answered by AI
  • Q7. Explain low priority and high severity with an example
  • Ans. 

    Low priority and high severity refer to the impact and urgency of a bug respectively.

    • Low priority bugs are those that do not have a significant impact on the system or user experience, but still need to be fixed eventually.

    • High severity bugs are those that have a significant impact on the system or user experience and need to be fixed urgently.

    • For example, a low priority bug could be a typo in a non-critical error mess...

  • Answered by AI
  • Q8. What is Agile methodology
  • Ans. 

    Agile methodology is an iterative approach to software development that emphasizes flexibility and customer satisfaction.

    • Agile values individuals and interactions over processes and tools

    • It emphasizes working software over comprehensive documentation

    • It encourages collaboration between developers and customers

    • It involves breaking down projects into smaller, manageable chunks called sprints

    • Examples of Agile methodologies...

  • Answered by AI
  • Q9. Which test should do first and why?
  • Ans. 

    The test that should be done first is the one that covers the most critical and high-risk functionality.

    • Identify critical and high-risk functionality

    • Prioritize tests based on risk

    • Perform tests in a logical order

    • Re-evaluate test priorities as development progresses

  • Answered by AI
  • Q10. Logical question - You have 3 switches and one bulb in another room, you have to find which switch in connected to that bulb, you are given only ONE CHANCE.

Interview Preparation Tips

Interview preparation tips for other job seekers - Expect the unexpected, Keep your resume crisp and be prepared what you have shared in your resume

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What is Indexing in Mysql
  • Ans. 

    Indexing in MySQL is a technique to improve the performance of database queries by creating a data structure that allows for faster data retrieval.

    • Indexes are created on one or more columns of a table.

    • They help in speeding up the search, sorting, and joining of data.

    • Indexes can be created using different algorithms like B-tree, hash, or bitmap.

    • Using indexes appropriately can significantly enhance query performance.

    • Exam...

  • Answered by AI
  • Q2. Opps concepts in php
  • Ans. 

    Object-oriented programming concepts in PHP

    • Encapsulation: bundling data and methods together in a class

    • Inheritance: creating new classes based on existing ones

    • Polymorphism: using a single interface to represent different types

    • Abstraction: hiding unnecessary details and exposing only essential features

    • Class: blueprint for creating objects

    • Object: instance of a class

    • Method: function defined inside a class

    • Property: variabl

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. It was good and easy
Round 2 - HR 

(1 Question)

  • Q1. Its all about package discussion

Optmyzr Interview FAQs

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

Tell us how to improve this page.

People are getting interviews through

based on 1 Optmyzr interview
Campus Placement
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

R.R. Donnelley Interview Questions
4.0
 • 96 Interviews
3 Minds Digital Interview Questions
4.4
 • 62 Interviews
Publicis Interview Questions
3.7
 • 53 Interviews
Regalix Interview Questions
2.9
 • 43 Interviews
Denave Interview Questions
3.6
 • 39 Interviews
Xdbs Interview Questions
3.2
 • 37 Interviews
InMobi Interview Questions
3.6
 • 34 Interviews
Smollan Group Interview Questions
4.2
 • 33 Interviews
View all

Fast track your campus placements

View all
Program Manager
4 salaries
unlock blur

₹18 L/yr - ₹18 L/yr

Software Development Engineer
4 salaries
unlock blur

₹11 L/yr - ₹32 L/yr

Accounts Manager
4 salaries
unlock blur

₹10.3 L/yr - ₹19 L/yr

Senior UX Designer
4 salaries
unlock blur

₹14 L/yr - ₹14 L/yr

Sde1
4 salaries
unlock blur

₹28 L/yr - ₹40.8 L/yr

Explore more salaries
Compare Optmyzr with

Marin Software

2.9
Compare

R.R. Donnelley

4.0
Compare

Denave

3.6
Compare

Smollan Group

4.2
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