Upload Button Icon Add office photos

Filter interviews by

Mamsys Consultancy Services Interview Questions and Answers

Updated 20 Nov 2023
Popular Designations

6 Interview questions

A Software Developer was asked
Q. Given an array, if the third element is updated, what is the new array and its size?
Ans. 

Updating the third element of an array modifies its content and retains the same size.

  • Identify the original array, e.g., ['apple', 'banana', 'cherry', 'date'].

  • Update the third element: array[2] = 'orange'.

  • The new array becomes ['apple', 'banana', 'orange', 'date'].

  • The size of the array remains 4.

View all Software Developer interview questions
A Software Developer was asked
Q. Can you write an if-else statement using a ternary operator?
Ans. 

The ternary operator is a concise way to perform if-else logic in programming, improving code readability and reducing lines of code.

  • Syntax: condition ? expressionIfTrue : expressionIfFalse;

  • Example: int max = (a > b) ? a : b; // assigns max to a if a is greater than b, otherwise assigns b.

  • Can be nested: int result = (a > b) ? (a > c ? a : c) : (b > c ? b : c); // finds the maximum of three numbers.

  • Usef...

View all Software Developer interview questions
A Quality Analyst was asked
Q. Write a script using Selenium.
Ans. 

Script in Selenium is a set of instructions written in programming language to automate web browser actions.

  • Selenium scripts can be written in various programming languages such as Java, Python, C#, etc.

  • Scripts can be used to automate repetitive tasks such as filling out forms, clicking buttons, etc.

  • Selenium provides various methods and functions to interact with web elements such as findElement(), click(), sendKe...

View all Quality Analyst interview questions
A Quality Analyst was asked
Q. What is SQL?
Ans. 

SQL is a programming language used to manage and manipulate relational databases.

  • SQL stands for Structured Query Language

  • It is used to create, modify, and query databases

  • Common commands include SELECT, INSERT, UPDATE, and DELETE

  • SQL is used in various industries including finance, healthcare, and e-commerce

View all Quality Analyst interview questions
A Quality Analyst was asked
Q. What is Java?
Ans. 

Java is a high-level programming language used for developing applications and software.

  • Java is an object-oriented language

  • It is platform-independent

  • Java code is compiled into bytecode

  • Java Virtual Machine (JVM) executes the bytecode

  • Java is used for developing web applications, mobile applications, desktop applications, and games

View all Quality Analyst interview questions
A Quality Analyst was asked
Q. Joins in sql
Ans. 

Joins in SQL are used to combine data from two or more tables based on a related column between them.

  • There are different types of joins: inner join, left join, right join, and full outer join.

  • Inner join returns only the matching rows from both tables.

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

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

View all Quality Analyst interview questions

Mamsys Consultancy Services Interview Experiences

4 interviews found

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

I applied via Job Fair and was interviewed in May 2023. There were 4 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 - Aptitude Test 

Normal Aptitude test, in this test, these are the topics Number System, Profit loss, Simple and Compound Interest, train problem, age problem, average, probability etc.

Round 3 - Technical 

(2 Questions)

  • Q1. Given an array after that the third element update then what is the new array and what is the size
  • Ans. 

    Updating the third element of an array modifies its content and retains the same size.

    • Identify the original array, e.g., ['apple', 'banana', 'cherry', 'date'].

    • Update the third element: array[2] = 'orange'.

    • The new array becomes ['apple', 'banana', 'orange', 'date'].

    • The size of the array remains 4.

  • Answered by AI
  • Q2. If else using ternary operator.
  • Ans. 

    The ternary operator is a concise way to perform if-else logic in programming, improving code readability and reducing lines of code.

    • Syntax: condition ? expressionIfTrue : expressionIfFalse;

    • Example: int max = (a > b) ? a : b; // assigns max to a if a is greater than b, otherwise assigns b.

    • Can be nested: int result = (a > b) ? (a > c ? a : c) : (b > c ? b : c); // finds the maximum of three numbers.

    • Useful fo...

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. Tell me about your family background, education, why should I hire you.

Interview Preparation Tips

Topics to prepare for Mamsys Consultancy Services Software Developer interview:
  • HR round
  • Technical Skills
  • Resume Based Questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Percentage ,time and work,time and distance sql

Round 2 - Technical 

(1 Question)

  • Q1. Sql related question
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Simple DSA qus related to recursion
Javascript questions and java questions

Round 2 - HR 

(2 Questions)

  • Q1. Normal qus they why you want join the company
  • Q2. Why you are leaving your company

I applied via Recruitment Consultant and was interviewed in Apr 2021. There were 5 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. What is sql
  • Ans. 

    SQL is a programming language used to manage and manipulate relational databases.

    • SQL stands for Structured Query Language

    • It is used to create, modify, and query databases

    • Common commands include SELECT, INSERT, UPDATE, and DELETE

    • SQL is used in various industries including finance, healthcare, and e-commerce

  • Answered by AI
  • Q2. Joins in sql
  • Ans. 

    Joins in SQL are used to combine data from two or more tables based on a related column between them.

    • There are different types of joins: inner join, left join, right join, and full outer join.

    • Inner join returns only the matching rows from both tables.

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

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

  • Answered by AI
  • Q3. What is java
  • Ans. 

    Java is a high-level programming language used for developing applications and software.

    • Java is an object-oriented language

    • It is platform-independent

    • Java code is compiled into bytecode

    • Java Virtual Machine (JVM) executes the bytecode

    • Java is used for developing web applications, mobile applications, desktop applications, and games

  • Answered by AI
  • Q4. Selenium
  • Q5. Script in selenium
  • Ans. 

    Script in Selenium is a set of instructions written in programming language to automate web browser actions.

    • Selenium scripts can be written in various programming languages such as Java, Python, C#, etc.

    • Scripts can be used to automate repetitive tasks such as filling out forms, clicking buttons, etc.

    • Selenium provides various methods and functions to interact with web elements such as findElement(), click(), sendKeys(),...

  • Answered by AI
  • Q6. Managerial situation based

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview is between medium to tough level. If your basic concept are good you can easily crack it

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Mamsys Consultancy Services?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Apr 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - I have visited interview location on morning 7am DLF block Hyderabad. Buy my interview was taken in evening 6:45pm. That was not an interview test it was a patience test.

Interview Questionnaire 

3 Questions

  • Q1. Tell me something about yourself
  • Ans. 

    I am a passionate software developer with 5 years of experience in developing web applications using various technologies.

    • 5 years of experience in software development

    • Proficient in developing web applications

    • Skilled in using various technologies

    • Passionate about coding and problem-solving

  • Answered by AI
  • Q2. What is the difference between encapsulation and polymorphism?
  • Q3. What do you mean by deadlock in OS?
  • Ans. 

    Deadlock is a situation in which two or more processes are unable to proceed because each is waiting for the other to release a resource.

    • Deadlock occurs when two or more processes are stuck in a circular waiting state.

    • It happens when processes compete for resources and each process holds a resource that another process needs.

    • Four necessary conditions for deadlock are mutual exclusion, hold and wait, no preemption, and ...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: We were asked to solve a questionnaire containing 25 questions based on logical reasoning and basic mathematics. We went to the test center in their recruitment center where there were many desktops for the candidates to sit and give the test. At the entrance, they checked the letter we got from them to authenticate us.Then they gave us a login ID and password. Exactly when the test started, the portal became active and we were asked to enter the credentials. I completed the test in half the time as it was pretty easy and straightforward.
Tips: Practice simple aptitude questions for greater speed and accuracy.
Duration: 1 hour
Total Questions: 20

Round: Group Discussion
Experience: Ten candidates who were shortlisted from the written test attended the group discussion. The topic given to us was fairly simple and lucky for me, I used to work as an anchor, and being a strong feminist person, I had a lot of valid points to put forward. I was the one to start the discussion, and I felt I was the best speaker there. The topic was something that I follow regularly, yet I came across a few unique points from the other candidates.
Tips: Improve your English speaking skills. Be assertive and speak concisely.
Duration: 15 minutes

Round: HR Interview
Experience: The interview basically revolved around this one question which had a few follow-up questions, such as who all are there in my family, what are my strengths and weaknesses, and why am I fit for this job.
Tips: Be confident and honest about yourself.

Round: Technical Interview
Experience: I tried to be as calm and confident as possible during the whole of the interview

College Name: Guru Nanak Institute of Technology (GNIT)

Skills evaluated in this interview

Interview Questionnaire 

11 Questions

  • Q1. Print all nodes at a distance k from a given node in binary tree?
  • Q2. RandN function : which generates random number in [1,2,3..N] with equal probability. Given rand5, write a code for rand7 using rand5
  • Ans. 

    Code for rand7 using rand5 function

    • Use rand5 twice to generate a number in [1,25] with equal probability

    • If the number is greater than 21, discard and try again

    • Otherwise, return (number mod 7) + 1

  • Answered by AI
  • Q3. Puzzle: Using all(8,8,3,3) and only operators(*,/,-,+), make 24
  • Q4. How do you implement LRU cache?
  • Ans. 

    LRU cache is implemented using a doubly linked list and a hash map.

    • Create a doubly linked list to keep track of the order of elements in the cache.

    • Create a hash map to store the key-value pairs of the cache.

    • When a new element is added, check if the cache is full. If it is, remove the least recently used element from the linked list and the hash map.

    • When an element is accessed, move it to the front of the linked list to...

  • Answered by AI
  • Q5. Your current project in Company? A lot of questions from CV? Discussion went on for about 15 minutes?
  • Q6. Then had a lot of questions around java script and java. About different design patterns and web services
  • Q7. A lot of questions around java, collections frameworks, multi threading and so on. (This took a good 25-30 minutes )
  • Q8. A strategy question. It would be asked depending on which team you are being interviewed for.Mine was some apple seller problem. Here knowledge of real world scenario helps. Advice is to observe things aro...
  • Q9. Write down function to select pivot element randomly in Quick Sort
  • Ans. 

    Function to randomly select pivot element in Quick Sort

    • Generate a random index within the range of the array

    • Return the element at the randomly generated index as the pivot

  • Answered by AI
  • Q10. He asked me what is a data structure and why do we use one. Explained him. He asked some real life example of stack and queue. All I could gave him was programming examples but when he insisted on real li...
  • Q11. As we were talking very much on each question. He felt like talking more and from tech he went around for some biggest learning from a mistake/biggest achievement of life kind of questions. There were oth...

Interview Preparation Tips

General Tips: I recently interviewed with Goldman Sachs, and had 4 rounds of interview with them at their campus in Bangalore.
Skills: Algorithm, Data structure
College Name: na

Skills evaluated in this interview

Are these interview questions helpful?

I appeared for an interview before Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Timing was around 10am
It was quite a normal online examination kind of environment 
People from the company were there to invigilate 
All were quite nice and helpful in case the exam got stuck

  • Q1. 

    Ninja and Alien Language Order Problem

    An alien dropped its dictionary while visiting Earth. The Ninja wants to determine the order of characters used in the alien language, based on the given list of wor...

  • Ans. 

    Determine the order of characters in an alien language based on a list of words.

    • Create a graph data structure to represent the relationships between characters in the words.

    • Perform a topological sort on the graph to find the order of characters.

    • Return the smallest lexicographical order of characters as the result.

  • Answered by AI
  • Q2. 

    Check Duplicate Within K Distance

    Given an array of integers arr of size N and an integer K, determine if there are any duplicate elements within a distance of K from each other in the array. Return "true...

  • Ans. 

    Check if there are any duplicate elements within a distance of K from each other in the array.

    • Iterate through the array and keep track of the indices of elements using a hashmap.

    • For each element, check if it already exists in the hashmap within distance K.

    • Return true if a duplicate is found within distance K, otherwise return false.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

Timing was 2pm when it started
Interviewer was polite

  • Q1. 

    Kth Largest Element Problem Statement

    Ninja enjoys working with numbers, and Alice challenges him to find the Kth largest value from a given list of numbers.

    Input:

    The first line contains an integer 'T...
  • Ans. 

    The task is to find the Kth largest element in a given list of numbers for each test case.

    • Read the number of test cases 'T'

    • For each test case, read the number of elements 'N' and the Kth largest number to find 'K'

    • Sort the array in descending order and output the Kth element

  • Answered by AI
Round 3 - HR 

Round duration - 20 minutes
Round difficulty - Easy

Timing was 9 am onwards 
Interviewer was good enough

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Developer in DelhiEligibility criteriaAbove 7 CGPA with no pending backlogsWipro Limited interview preparation:Topics to prepare for the interview - Java, C++, DBMS, Data Structures, Dot net, HTML, CSS, JSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Focus on specialization of any one skill and keep a basic knowledge of all the skills you mention in your resume
Tip 2 : Gain confidence in presenting yourself by practicing well before
Tip 3 : Gain a basic knowledge of the company you go for selection

Application resume tips for other job seekers

Tip 1 : Resume should be simple and precise but pretty smart to cover your skills 
Tip 2 : Mention what you really know,no false things

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview in Apr 2017.

Interview Questionnaire 

2 Questions

  • Q1. What is firmware and where it is used?
  • Ans. 

    Firmware is a type of software that is embedded in hardware devices to control their functionality.

    • Firmware is a combination of hardware and software.

    • It is used to control the behavior of hardware devices.

    • Firmware is typically stored in non-volatile memory, such as ROM or flash memory.

    • Examples of devices that use firmware include routers, printers, and digital cameras.

  • Answered by AI
  • Q2. Tell me about yourself only.
  • Ans. 

    I am a passionate software developer with experience in building web applications and solving complex problems.

    • Experienced in programming languages such as Java, JavaScript, and Python

    • Familiar with front-end technologies like HTML, CSS, and React

    • Strong problem-solving skills and ability to work in a team environment

    • Previous projects include developing a customer management system for a small business

  • Answered by AI

Interview Preparation Tips

Round: aptitude
Experience: the test had around 70 questions to be answered in 1 hour
Tips: keep watch on time and be quick enough because each sections has sectional cutoff.

Round: Technical Interview
Experience: the test had around 70 questions to be answered in 1 hour
Tips: keep watch on time and be quick enough because each sections has sectional cutoff.

Round: HR Interview
Experience: they tested my core knowledge and learning skill.
Tips: be strong in your basics.

Skills: Ability To Think Beyond Boundaries
College Name: mnm jec

Skills evaluated in this interview

I appeared for an interview in May 2017.

Interview Preparation Tips

Round: Group Discussion
Duration: 7 hours

College Name: Andhra university

Mamsys Consultancy Services Interview FAQs

How many rounds are there in Mamsys Consultancy Services interview?
Mamsys Consultancy Services interview process usually has 3-4 rounds. The most common rounds in the Mamsys Consultancy Services interview process are Resume Shortlist, Aptitude Test and Technical.
How to prepare for Mamsys Consultancy Services 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 Mamsys Consultancy Services. The most common topics and skills that interviewers at Mamsys Consultancy Services expect are C#, SQL, .Net Core, ASP.Net and Agile.
What are the top questions asked in Mamsys Consultancy Services interview?

Some of the top questions asked at the Mamsys Consultancy Services interview -

  1. Given an array after that the third element update then what is the new array a...read more
  2. If else using ternary operat...read more
  3. What is ...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 3 interview experiences

Difficulty level

Easy 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
WNS Interview Questions
3.3
 • 1.1k Interviews
Coforge Interview Questions
3.3
 • 585 Interviews
IQVIA Interview Questions
3.8
 • 486 Interviews
Atos Interview Questions
3.8
 • 392 Interviews
Goldman Sachs Interview Questions
3.5
 • 390 Interviews
TCE Interview Questions
3.8
 • 265 Interviews
View all

Mamsys Consultancy Services Reviews and Ratings

based on 16 reviews

3.4/5

Rating in categories

3.7

Skill development

3.7

Work-life balance

3.1

Salary

3.5

Job security

3.5

Company culture

3.5

Promotions

3.6

Work satisfaction

Explore 16 Reviews and Ratings
Software Developer
21 salaries
unlock blur

₹3 L/yr - ₹8.4 L/yr

Assistant System Engineer
13 salaries
unlock blur

₹3.5 L/yr - ₹4.5 L/yr

Softwaretest Engineer
6 salaries
unlock blur

₹3 L/yr - ₹5 L/yr

Software Engineer
5 salaries
unlock blur

₹4.8 L/yr - ₹26 L/yr

Software Tester
5 salaries
unlock blur

₹4 L/yr - ₹6 L/yr

Explore more salaries
Compare Mamsys Consultancy Services with

Cognizant

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

Tech Mahindra

3.5
Compare
write
Share an Interview