Upload Button Icon Add office photos

Filter interviews by

Microworld Technologies Interview Questions and Answers

Updated 19 Feb 2024

Microworld Technologies Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic altitude test comes with the coding questions on pascal c++ as well theory questions might be asked too.

Round 2 - Technical 

(1 Question)

  • Q1. In second round java or any other programming language you have mentioned. Basic questions on that will be asked.
Round 3 - One-on-one 

(2 Questions)

  • Q1. It's managerial round.
  • Q2. Communication will be checkes. Binary to decimal Decimal to binary code will be asked.

Delphi Developer Interview Questions asked at other Companies

Q1. Explain Delphi database components
View answer (1)

Jobs at Microworld Technologies

View all

Interview questions from similar companies

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 - Coding Test 

Easy problem on java

Round 3 - One-on-one 

(1 Question)

  • Q1. Technical discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on the CV details

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

Interview Questionnaire 

6 Questions

  • Q1. Data structure and C++
  • Q2. Reverse Linked list
  • Q3. Multi threaded queue
  • Q4. Design pattern
  • Q5. Basic C++ concepts
  • Q6. Puzzles

Interview Preparation Tips

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

I applied via Recruitment Consulltant

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 - Technical 

(2 Questions)

  • Q1. Threading: Write and use a mutex?
  • Ans. 

    A mutex is a synchronization primitive that ensures only one thread can access a resource at a time.

    • Create a mutex object using the appropriate library or language-specific function.

    • Lock the mutex before accessing the shared resource to prevent other threads from accessing it.

    • Unlock the mutex after finishing the operation on the shared resource to allow other threads to access it.

    • Example: pthread_mutex_t mutex; pthread...

  • Answered by AI
  • Q2. Find the memory leak in a given set of code.
  • Ans. 

    Identify memory leak in code

    • Check for any dynamically allocated memory that is not being freed

    • Look for any infinite loops or recursive functions that consume memory

    • Use memory profiling tools like Valgrind to detect leaks

    • Check for any global variables that are not properly managed

  • Answered by AI

Skills evaluated in this interview

I was interviewed before Mar 2021.

Round 1 - Technical 

(3 Questions)

  • Q1. How to check a number is power of 2
  • Ans. 

    To check if a number is a power of 2, we can use bitwise operations.

    • A power of 2 has only one bit set to 1, so we can use the bitwise AND operator to check if the number is a power of 2.

    • If n is a power of 2, then n & (n-1) will be 0.

    • For example, 8 (1000 in binary) is a power of 2, and 8 & 7 (0111 in binary) is 0.

  • Answered by AI
  • Q2. Sort a stack without using another data structure
  • Ans. 

    Sort a stack without using another data structure

    • Use recursion to pop the top element and insert it at the bottom of the remaining stack

    • Repeat until the stack is sorted in ascending order

    • Time complexity: O(n^2), space complexity: O(n) due to recursion

  • Answered by AI
  • Q3. Check weather array have continuous increasing than decreasing value
  • Ans. 

    Check if array has continuous increasing and decreasing values

    • Loop through the array and check if each element is greater than the previous one

    • Once you find the maximum element, check if the remaining elements are in decreasing order

    • If yes, return true else false

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Design a cricinfo (LLD)
  • Ans. 

    Design a cricinfo (LLD)

    • Identify the entities: players, teams, matches, scorecards, tournaments, etc.

    • Define the relationships between entities

    • Create a database schema to store the data

    • Implement APIs to fetch and update data

    • Design a UI to display the information

    • Consider scalability and performance

    • Ensure data security and privacy

  • Answered by AI
Round 3 - HR 

(3 Questions)

  • Q1. Share details of your previous job.
  • Q2. Why should we hire you?
  • Q3. What are your strengths and weaknesses?

Interview Preparation Tips

Interview preparation tips for other job seekers - Do study basic Data Structure questions and also prepare for Low level design.
Do work on behavioral questions too.

Skills evaluated in this interview

I applied via Company Website and was interviewed in May 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Logical reasoning And aptitude test

Round 2 - Coding Test 

C++, python and Java programming

Interview Preparation Tips

Topics to prepare for Gen Software Engineer interview:
  • C++
  • Python
Interview preparation tips for other job seekers - I am interested for this company opportunity for giving me and I am so happy and giving me for work from home job
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Data structures, Algorithm
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Tha aptitude exam was not very easy and not that difficult. It was something which one can easily get into.

Round 2 - Technical 

(1 Question)

  • Q1. Question related to 1. Servers 2. Coding practices 3. Database queries 4. Latest versions syntax
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 Jul 2023. There were 2 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. Windows internals
  • Q2. Windows apis like loaddll dynamically
  • Q3. IPC mechanism in windows
  • Ans. 

    IPC mechanism in Windows allows communication between processes through shared memory, message passing, and synchronization.

    • IPC mechanisms in Windows include named pipes, mailslots, shared memory, and sockets.

    • Named pipes allow communication between processes on the same machine or over a network.

    • Mailslots are used for one-way interprocess communication.

    • Shared memory allows processes to share data by mapping a region of...

  • Answered by AI
  • Q4. Multi-threading in windows
  • Ans. 

    Multi-threading in Windows allows multiple threads to run concurrently within a single process.

    • Windows provides APIs like CreateThread and CreateProcess to create and manage threads.

    • Threads share the same memory space within a process, allowing for efficient communication and resource sharing.

    • Windows supports both user-mode and kernel-mode threads, with user-mode threads being more lightweight.

    • Synchronization mechanism...

  • Answered by AI
  • Q5. C++ general questions
