Upload Button Icon Add office photos

Filter interviews by

Startup Software Developer Interview Questions and Answers for Experienced

Updated 18 Oct 2024

Startup Software Developer Interview Experiences for Experienced

1 interview found

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

I was interviewed in Sep 2024.

Round 1 - Coding Test 

Two Round - Coding and HR

Round 2 - HR 

(2 Questions)

  • Q1. Work Experience
  • Q2. Salary Expecation

Interview questions from similar companies

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

(2 Questions)

  • Q1. Why do you want to switch
  • Ans. 

    I want to switch to explore new technologies and challenges in a different industry.

    • Interested in learning new skills and technologies

    • Seeking new challenges and opportunities for growth

    • Want to explore different industry perspectives

  • Answered by AI
  • Q2. Salry expectations
Round 2 - Technical 

(2 Questions)

  • Q1. Question on oop concepts
  • Q2. Coding questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at National Institute of Technology (NIT), Tiruchirappalli and was interviewed before Nov 2023. There were 3 interview rounds.

Round 1 - Coding Test 

2 medium dsa questions 1 hour time

Round 2 - Technical 

(1 Question)

  • Q1. OOPS concept, decomposition, aggregation, puzzles
Round 3 - HR 

(1 Question)

  • Q1. Why you will be a good fit,

Interview Preparation Tips

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

I applied via campus placement at Indian Institute of Technology (IIT), Kharagpur and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Normal DS Algo on HackerEarth

Round 2 - One-on-one 

(2 Questions)

  • Q1. Past projects and experience discussion!
  • Q2. 2 DS Algo questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at MKSSSS Commins College of Engineering for Woman, Pune and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was fairly standard. 2 coding questions and mcqs plus aptitude questions

Round 2 - Technical 

(1 Question)

  • Q1. Most questions were about java. Few about the ide i used, etc.
Round 3 - HR 

(2 Questions)

  • Q1. Resume based questions
  • Q2. Asked about the paper i had written in college

Interview Preparation Tips

Topics to prepare for Citicorp Software Developer interview:
  • DSA
  • Coding
  • Java

I applied via Recruitment Consultant and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. 3 Coding questions based on strings in 1st interview. And 2 algos.
  • Q2. Sort strings based on your own hierarchy. Ex: INPUT: ABC, HIJ, RTS, POT. Hierarchy: R, P, A, H OUTPUT: RTS, POT, ABC, HIJ.
  • Ans. 

    Sort strings based on custom hierarchy

    • Create a mapping of each character to its hierarchy value

    • Sort the strings based on the hierarchy value of their first character

    • If the first characters have the same hierarchy value, move to the next character

    • Repeat until all strings are sorted

  • Answered by AI
  • Q3. Write a program which would print notification for user specific order. Ex: Customer number "__" Ordered"__". Your order will arrive on"__"
  • Q4. What is heap?
  • Ans. 

    Heap is a region of memory used for dynamic memory allocation.

    • Heap is managed by the operating system or runtime environment.

    • It allows for allocation and deallocation of memory at runtime.

    • Heap can become fragmented over time, leading to performance issues.

    • Examples include malloc() and new() in C++.

  • Answered by AI
  • Q5. Explain Hashing.
  • Ans. 

    Hashing is a process of converting data into a fixed-size output using a mathematical function.

    • Hashing is used for data integrity and security purposes.

    • Hash functions are one-way functions, meaning it is difficult to reverse engineer the original data from the hash value.

    • Hashing is used in password storage, digital signatures, and data comparison.

    • Examples of hash functions include MD5, SHA-1, and SHA-256.

  • Answered by AI
  • Q6. Different types of joins and also a SQL query.
  • Ans. 

    Different types of joins and a SQL query.

    • Types of joins: Inner join, Left join, Right join, Full outer join, Cross join

    • Inner join returns only the matching rows from both tables

    • Left join returns all rows from the left table and matching rows from the right table

    • Right join returns all rows from the right table and matching rows from the left table

    • Full outer join returns all rows from both tables

    • Cross join returns the Ca...

  • Answered by AI
  • Q7. Difference between compiler and interpreter in detail.
  • Ans. 

    Compiler translates entire code into machine code while interpreter translates line by line.

    • Compiler converts source code into executable code without executing it.

    • Interpreter converts source code into machine code line by line and executes it.

    • Compiler generates error messages after the entire code is compiled.

    • Interpreter generates error messages as soon as it encounters an error in the code.

    • Examples of compilers are G...

  • Answered by AI
  • Q8. Questions on my project and internships.

