Upload Button Icon Add office photos

Filter interviews by

Otipy Software Developer Intern Interview Questions and Answers

Updated 30 May 2024

Otipy Software Developer Intern Interview Experiences

1 interview found

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

(1 Question)

  • Q1. Next greater element in array
  • Ans. 

    Find the next greater element in an array for each element

    • Iterate through the array and use a stack to keep track of elements

    • For each element, pop elements from the stack until finding a greater element

    • Store the next greater element in a result array

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Approached by Company 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 - One-on-one 

(4 Questions)

  • Q1. Tell me about yourself? Why choose python and tell me about projects?
  • Ans. 

    I am a software developer with a passion for Python. I have worked on various projects showcasing my skills.

    • I chose Python because of its simplicity, readability, and vast community support.

    • Python's extensive libraries and frameworks make it suitable for a wide range of applications.

    • I have worked on projects like building web applications using Django, data analysis using pandas, and automation scripts using Selenium.

    • O...

  • Answered by AI
  • Q2. Why gaotek? Difference between Application and System Software? Tell me about project you done?
  • Ans. 

    I chose Gaotek because of its reputation in the software development industry.

    • Gaotek is known for its cutting-edge technology and innovative solutions.

    • The company has a strong focus on professional growth and learning opportunities.

    • Gaotek's work culture promotes collaboration and teamwork.

    • I was impressed by the positive reviews and success stories of Gaotek's previous interns and employees.

  • Answered by AI
  • Q3. Difference between python and C
  • Ans. 

    Python is a high-level interpreted language while C is a low-level compiled language.

    • Python is dynamically typed while C is statically typed.

    • Python has automatic memory management while C requires manual memory management.

    • Python is easier to learn and write code in while C is more efficient and faster.

    • Python is used for web development, data analysis, and machine learning while C is used for system programming and embe...

  • Answered by AI
  • Q4. Why you can go with unpaid internship??
  • Ans. 

    Unpaid internships can provide valuable learning opportunities and networking connections.

    • Gain practical experience and enhance skills

    • Build a professional network

    • Explore different career paths

    • Gain exposure to real-world projects

    • Increase chances of future employment

    • Learn from experienced professionals

    • Develop a strong work ethic

    • Demonstrate dedication and commitment

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest and confident in Interview
focus on resume , whatever you write

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
Less than 2 weeks
Result
No response

I applied via campus placement at Lovely Professional University (LPU) and was interviewed in Sep 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

It was aptitude + oops concpets mcqs

Round 3 - Coding Test 

This round had 3 dsa questions (tree, linked list, array) and 1 output based answer(bst)

Round 4 - Coding Test 

This was another coding round of higher difficulty (linked list, tree)

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA concepts like tree and linked list properly
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed before Feb 2023.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Oops implementation
  • Q2. Least common ancestors tree
  • Ans. 

    Finding the least common ancestor of two nodes in a tree

    • Use a method like Lowest Common Ancestor (LCA) to find the least common ancestor of two nodes in a tree

    • Traverse the tree to find the paths from the root to each node, then compare the paths to find the LCA

    • Consider edge cases like when one node is the ancestor of the other or when one of the nodes is not in the tree

  • Answered by AI
  • Q3. Structure in c++
  • Ans. 

    Structure in C++ is a user-defined data type that allows grouping of variables of different data types under a single name.

    • Structures are used to create complex data types by grouping variables together.

    • They can contain variables of different data types.

    • Structures are defined using the 'struct' keyword.

    • Example: struct Person { string name; int age; };

    • Example: Person p1;

  • Answered by AI
  • Q4. Node implementation
  • Q5. Sql query aasics

Interview Preparation Tips

Interview preparation tips for other job seekers - Cover basics of DSA and OOp

Skills evaluated in this interview

I was interviewed in Feb 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 70 Minutes
Round difficulty - Medium

Timing was 9:15AM. Platform was not very good. Questions were not well explained.

  • Q1. 

    Merge Overlapping Intervals Problem Statement

    Given a specified number of intervals, where each interval is represented by two integers denoting its boundaries, the task is to merge all overlapping interv...

  • Ans. Brute Force
    1. We are given the function MERGEINTERVALS(), which takes a 2D vector representing the vector of intervals and returns another 2D vector which is the vector of merged intervals.
    2. We create another function ISOVERLAP() to check if the current interval overlaps with the other interval.
    3. Now we create an empty 2D vector “RES” to store finally merged intervals and another boolean vector “VIS” to mark if the current in...
  • Answered Anonymously
  • Q2. 

    Rat in a Maze Problem Statement

    You need to determine all possible paths for a rat starting at position (0, 0) in a square maze to reach its destination at (N-1, N-1). The maze is represented as an N*N ma...

  • Ans. Bactracking

    Approach: We can start the traversal of the paths from the rat’s starting position, i.e. (0,0) keeping track of the visited cells during the traversal. We will recursively go through all the paths possible until the last index of the grid (destination) is reached, and add the path information using which the rat successfully reached the end.

     

    Algorithm is as follows:

     

    1. Take the starting position of th...
  • Answered Anonymously
  • Q3. 

    Problem: Permutations of a String

    Given a string STR consisting of lowercase English letters, your task is to return all permutations of the given string in lexicographically increasing order.

    Explanatio...

  • Ans. Backtracking

    The idea is to fix a character at a position and then find the permutations for rest of the characters.

    Make a list ‘ans’ which will contain the permutations of the given string.

     

    Algorithm:

    Let’s define a function generatePermutaionsHelper(Str, l, r). This function generates the permutations of the substring which starts from index  ‘l’ and ends at index  ‘r’.

    • Call the function: generatePermutai...
  • Answered Anonymously

Interview Preparation Tips

Eligibility criteria8 CGPALido Learning interview preparation:Topics to prepare for the interview - OOPS, Data Structures, Core Java, Algorithms, PointersTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Prepare maximum algorithms.
Tip 2 : Deep knowledge of data structure. 
Tip 3 : OOPS is must.

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Mention only your own projects.

Final outcome of the interviewRejected

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Feb 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - One-on-one 

(5 Questions)

  • Q1. Introduce yourself- basic introduction
  • Q2. What projects have you worked on
  • Ans. 

    I have worked on various projects including a web application for a retail company and a mobile app for a fitness tracking system.

    • Developed a web application for a retail company to manage inventory and sales.

    • Created a mobile app for a fitness tracking system that allows users to track their workouts and set goals.

    • Contributed to a team project for building a chatbot using natural language processing.

    • Implemented a data ...

  • Answered by AI
  • Q3. Difference between various programming languages
  • Ans. 

    Programming languages differ in syntax, features, and purpose.

    • Syntax: how code is written and structured

    • Features: what the language can do and how it does it

    • Purpose: what the language is best suited for

    • Examples: Java for enterprise applications, Python for data science, JavaScript for web development

  • Answered by AI
  • Q4. Why did you applied for Software Development Intern position?
  • Ans. 

    I applied for the Software Development Intern position because I am passionate about coding and want to gain practical experience in software development.

    • Passionate about coding

    • Desire to gain practical experience

    • Interest in software development

    • Opportunity to learn and grow

    • Aligns with my career goals

  • Answered by AI
  • Q5. Have you ever faced any problem or issue during your project and how did you resolved them?
  • Ans. 

    Yes

    • During a project, I faced a problem with integrating a third-party API.

    • I resolved the issue by thoroughly analyzing the API documentation and troubleshooting the code.

    • Another problem I encountered was a performance bottleneck in the application.

    • To resolve it, I used profiling tools to identify the bottleneck and optimized the code accordingly.

    • Additionally, I faced a challenge with a database query that was returning...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for GAO Tek Software Developer Intern interview:
  • BASICS OF SOFTWARE ENGINEEERING/
Interview preparation tips for other job seekers - 1. BE CONFIDENT
2. BE HONEST
3. REPLY WITH SMILE AND TAKE YOUR TIME
4. EXPLAIN CLEARLY
5. SHOW INTEREST AND JUSTIFY HOW YOU WILL BE TAKING ADVANTAGE OF THIS OPPORTUNITY
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Apr 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude test consisted of around 45 MCQs from basic topics like C, C++, OOPS

Round 2 - Coding Test 

2nd round had 3 medium level (Leetcode) questions and 1 output question: 1. Level order traversal, 2. count zeros(not sure), 3. Linked List traversal related.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA topics like Linked List and Tree very thoroughly.

I was interviewed in Nov 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 45 minutes
Round difficulty - Easy

There were around 20 mcq's on Aptitude.
1 Coding Question

  • Q1. 

    Sum of Maximum and Minimum Elements Problem Statement

    Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array.

    Follow Up:

    Can you achie...

  • Ans. 

    First I initialized two variables max and min.
    and traverse the array to find max and min.
    then return the sum of max and min.

  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

  • Q1. 

    Design a Constant Time Data Structure

    Create a data structure that maintains mappings between keys and values, supporting the following operations in constant time:

    1. INSERT(key, value): Add or update t...
  • Ans. Array Approach - Separate Chaining

    Approach:

    HashMap is the data structure used to store key-value pairs, where the average retrieval time for get() and insert() operations is constant i.e. O(1).

     

    Hashmap uses the array of Singly Linked List internally.

     

    The array is called the buckets and at every bucket(i-th index of the array) holds a pointer to head of the Singly Linked List. 

    Every Linked List Node has f...

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in HyderabadEligibility criteriaBE/BTECH CandidateZeMoSo Technologies interview preparation:Topics to prepare for the interview - Arrays, String, Linked List, Stack, Queues, HashMaps, DBMS, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare OOPS Concepts
Tip 2 : Build good knowledge in Data Structure and Algorithms.
Tip 3 : Practice SQL queries.

Application resume tips for other job seekers

Tip 1 : Do not put false things on resume
Tip 2 : Mention atleast 2 projects.

Final outcome of the interviewRejected

Skills evaluated in this interview

I was interviewed in Feb 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 70 minutes
Round difficulty - Medium

Timing was 9:15AM. Platform was not very good. Questions were not well explained.

  • Q1. 

    Merge Overlapping Intervals Problem Statement

    Given a specified number of intervals, where each interval is represented by two integers denoting its boundaries, the task is to merge all overlapping interv...

  • Q2. 

    Rat in a Maze Problem Statement

    You need to determine all possible paths for a rat starting at position (0, 0) in a square maze to reach its destination at (N-1, N-1). The maze is represented as an N*N ma...

Interview Preparation Tips

Eligibility criteria8 CGPALido Learning interview preparation:Topics to prepare for the interview - OOPS, Data Structures, Core Java, Algorithms, PointersTime required to prepare for the interview - 2.5 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare maximum algorithms.
Tip 2 : Deep knowledge of data structure.
Tip 3 : OOPS is must.

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Mention only your own projects.

Final outcome of the interviewRejected

Skills evaluated in this interview

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

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Basic question in any interview:- Tell me about yourself?
  • Q2. What are your projects?

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident on what you are saying during the interview .
Give honest reply rather than giving copied answers from the internet.
Be good at the things you are comfortable with.

Otipy Interview FAQs

How many rounds are there in Otipy Software Developer Intern interview?
Otipy interview process usually has 1 rounds. The most common rounds in the Otipy interview process are Technical.

Tell us how to improve this page.

Otipy Software Developer Intern Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Business Development Executive
27 salaries
unlock blur

₹2.2 L/yr - ₹5.5 L/yr

Software Developer
10 salaries
unlock blur

₹8 L/yr - ₹16 L/yr

Software Development Engineer
10 salaries
unlock blur

₹12 L/yr - ₹16 L/yr

Data Scientist
7 salaries
unlock blur

₹6 L/yr - ₹11 L/yr

Senior Executive
6 salaries
unlock blur

₹3.9 L/yr - ₹5 L/yr

Explore more salaries
Compare Otipy with

BigBasket

3.9
Compare

Blinkit

3.7
Compare

Nature's Basket

3.7
Compare

Reliance Fresh

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