Add office photos
Employer?
Claim Account for FREE

Paxcom India

4.1
based on 60 Reviews
Filter interviews by

20+ Multi Wing Interview Questions and Answers

Updated 7 Nov 2024
Q1. Digit Count In Range

You are given an integer ‘K’, and two numbers ‘A’ and ‘B’. You need to count the occurrences of the given digit ‘K’, in the range [A, B].

Note:
 You need to count occurrences at every place ...read more
View 3 more answers
Q2. Arithmetic Operators

Given an arithmetic expression ‘EXP’ containing integer values separated by any of the three operators ‘ + ’, ‘ - ’ and ‘ * ’. You need to place parentheses in the given expression such that...read more

View 3 more answers
Q3. Kth largest element

Ninja loves playing with numbers. One day Alice gives him some numbers and asks him to find the Kth largest value among them.

Input Format:
The first line of input contains an integer ‘T,’ de...read more
View 2 more answers
Q4. Missing Number

You are given an array/list ‘BINARYNUMS’ that consists of ‘N’ distinct strings which represent all integers from 0 to N in binary representation except one integer. This integer between 0 to ‘N’ w...read more

View 4 more answers
Discover Multi Wing interview dos and don'ts from real experiences
Q5. Kruskal’s Minimum Spanning Tree Algorithm

You have been given a connected undirected weighted graph. Your task is to find the weight of the minimum spanning tree of the given graph.

A minimum spanning tree is a ...read more

View 2 more answers
Q6. Find Two Missing Numbers

You are given an array of unique integers where each element in the array is in the range [1, N]. The array has all distinct elements, and the array’s size is (N - 2). Hence, two numbers...read more

View 2 more answers
Are these interview questions helpful?
Q7. Largest Island

You have been given a non-empty grid consisting of only 0s and 1s. You have to find the maximum area of an island in the given grid.

An island is a group of 1s (representing land) connected horizo...read more

View 2 more answers
Q8. Left View Of a Binary Tree

You have been given a binary tree of integers. You are supposed to find the left view of the binary tree. The left view of a binary tree is the set of all nodes that are visible when t...read more

View 2 more answers
Share interview questions and help millions of jobseekers 🌟
Q9. Reverse the String

You are given a string 'STR'. The string contains [a-z] [A-Z] [0-9] [special characters]. You have to find the reverse of the string.

For example:

 If the given string is: STR = "abcde". You h...read more
Add your answer
Q10. Circular Move

You have a robot currently standing at the origin (0, 0) of a two-dimensional grid and facing north direction. You are given a sequence of moves for the robot in the form of a string of size 'N'. Y...read more

Add your answer
Q11. Count Frequency

You are given a string 'S' of length 'N', you need to find the frequency of each of the characters from ‘a’ to ‘z’ in the given string.

Example :

Given 'S' : abcdg Then output will be : 1 1 1 1 0...read more
Add your answer
Q12. Sum Tree

For a given binary tree, convert it to its sum tree. That is, replace every node data with sum of its immediate children, keeping leaf nodes 0. Finally, return its preorder.

For example:
The input for t...read more
Add your answer
Q13. Basic HR Questions

If you won a Rs.10-crore lottery, would you still work?

Give me an example of your creativity.

What makes you happy?

Add your answer
Q14. Number Pattern

Pattern for N = 4

1 23 345 4567 
Input Format :
N (Total no. of rows) 
Output Format :
Pattern in N lines 
Add your answer

Q15. Difference between priority and severity Example of high priority low severity Example of low priority high severity Different apis that you have tested Difference between get, post, put

Ans.

Priority is the importance of fixing a bug, severity is the impact of the bug on the system.

  • High priority, low severity: Spelling mistake in a button label

  • Low priority, high severity: Critical security vulnerability

  • APIs tested: RESTful, SOAP, GraphQL

  • GET: Retrieve data, POST: Create data, PUT: Update data

Add your answer

Q16. Difference between rest and soap api Calling method @Test Difference between before and before method What are annotations What is testng what does it do