Interview Preparation Tips

Interview preparation tips for other job seekers - BNY consisted of 5 rounds in total. 2 of them were online coding round. And then 2 pure tech round followed by 1 Bar raiser round.
1 round of interview was of around 1.5hr and the interviewer gave me 5 coding questions to do. It did all of them. The interviewer was very friendly and was giving hints. Coding was on hackerank platform.
After 1 week I had my 2nd interview. Here I was asked theory questions on CS fundamental and SQL.
3rd round was bar raiser round. There was no code snippet but the interviewer had feedback of both the rounds and our hacker rank profile. He asked me one ques from my 1st round of interview(sorting.. Why this sort). Technical questions from my projects. Difference between Compiler and interpreter. Why did you switch to python from C++. All kind of HR questions.
All rounds were elimination round.

Skills evaluated in this interview

I applied via Referral and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

11 Questions

  • Q1. Basic Java concepts like abstraction, JDK 1.8 architecture brief overview.
  • Q2. What is weak reference? garbage collection in case of such references?
  • Ans. 

    Weak reference is a reference that does not prevent the object from being garbage collected.

    • Weak references are used to refer to objects that can be garbage collected if there are no strong references to them.

    • They are typically used in scenarios where you want to hold a reference to an object, but don't want to prevent it from being collected.

    • Weak references are implemented using weak reference queues, which allow you ...

  • Answered by AI
  • Q3. Implementation of singleton pattern and ways of breaking it? singleton pattern implementation in a multithreaded environment?
  • Ans. 

    Singleton pattern ensures a class has only one instance, while allowing global access to it.

    • Implement a private constructor to prevent direct instantiation.

    • Create a static method to provide a single point of access to the instance.

    • Use lazy initialization to create the instance only when needed.

    • Ensure thread safety in a multithreaded environment using synchronization or double-checked locking.

    • Breaking the singleton patt...

  • Answered by AI
  • Q4. Annotations : @Component vs @service, @Controller vs @RESTController, @Configuration, @Transactional
  • Ans. 

    Annotations used in Spring Framework for defining components and services.

    • Annotations like @Component, @Service, and @Controller are used for defining components in Spring Framework.

    • @RestController is used for defining RESTful web services.

    • @Configuration is used for defining configuration classes.

    • @Transactional is used for defining transactional methods.

    • All these annotations help in defining and managing dependencies i

  • Answered by AI
  • Q5. Internal implementation of HashSet? Which scenario will generate same hashcode for a HashMap?
  • Ans. 

    HashSet is implemented using a HashMap internally. Same hashcode is generated when two objects have the same value for hashCode() and equals() methods.

    • HashSet internally uses a HashMap to store its elements.

    • The hashcode of an object is generated using the hashCode() method.

    • If two objects have the same value for hashCode() and equals() methods, they will generate the same hashcode.

    • For example, if two String objects have...

  • Answered by AI
  • Q6. What is SQL Cursor? Index? Aggregate Functions examples?
  • Ans. 

    SQL Cursor is a database object used to manipulate data row by row.

    • Cursor is used to fetch and process data row by row

    • Index is a database object used to speed up data retrieval

    • Aggregate functions are used to perform calculations on a set of values

    • Examples of aggregate functions are SUM, AVG, COUNT, MAX, MIN

  • Answered by AI
  • Q7. Basic Java programming question:- Generate palindrome string inputs for the program are length of the string and number of distinct characters. If n=5 & k=2 output = ababa/zzdzz/rerer. If n=7 & k=3 output=...
  • Ans. 

    Generate palindrome string with given length and distinct characters.

    • Create a char array of length n and fill it with distinct characters.

    • Loop through the array and add the characters in reverse order to create a palindrome.

    • Repeat the process until the required number of palindromes are generated.

    • If k is less than the length of the palindrome, use the first k distinct characters.

  • Answered by AI
  • Q8. Given an array with length n , find highest value which occurs same number of times within the array. [3,8,3,2,1,3,2] 3 occurs 3 times output=3. [4,6,7,6,7,5,4,2,4,9,4,1,9] 4 occurs 3 times output=4
  • Ans. 

    Find the highest value that occurs the same number of times within an array.

    • Iterate through the array and count the occurrences of each value.

    • Store the counts in a dictionary or hash map.

    • Find the maximum count and check which value(s) have that count.

    • Return the highest value among those with the maximum count.

  • Answered by AI
  • Q9. Find number of occurrences of a character in string. Provide multiple approaches for the solution and choose the best why? For "string aabcadd output=a3b1c1d2
  • Ans. 

    Count occurrences of a character in a string and output in a specific format.

    • Use a hash table to store the count of each character.

    • Loop through the string and update the count in the hash table.

    • Create the output string using the hash table.

  • Answered by AI
  • Q10. Convert String from Camel case to Snake case
  • Ans. 

    Converts a string from Camel case to Snake case.

    • Loop through the string and check for uppercase letters

    • Insert an underscore before each uppercase letter

    • Convert the string to lowercase

  • Answered by AI
  • Q11. Given a class @Data class Account{String name; String acctBalance;}. Write logic to get Map using Stream API which shows the balance of each person i,e, key will be the name of the account holder and valu...
  • Ans. 

    Logic to get Map using Stream API to show balance of each person

    • Use Stream API to group accounts by name

    • Use map() to get the sum of balances for each group

    • Collect the results into a Map

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Marvelous interview experience. Although it was 7 rounds of process, each interviewer was best at his/her way.
Initial 2 rounds of interview will bring blood out of your veins , later rounds will bring a little pumping.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Check palindrome , anagram of string with O(n)
  • Ans. 

    To check palindrome and anagram of a string with O(n), use a hash table to store character frequencies.

    • Create a hash table to store the frequency of each character in the string.

    • For palindrome, check that no more than one character has an odd frequency.

    • For anagram, compare the hash tables of the two strings.

    • If the hash tables are equal, the strings are anagrams.

    • If the hash tables differ by only one character, the strin...

  • Answered by AI
  • Q2. Optimized solutions and core principles applied in OOPS
  • Ans. 

    Optimized solutions and core principles applied in OOPS

    • Encapsulation, Inheritance, Polymorphism, Abstraction are core principles of OOPS

    • Optimized solutions can be achieved through efficient algorithms and data structures

    • Design patterns like Singleton, Factory, Observer can also be used for optimized solutions

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - They are looking for best possible solutions. and they are not using that in project then also they ask

