Upload Button Icon Add office photos

Filter interviews by

MXC Solutions India Interview Questions and Answers

Updated 6 Feb 2024

MXC Solutions India Interview Experiences

Popular Designations

2 interviews found

Mca Trainee Interview Questions & Answers

user image Biswajit Murmu

posted on 6 Feb 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Why you want job ?
  • Q2. Why should we hired you?

Interview Questionnaire 

1 Question

  • Q1. Iam searching for jobs

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Referral and was interviewed in Dec 2024. There were 4 interview rounds.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Difference between Lag & Lead with an example
  • Q2. Example explaining Rank,Dense_Rank,Row_Number
  • Q3. Business question around customer funneling.
  • Q4. Some technical questions around marketing campaigns(utm_source,campaign_id,etc.)
Round 2 - One-on-one 

(2 Questions)

  • Q1. Questions around customer funneling(Ideal and non-ideal)
  • Q2. Some other business related problems and situational questions.
Round 3 - One-on-one 

(1 Question)

  • Q1. Behavioural and resume basaed questions with some situational questions.
Round 4 - HR 

(1 Question)

  • Q1. Behavioral questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - HR had taken all my documents and confirmed that she will close the offer within 2-3 days but even after 1 week and multiple follow-ups she started ignoring my mails and messages and did not give any update.
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

You will be required to complete a machine test.

Round 2 - Group Discussion 

They will interrogate you about your resume.

Round 3 - HR 

(1 Question)

  • Q1. The HR will discuss the salary with you.

Interview Preparation Tips

Interview preparation tips for other job seekers - My experience at oodles technologies, Sector 48, Sohna road, Gurugram
I had a disappointing experience with Oodles Technologies, and I would advise potential candidates to carefully consider the company before applying. When I was hired, I was excited about the opportunity, but it quickly became clear that things were not as expected. Despite being hired for a specific role based on my experience, I was treated as a fresher with little regard for my background or skills. This undermined my professional growth and left me feeling underappreciated. Additionally, the company provided outdated equipment, which created numerous challenges. The laptop I was given was old and, when it faced technical issues, I was held personally responsible for any repairs or replacements. This added unnecessary stress and cost.
Another significant concern was the mismatch between the job role I was hired for and the tasks assigned to me.
Instead of working within my area of expertise, I was given responsibilities from a completely different field, which not only affected my performance but also made the work experience frustrating. Finally, the internal dynamics within the company seemed to be marred by office politics.
Decisions appeared to be made arbitrarily, and it felt as though there was a lack of transparency and fairness. Ultimately, I was let go without clear communication or justification.

In conclusion, I strongly recommend that job seekers exercise caution when considering Oodles Technologies.
Based on my experience, the company may not offer the supportive, growth-oriented environment that many professionals expect.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral

Round 1 - Coding Test 

Print a specific pattern using any programming language.

Round 2 - One-on-one 

(3 Questions)

  • Q1. What is a class in Object-Oriented Programming (OOP)?
  • Ans. 

    A class in OOP is a blueprint for creating objects, defining their properties and behaviors.

    • Classes are templates for creating objects in OOP

    • They define the properties (attributes) and behaviors (methods) of objects

    • Objects are instances of classes, each with its own unique data

    • Inheritance allows classes to inherit properties and behaviors from other classes

    • Encapsulation ensures that the data is hidden and can only be a...

  • Answered by AI
  • Q2. What is the difference between an abstract class and an interface?
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructors, fields, and methods, while interface cannot have any implementation.

    • A class can only extend one abstract class, but can implement multiple interfaces.

    • Abstract classes are used to define common characteristics of subclasses, while interfaces are used to define contracts for...

  • Answered by AI
  • Q3. What is joining and creating an inner join query?
  • Ans. 

    Joining is combining data from two or more tables based on a related column, while an inner join query retrieves only the matching records.

    • Joining is used to combine data from multiple tables in a database.

    • Inner join query retrieves only the records that have matching values in both tables.

    • Syntax for inner join: SELECT columns FROM table1 INNER JOIN table2 ON table1.column = table2.column;

    • Example: SELECT orders.order_i...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Webkul Software Associate Software Engineer interview:
  • OOPS
  • Baisc Of any of Programing
  • MySQL
  • joins
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. What is runtime polymorphism, and can you provide a code example to illustrate it?
  • Q2. Streams in java
  • Q3. How do we create threads in Java, and how do we invoke them?
  • Q4. What is a Rest Template and how is it used?
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. What is CICD ?
  • Ans. 

    CICD stands for Continuous Integration and Continuous Deployment. It is a software development practice where code changes are automatically built, tested, and deployed.

    • Automates the process of integrating code changes into a shared repository

    • Automatically builds and tests the code to ensure it is functional

    • Automatically deploys the code to production or staging environments

    • Helps in detecting and fixing integration err

  • Answered by AI
  • Q2. How to create image out of running container ?
  • Ans. 

    To create an image out of a running container, you can use the 'docker commit' command.

    • Use 'docker commit' command to create an image from a running container

    • Syntax: docker commit [OPTIONS] CONTAINER [REPOSITORY[:TAG]]

    • Example: docker commit container_id repository_name:tag

  • Answered by AI
  • Q3. What is the difference between docker add and copy command?
  • Ans. 

    Docker add command can fetch a file from a URL and add it to the image, while copy command copies files from the host machine to the image.

    • Docker add command can fetch files from URLs and add them to the image

    • Copy command copies files from the host machine to the image

    • Add command can also automatically extract compressed files during the build process

    • Copy command is more commonly used for copying local files

  • Answered by AI
  • Q4. What is freestyle project and pipeline ?
  • Ans. 

    A freestyle project is a type of project in Jenkins that allows users to configure the build process in any way they want. A pipeline is a set of automated steps that define the process for building, testing, and deploying code.

    • Freestyle project in Jenkins allows users to configure build process manually

    • Pipeline in Jenkins is a set of automated steps for building, testing, and deploying code

    • Freestyle projects are more ...

  • Answered by AI
  • Q5. What is the difference between docker swarm and docker compose ?
  • Ans. 

    Docker Swarm is used for orchestrating multiple Docker containers across multiple hosts, while Docker Compose is used for defining and running multi-container Docker applications.

    • Docker Swarm is a container orchestration tool that allows you to manage a cluster of Docker hosts.

    • Docker Compose is a tool for defining and running multi-container Docker applications.

    • Docker Swarm is used for scaling and managing a cluster of...

  • Answered by AI
Round 2 - Technical 

(5 Questions)

  • Q1. What is the project you worked can you plz explain?
  • Q2. What is VPC ?
  • Ans. 

    VPC stands for Virtual Private Cloud, a virtual network dedicated to a single organization's resources in the cloud.

    • Allows organizations to have control over their virtual network environment

    • Enables customization of network configuration

    • Provides security by allowing isolation of resources

    • Can connect to on-premises data centers or other VPCs using VPN or Direct Connect

  • Answered by AI
  • Q3. What is CICD pipeline and its stages ?
  • Ans. 

    CICD pipeline is a process that automates the building, testing, and deployment of software.

    • Continuous Integration (CI) - code changes are integrated into a shared repository multiple times a day.

    • Continuous Testing - automated tests are run to ensure code quality.

    • Continuous Deployment - code changes are automatically deployed to production.

    • Stages include: build, test, deploy, and monitor.

    • Tools like Jenkins, GitLab, and

  • Answered by AI
  • Q4. VPC peering concept ?
  • Ans. 

    VPC peering allows connecting two VPCs to communicate using private IP addresses.

    • VPC peering enables instances in different VPCs to communicate as if they are within the same network.

    • Traffic between peered VPCs stays within the private IP space and does not traverse the internet.

    • VPC peering does not involve a gateway, VPN, or direct connection.

    • Both VPCs must have non-overlapping IP ranges for successful peering.

    • Example...

  • Answered by AI
  • Q5. Whole concept of VPC , subnet and route table and NAT gateway ?
  • Ans. 

    VPC is a virtual private cloud that allows you to create isolated networks within the cloud environment. Subnets are subdivisions of a VPC, route tables define how traffic is directed within the VPC, and NAT gateway allows instances in a private subnet to access the internet.

    • VPC is a virtual private cloud that provides a logically isolated section of the AWS Cloud where you can launch resources.

    • Subnets are subdivisions...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Basics Quesestions?

Interview Preparation Tips

Interview preparation tips for other job seekers - I joined but Toxic environment , Don't get Technical support they work for Product and doesn't have any proper documentation Not good at all .

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Related to inside sales and linkedin sales navigator
  • Q2. Regarding how you send cold emails how you structured your email and validation of emails
Round 2 - One-on-one 

(1 Question)

  • Q1. Same as above but little more deep question related to outbound sales like how you approach relevant prospects how you maintain your database

Interview Preparation Tips

Interview preparation tips for other job seekers - You should have proper knowledge about what you have did in past related to your job duties and responsibilities
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via campus placement at Symbiosis Centre For Management and HRD (SCMHRD)

Round 1 - Aptitude Test 

Gamification round Game gamification

Round 2 - Group Discussion 

Data analytics related topic

Round 3 - Technical 

(1 Question)

  • Q1. Data data data related
Round 4 - Technical 

(1 Question)

  • Q1. Case study related questions
Round 5 - HR 

(1 Question)

  • Q1. Hr related questions culture fit questions
Round 6 - Technical 

(1 Question)

  • Q1. Supply chain related questions

Intern Interview Questions & Answers

ClearTax user image arunvisakh sk

posted on 19 Nov 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via Campus Placement

Round 1 - Coding Test 

Coding test based on leet code 1 hard(mountain array)and 1 easy(balance the parentheses)

Round 2 - Technical 

(2 Questions)

  • Q1. Hiring manager round- resume based
  • Q2. Basics, puzzles like find the number that should fill in the blank etc

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewers were decent but The on-boarding was poorly taken care of by the hr team specifically a lady. I had to call her multiple times to ask about my result as even after weeks they didn't publish the result and kept me in the dark. And finally called me back one-day and said there was an opening as an intern although it was initially said to be a full time offer in the SDET Team. Also I was not provided with any of the complementary amenities associated with shifting like a temporary stay which my colleagues got and when I enquired she said I had to inform her a week before while she just informed me abt the offer just the day before:).

MXC Solutions India Interview FAQs

How many rounds are there in MXC Solutions India interview?
MXC Solutions India interview process usually has 1 rounds. The most common rounds in the MXC Solutions India interview process are HR.
How to prepare for MXC Solutions India 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 MXC Solutions India. The most common topics and skills that interviewers at MXC Solutions India expect are AWS, CSS, PHP, Front End and Github.

Tell us how to improve this page.

People are getting interviews through

based on 1 MXC Solutions India interview
WalkIn
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

MAQ Software Interview Questions
2.0
 • 96 Interviews
Softenger Interview Questions
4.2
 • 50 Interviews
Webkul Software Interview Questions
3.7
 • 50 Interviews
DataMetica Interview Questions
3.6
 • 43 Interviews
View all

MXC Solutions India Reviews and Ratings

based on 43 reviews

4.5/5

Rating in categories

4.2

Skill development

4.4

Work-Life balance

4.2

Salary & Benefits

4.4

Job Security

4.3

Company culture

4.3

Promotions/Appraisal

4.3

Work Satisfaction

Explore 43 Reviews and Ratings
Assistant Manager
5 salaries
unlock blur

₹2.2 L/yr - ₹4.5 L/yr

Regional Manager
5 salaries
unlock blur

₹6.6 L/yr - ₹8.1 L/yr

Senior Engineer
4 salaries
unlock blur

₹4.5 L/yr - ₹7.4 L/yr

Accounts Manager
4 salaries
unlock blur

₹3.3 L/yr - ₹4 L/yr

Operations Executive
4 salaries
unlock blur

₹2 L/yr - ₹4.4 L/yr

Explore more salaries
Compare MXC Solutions India with

Tekwissen

4.9
Compare

Collabera Technologies

3.5
Compare

Softenger

4.2
Compare

XcelServ Solutions

4.5
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