Ans.

REST and SOAP APIs are two different types of web service protocols. @Before and @BeforeMethod are annotations used in TestNG for setup tasks.

  • REST API is lightweight and uses standard HTTP methods like GET, POST, PUT, DELETE. SOAP API is more rigid and uses XML for communication.

  • @Before annotation is used in TestNG to run setup tasks before each test method. @BeforeMethod is used to run setup tasks before each test method in a test class.

  • Annotations in Java are markers that p...read more

Add your answer

Q17. What is an Enum? implementation of an Enum

Ans.

An Enum is a data type that consists of a set of named values.

  • Enums are used to define a set of constants that can be used throughout the code.

  • Each value in an Enum is assigned an integer value by default, starting from 0.

  • Enums can also be assigned specific integer values or even string values.

  • Enums can be used in switch statements to handle different cases.

  • Example: enum Color { RED, GREEN, BLUE };

  • Example: enum Status { SUCCESS = 200, ERROR = 400 };

Add your answer

Q18. Find the odd occuring number from array of numbers including even occuring (frequency) numbers.

Ans.

Find the odd occurring number from an array of numbers, including even occurring numbers.

  • Iterate through the array and count the frequency of each number using a hash map.

  • Iterate through the hash map and return the number with an odd frequency.

  • If no number has an odd frequency, return 'No odd occurring number found.'

View 1 answer

Q19. Follow-up to Q3: Find two odd occuring numbers (Eff. Sol: Double Xor method)

Ans.

The double XOR method is used to find two odd occurring numbers in an array.

  • Iterate through the array and perform XOR operation on all elements

  • The result will be the XOR of the two odd occurring numbers

  • Find the rightmost set bit in the result

  • Divide the array into two groups based on whether the corresponding bit is set or not

  • Perform XOR on each group separately to find the two odd occurring numbers

View 1 answer

Q20. Most efficient way to reverse a String of characters

Ans.

The most efficient way to reverse a String of characters is to use StringBuilder's reverse() method.

  • Create a StringBuilder object with the given String as parameter

  • Call the reverse() method on the StringBuilder object

  • Convert the StringBuilder object back to a String using toString() method

Add your answer

Q21. What should be considered for app performance

Ans.

App performance should consider factors like code optimization, network efficiency, memory management, and user experience.

  • Optimizing code for efficiency and speed

  • Minimizing network requests and optimizing data transfer

  • Efficient memory management to prevent crashes and slowdowns

  • Prioritizing user experience for smooth navigation and responsiveness

Add your answer

Q22. What is considered in code review

Ans.

Code review involves checking for code quality, functionality, security, and adherence to coding standards.

  • Checking for code quality and readability

  • Ensuring the code functions as intended

  • Identifying and fixing security vulnerabilities

  • Verifying adherence to coding standards and best practices

  • Providing constructive feedback to the developer

Add your answer

Q23. Java 8 Features?

Ans.

Java 8 introduced several new features including lambda expressions, functional interfaces, streams, and default methods.

  • Lambda expressions allow you to pass functionality as an argument to a method.

  • Functional interfaces have a single abstract method and can be used with lambda expressions.

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

  • Default methods allow interfaces to have method implementations.

  • Example: (1) Lambda expression - (a, b) -> a + ...read more

Add your answer
Contribute & help others!
Write a review
Share interview
Contribute salary
Add office photos

Interview Process at Multi Wing

based on 5 interviews in the last 1 year
Interview experience
3.8
Good
View more
Interview Tips & Stories
Ace your next interview with expert advice and inspiring stories

Top Interview Questions from Similar Companies

4.2
 • 386 Interview Questions
3.9
 • 193 Interview Questions
3.8
 • 142 Interview Questions
3.7
 • 135 Interview Questions
3.7
 • 133 Interview Questions
View all
Top Paxcom India Interview Questions And Answers
Share an Interview
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
70 Lakh+

Reviews

5 Lakh+

Interviews

4 Crore+

Salaries

1 Cr+

Users/Month

Contribute to help millions
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter