Upload Button Icon Add office photos

Filter interviews by

Microlise Software Developer Interview Questions and Answers

Updated 15 Oct 2021

Microlise Software Developer Interview Experiences

1 interview found

Interview Questionnaire 

1 Question

  • Q1. Technical interview type
  • Ans. Be well prepared for interview.
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared for the interview.

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
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Architecture of current project
  • Ans. 

    The current project follows a microservices architecture with Docker containers for scalability and flexibility.

    • Microservices architecture is used to break down the application into smaller, independent services that can be developed, deployed, and scaled independently.

    • Docker containers are utilized for packaging the application and its dependencies into a standardized unit for easy deployment and management.

    • Service di...

  • Answered by AI
  • Q2. Spring and Hibernate questions
Round 2 - Coding Test 

Basic coding questions

I applied via Company Website and was interviewed in Dec 2021. There were 3 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. What is LRU caching and how it can be implemented?
  • Ans. 

    LRU caching is a technique to store frequently used data in cache memory to improve performance.

    • LRU stands for Least Recently Used.

    • It removes the least recently used item from the cache when the cache is full.

    • It uses a doubly linked list and a hash map to implement the cache.

    • When an item is accessed, it is moved to the front of the list.

    • When the cache is full, the item at the end of the list is removed.

    • Example: Java Li...

  • Answered by AI
  • Q2. Explain producer-consumer problem and write code using thread.
  • Ans. 

    Producer-consumer problem involves synchronization between threads to avoid race conditions.

    • Producer produces data and adds it to a shared buffer

    • Consumer consumes data from the shared buffer

    • Synchronization is required to avoid race conditions

    • Code example: https://www.geeksforgeeks.org/producer-consumer-solution-using-threads-in-java/

  • Answered by AI
  • Q3. Check a tree is BST or not.
  • Ans. 

    To check if a tree is a BST or not.

    • Traverse the tree in-order and check if the values are in ascending order.

    • For each node, check if its value is greater than the maximum value of its left subtree and less than the minimum value of its right subtree.

    • Recursively check if the left and right subtrees are also BSTs.

  • Answered by AI
  • Q4. Reverse a single linked list.
  • Ans. 

    Reverse a single linked list.

    • Iterate through the list and change the direction of the pointers

    • Keep track of the previous, current and next nodes

    • Set the head of the list to the last node after reversing

  • Answered by AI
  • Q5. Print the all anagrams of same type in same line from array of Strings
  • Ans. 

    Print all anagrams of same type in same line from array of Strings

    • Create a HashMap with sorted string as key and list of anagrams as value

    • Iterate through array and add each string to corresponding list in HashMap

    • Print all values in HashMap

  • Answered by AI
  • Q6. Features added in Java 8
  • Ans. 

    Java 8 introduced lambda expressions, functional interfaces, streams, and default methods.

    • Lambda expressions allow functional programming in Java.

    • Functional interfaces are interfaces with a single abstract method.

    • Streams provide a way to process collections of data in a functional way.

    • Default methods allow interfaces to have implementation.

    • Date and Time API improvements.

    • Nashorn JavaScript engine added.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I have appeared on Techgig challenge and get a call from HR regarding Software development Java position.
First round is scheduled on Barraiser and is taken by Third party person. In these round, first interview give me a question to print anagrams from list of strings and to be printed of same type in different line. I have started by discussing the approach and then after 20-30 mins, I was able to reach the optimal solution. Then he discussed me about my project that I am working in current company and tell me to draw the architecture diagram.
After 2 days, I got the call from the HR and selected for 2nd round technical interview with Technical lead.
First time, they have postponed the call which is scheduled on Google meet.
In second time, the interviewer joined and round started with introduction of both and the interview tell me about the company and how it is growing and all.
Then we move to technical discussion. First he asked me about what are features are added in Java 8, then one by one concepts of Java regarding threading, producer-consumer problem.
After OOPS concept discussion, he gave me two DSA problems to solve in optimal way. I am unable to do that since I have not gone through it.
In the interview, I am pretty sure that I am not selected for the next round as my DSA is weak.
And after interview, I have never received any call nor any mail regarding my rejection and feedback.

Skills evaluated in this interview

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

Standard dsa questions, easy to medium

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
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

It was online 60min test.

Round 2 - Aptitude Test 

It was offline 30 min test.

Round 3 - Technical 

(2 Questions)

  • Q1. Oops,dbms,css,html,dsa,java.
  • Q2. It was very friendly .

Interview Preparation Tips