Skills evaluated in this interview

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

It was a cumulative test

  • Q1. Trapping Rainwater

    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. Prin...

  • Ans. 

    Tip 1 : I used stack.

  • Answered by CodingNinjas
Round 2 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

It was sophisticated in nature and a good brain buster.

  • Q1. Candies

    Prateek is a kindergarten teacher. He wants to give some candies to the children in his class. All the children stand in a line and each of them has a grade according to his or her performance in ...

  • Ans. 

    Tip 1 : I gave brute force and couldn't optimise
     

  • Answered by CodingNinjas
Round 3 - Face to Face 

(1 Question)

Round duration - 1 hour
Round difficulty - Medium

  • Q1. DBMS

    It revolved around basic concepts

  • Ans. 

    Tip 1 : Go through SQL basic on gfg
     

  • Answered by CodingNinjas
Round 4 - Group Discussion 

(1 Question)

Round duration - 70 minutes
Round difficulty - Hard

It was a great experience

  • Q1. Group Discussion

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in HyderabadEligibility criteriaGood Resume and 7 CGPA +Morgan Stanley interview preparation:Topics to prepare for the interview - I have done a rigourous training on Data Structure and Algorithms. It really helped me a lot to excel in life. Also I did vocational courses which enhanced my personality. I did analytical mindset training with problem solving methodologies. The hands on training on Python and Unix helped me a lot.Time required to prepare for the interview - 8 monthsInterview preparation tips for other job seekers

Tip 1 : Stay consistent with your efforts
Tip 2 : Work hard with honesty
Tip 3 : Try to set goal of +1 level from the goal you want to achieve

Application resume tips for other job seekers

Tip 1 : Present yourself with honesty
Tip 2 : Mention about the Workshops, hackathons, achievements, and the projects.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in May 2017.

Interview Questionnaire 