Round 2 - Technical 

(4 Questions)

  • Q1. Memory management
  • Q2. Memory mapping in windows, file mapping
  • Ans. 

    Memory mapping in Windows allows files to be mapped directly into memory for faster access and manipulation.

    • Memory mapping allows files to be accessed as if they were in memory

    • File mapping can be used for sharing data between processes

    • Improves performance by reducing disk I/O operations

    • Examples: CreateFileMapping, MapViewOfFile, UnmapViewOfFile

  • Answered by AI
  • Q3. Windows internal
  • Q4. Critical section in windows
  • Ans. 

    Critical section in Windows is a synchronization mechanism used to protect shared resources from concurrent access.

    • Critical sections are used to ensure mutual exclusion between threads accessing shared resources.

    • They are implemented using the Windows API functions InitializeCriticalSection, EnterCriticalSection, and LeaveCriticalSection.

    • Critical sections are more efficient than mutexes for synchronization within a sing...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through c++ apis specifically for windows.

Skills evaluated in this interview

Data Analyst Interview Questions & Answers

McAfee user image Sidharth Kriplani

posted on 13 Aug 2023

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Aug 2022. There were 3 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 - Technical 

(4 Questions)

  • Q1. I was provided with three tables: 1st table had city wise sales, 2nd table had province_id and name, 3rd table had city_id, city_name, and province_id 1. Get the highest sales value, city, province. Do th...
  • Q2. Can aggregate functions be used with HAVING clause? With WHERE clause? What is the difference between WHERE and HAVING clause? Can HAVING be used without GROUP BY?
  • Ans. 

    Yes, aggregate functions can be used with HAVING and WHERE clauses. WHERE filters rows before grouping, HAVING filters groups after grouping.

    • Aggregate functions can be used with HAVING clause to filter groups based on the result of the aggregate function.

    • Aggregate functions can also be used with WHERE clause to filter rows before grouping.

    • WHERE clause filters rows before grouping, while HAVING clause filters groups aft...

  • Answered by AI
  • Q3. What is the order of execution of a SQL Query?
  • Ans. 

    The order of execution of a SQL query is: FROM, WHERE, GROUP BY, HAVING, SELECT, ORDER BY.

    • FROM: Specifies the tables involved in the query

    • WHERE: Filters the rows based on specified conditions

    • GROUP BY: Groups the rows that have the same values into summary rows

    • HAVING: Filters the groups based on specified conditions

    • SELECT: Selects the columns to be displayed in the result set

    • ORDER BY: Sorts the result set based on speci

  • Answered by AI
  • Q4. What are User Defined Functions? Stored Procedures? Triggers?
  • Ans. 

    User Defined Functions, Stored Procedures, and Triggers are database objects used to perform specific tasks in database management systems.

    • User Defined Functions are custom functions created by users to perform specific calculations or operations in a database.

    • Stored Procedures are precompiled SQL statements that can be executed by calling the procedure name.

    • Triggers are special types of stored procedures that are auto...

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. This was a managerial round

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for SQL the most

Skills evaluated in this interview

Microworld Technologies Interview FAQs

How many rounds are there in Microworld Technologies interview?
Microworld Technologies interview process usually has 3 rounds. The most common rounds in the Microworld Technologies interview process are Aptitude Test, Technical and One-on-one Round.
How to prepare for Microworld Technologies 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 Microworld Technologies. The most common topics and skills that interviewers at Microworld Technologies expect are C++, Inside Sales, Cold Calling, Communication Skills and Cyber Security.
What are the top questions asked in Microworld Technologies interview?

Some of the top questions asked at the Microworld Technologies interview -

  1. In second round java or any other programming language you have mentioned. Basi...read more
  2. Communication will be checkes. Binary to decimal Decimal to binary code will b...read more
  3. It's managerial rou...read more

Tell us how to improve this page.

Microworld Technologies Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Deloitte Interview Questions
3.8
 • 2.8k Interviews
Teleperformance Interview Questions
3.9
 • 1.8k Interviews
Nagarro Interview Questions
4.0
 • 759 Interviews
McAfee Interview Questions
4.0
 • 30 Interviews
Gen Interview Questions
4.0
 • 17 Interviews
FireEye Interview Questions
4.3
 • 5 Interviews
Trend Micro Interview Questions
4.3
 • 1 Interview
View all

Microworld Technologies Reviews and Ratings

based on 53 reviews

3.5/5

Rating in categories

3.3

Skill development

3.4

Work-life balance

2.7

Salary

3.3

Job security

3.0

Company culture

2.7

Promotions

3.4

Work satisfaction

Explore 53 Reviews and Ratings
Inside Sales Specialist - IT sales

Mumbai,

Mumbai Suburban

+1

2-6 Yrs

Not Disclosed

Android Developer Executive

Mumbai,

Mumbai Suburban

+1

1-5 Yrs

Not Disclosed

Explore more jobs
Technical Support Engineer
30 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
20 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Development Executive
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Support Executive
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Territory Manager
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Microworld Technologies with

QUICK HEAL TECHNOLOGIES

3.7
Compare

Trend Micro

4.3
Compare

Gen

4.0
Compare

Kaspersky Lab

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