Topics to prepare for Apmosys Technologies Software Developer interview:
  • Java
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. What are the 4 principles of oops?
  • Ans. 

    The 4 principles of OOP are Inheritance, Encapsulation, Abstraction, and Polymorphism.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Encapsulation restricts access to certain components within a class, protecting the data.

    • Abstraction hides complex implementation details and only shows the necessary features.

    • Polymorphism allows objects to be treated as instances of their parent class.

  • Answered by AI
  • Q2. What is the difference between string buffer and string builder?
  • Ans. 

    String buffer is synchronized and thread-safe, while string builder is not synchronized and faster.

    • String buffer is synchronized, making it thread-safe for use in multi-threaded environments.

    • String builder is not synchronized, providing better performance in single-threaded applications.

    • String builder is faster than string buffer due to lack of synchronization overhead.

    • Example: StringBuffer sb = new StringBuffer(); Str

  • Answered by AI
  • Q3. Why strings are immutable?
  • Ans. 

    Strings are immutable in order to ensure data integrity and security.

    • Immutable strings prevent accidental data modification, ensuring data integrity.

    • Immutable strings enhance security by preventing unauthorized access or tampering.

    • Immutable strings allow for more efficient memory management and optimization.

    • Example: 'Hello' cannot be changed to 'Hella' directly, a new string must be created.

  • Answered by AI
  • Q4. What are the different types of exception in java?
  • Ans. 

    There are two types of exceptions in Java: checked exceptions and unchecked exceptions.

    • Checked exceptions are checked at compile time and must be handled using try-catch or throws keyword.

    • Unchecked exceptions are not checked at compile time and include RuntimeException and its subclasses.

    • Examples of checked exceptions include IOException, SQLException, and ClassNotFoundException.

    • Examples of unchecked exceptions include...

  • Answered by AI
  • Q5. Explain linear search algorithm.
  • Ans. 

    Linear search is a simple searching algorithm that sequentially checks each element in a list until a match is found.

    • Iterate through each element in the list

    • Compare the current element with the target value

    • Return the index if a match is found, otherwise return -1

  • Answered by AI
  • Q6. Difference between JDK jvm and jre
  • Ans. 

    JDK includes JRE and development tools, while JRE includes only the Java Runtime Environment.

    • JDK stands for Java Development Kit, which includes JRE and development tools like compilers and debuggers.

    • JRE stands for Java Runtime Environment, which includes JVM and libraries necessary to run Java applications.

    • JVM stands for Java Virtual Machine, which is responsible for executing Java bytecode.

    • JDK is used for developing ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare all the skills which you are mentioned in your cv.

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in May 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is diameter of Binary Tree? Write full working code.
  • Ans. 

    Diameter of a binary tree is the longest path between any two leaf nodes.

    • Calculate the height of left and right subtrees recursively.

    • Calculate the diameter recursively using the formula max(left_height + right_height + 1, max(left_diameter, right_diameter)).

    • Return the maximum diameter.

  • Answered by AI
  • Q2. Find interchanged terms from an AP, where terms are arranged in series
  • Ans. 

    To find interchanged terms from an AP series

    • Identify the common difference between terms

    • Swap the positions of adjacent terms

    • Check if the new series is also an AP

    • Repeat until no more interchanged terms can be found

  • Answered by AI
  • Q3. Explain database indexing
  • Ans. 

    Database indexing is a technique to improve the performance of database queries.

    • Indexing creates a data structure that allows for faster retrieval of data.

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

    • Queries that use indexed columns can be executed faster.

    • Indexes can be clustered or non-clustered.

    • Clustered indexes determine the physical order of data in a table.

    • Non-clustered indexes create a separate structure...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on basic data structures, operating systems and database.

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. Two problems[Ds and algo] +Cv Project Explanation 1 hour interview[Single round only]
  • Q2. Anyone who does LeetCode medium level problems can solve them easily always do follow up of the problems cause that is the only thing they desire from your solution

Microlise Interview FAQs

How to prepare for Microlise Software Developer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Microlise. The most common topics and skills that interviewers at Microlise expect are ASP.Net MVC, Ajax, C#, CSS and HTML.

Tell us how to improve this page.

Microlise Software Developer Salary
based on 16 salaries
₹7.5 L/yr - ₹15 L/yr
39% more than the average Software Developer Salary in India
View more details
Software Engineer
25 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Application Support Analyst
17 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
17 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
16 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Microlise with

BlackBuck

3.8
Compare

LogiNext Solutions

1.8
Compare

FarEye

3.1
Compare

Ecom Express

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