6 Questions

  • Q1. Can string class be extended
  • Ans. 

    Yes, the string class can be extended in most programming languages.

    • Inheritance can be used to extend the functionality of the string class.

    • By creating a new class that inherits from the string class, additional methods and properties can be added.

    • Extending the string class allows for customization and adding specific functionality to strings.

    • Example: In Python, the string class can be extended by creating a new class

  • Answered by AI
  • Q2. What are the implecit object in JSP
  • Ans. 

    Implicit objects in JSP are predefined objects that are available for use without any declaration or initialization.

    • Implicit objects in JSP include request, response, session, application, out, config, pageContext, page, exception, and others.

    • These objects provide access to various aspects of the JSP environment and can be used to perform common tasks.

    • For example, the request object allows access to HTTP request parame...

  • Answered by AI
  • Q3. How does hash map works
  • Ans. 

    A hash map is a data structure that uses a hash function to map keys to values.

    • Hash map stores key-value pairs

    • It uses a hash function to compute an index for each key

    • Collisions can occur when two keys hash to the same index

    • Hash maps provide fast access to values based on their keys

  • Answered by AI
  • Q4. Difference between string buffer and string builder
  • Ans. 

    StringBuffer and StringBuilder are both used to manipulate strings, but StringBuffer is thread-safe while StringBuilder is not.

    • StringBuffer is synchronized, making it safe for use in multi-threaded environments.

    • StringBuilder is not synchronized, making it faster but not thread-safe.

    • StringBuffer is preferred when multiple threads are involved, while StringBuilder is preferred for single-threaded scenarios.

    • Both classes p...

  • Answered by AI
  • Q5. What is MVC
  • Ans. 

    MVC is a software architectural pattern that separates an application into three main components: Model, View, and Controller.

    • Model represents the data and business logic of the application.

    • View is responsible for displaying the user interface.

    • Controller handles user input, updates the model, and interacts with the view.

    • MVC promotes separation of concerns and modularity in software development.

    • Example: In a web applica...

  • Answered by AI
  • Q6. What are the annotation used in RESTFULL web services
  • Ans. 

    Annotations used in RESTful web services

    • 1. @Path - Specifies the URI path for the resource

    • 2. @GET - Specifies that the method handles HTTP GET requests

    • 3. @POST - Specifies that the method handles HTTP POST requests

    • 4. @PUT - Specifies that the method handles HTTP PUT requests

    • 5. @DELETE - Specifies that the method handles HTTP DELETE requests

    • 6. @PathParam - Binds the value of a URI template parameter to a method paramete...

  • Answered by AI

Interview Preparation Tips

Skills: Java Application Development

Skills evaluated in this interview

Startup Interview FAQs

How many rounds are there in Startup Software Developer interview for experienced candidates?
Startup interview process for experienced candidates usually has 2 rounds. The most common rounds in the Startup interview process for experienced candidates are Coding Test and HR.
What are the top questions asked in Startup Software Developer interview for experienced candidates?

Some of the top questions asked at the Startup Software Developer interview for experienced candidates -

  1. What is AJAX and why is it us...read more
  2. Behavioural questi...read more

Tell us how to improve this page.

Startup Software Developer Salary
based on 40 salaries
₹1.9 L/yr - ₹12 L/yr
13% less than the average Software Developer Salary in India
View more details

Startup Software Developer Reviews and Ratings

based on 2 reviews

4.9/5

Rating in categories

4.9

Skill development

4.7

Work-Life balance

3.9

Salary & Benefits

4.0

Job Security

4.7

Company culture

5.0

Promotions/Appraisal

4.9

Work Satisfaction

Explore 2 Reviews and Ratings
Software Developer
40 salaries
unlock blur

₹1.9 L/yr - ₹12 L/yr

Software Engineer
31 salaries
unlock blur

₹2 L/yr - ₹10.2 L/yr

Consultant
22 salaries
unlock blur

₹7.2 L/yr - ₹20.1 L/yr

Front end Developer
16 salaries
unlock blur

₹1 L/yr - ₹5 L/yr

Product Manager
13 salaries
unlock blur

₹7.2 L/yr - ₹28.2 L/yr

Explore more salaries
Compare Startup with

Ola Cabs

3.4
Compare

Paytm

3.3
Compare

Swiggy

3.8
Compare

Zomato

3.8
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