Upload Button Icon Add office photos

Magnon Solutions

Compare button icon Compare button icon Compare

Filter interviews by

Magnon Solutions Interview Questions and Answers

Updated 3 May 2022
Popular Designations

11 Interview questions

A Linux System Administrator was asked
Q. How do you set permissions on a directory?
Ans. 

To set permissions in a directory, use the chmod command followed by the desired permission code.

  • Use the chmod command followed by the permission code (e.g. chmod 755 directory_name)

  • The permission code consists of three digits, each representing the permission for owner, group, and others respectively

  • The digits are calculated by adding the values of the desired permissions (read=4, write=2, execute=1)

  • For example, ...

View all Linux System Administrator interview questions
A Linux System Administrator was asked
Q. How do you kill a process in RHEL 7.2?
Ans. 

To kill a process in RHEL 7.2, use the 'kill' command followed by the process ID.

  • Identify the process ID using 'ps' command

  • Use 'kill' command followed by the process ID to terminate the process

  • Use 'kill -9' command to force kill the process if it doesn't respond to regular kill command

View all Linux System Administrator interview questions
A Linux System Administrator was asked
Q. How do you install packages in RHEL?
Ans. 

To install packages in RHEL, use the yum package manager.

  • Open the terminal and log in as root or use sudo

  • Use the command 'yum install package_name' to install a package

  • Use 'yum search keyword' to search for a package

  • Use 'yum update' to update all installed packages

  • Use 'yum remove package_name' to remove a package

View all Linux System Administrator interview questions
A Linux System Administrator was asked
Q. What is the difference between yum and wget?
Ans. 

yum is a package manager for RPM-based Linux distributions, while wget is a command-line tool for downloading files from the internet.

  • yum is used for installing, updating, and removing packages on a system

  • wget is used for downloading files from the internet, including packages

  • yum uses repositories to manage packages, while wget can download files from any URL

  • yum can resolve dependencies automatically, while wget d...

View all Linux System Administrator interview questions
A Linux System Administrator was asked
Q. How do you configure a local repository in RHEL 7.2?
Ans. 

To add a local repo in RHEL 7.2, create a .repo file in /etc/yum.repos.d/ directory.

  • Create a .repo file in /etc/yum.repos.d/ directory

  • Add the necessary details like name, baseurl, enabled, gpgcheck, etc. in the .repo file

  • Save the file and run 'yum clean all' command to clear the cache

  • Run 'yum repolist' command to verify if the local repo is added successfully

View all Linux System Administrator interview questions
A Linux System Administrator was asked
Q. What is cron tab and how do you set it up?
Ans. 

Cron tab is a time-based job scheduler in Linux used to automate repetitive tasks. It runs in the background and executes commands at specified intervals.

  • Cron tab is configured using the 'crontab' command

  • Each user has their own crontab file located in /var/spool/cron/crontabs/

  • The syntax for setting up a cron job is: * * * * * command-to-be-executed

  • The five asterisks represent the minute, hour, day of the month, mo...

View all Linux System Administrator interview questions
Be interview-ready. Browse the most asked HR questions.
illustration image
A Linux System Administrator was asked
Q. What is the difference between RHEL and CentOS?
Ans. 

RHEL is a commercial distribution with paid support, while CentOS is a free, community-driven distribution.

  • RHEL is developed by Red Hat and requires a paid subscription for support and updates.

  • CentOS is a community-driven distribution that is free to use and receives updates from the community.

  • Both distributions are based on the same source code and are binary compatible.

  • CentOS is often used as a free alternative ...

View all Linux System Administrator interview questions
Are these interview questions helpful?
A Linux System Administrator was asked
Q. How do you configure an Apache server in Red Hat 7.9?
Ans. 

To configure Apache server in Red Hat 7.9, follow these steps:

  • Install Apache using yum package manager

  • Start Apache service and enable it to start at boot

  • Configure firewall to allow HTTP traffic

  • Create virtual hosts for multiple websites

  • Configure SSL/TLS encryption for secure connections

View all Linux System Administrator interview questions
A Linux System Administrator was asked
Q. How do you create an LVM partition?
Ans. 

To create LVM partition, first create physical volumes, then create volume group and finally create logical volumes.

  • Use pvcreate command to create physical volumes

  • Use vgcreate command to create volume group

  • Use lvcreate command to create logical volumes

  • Use mkfs command to create file system on logical volumes

View all Linux System Administrator interview questions
A Linux System Administrator was asked
Q. What is the use of the lsblk command in RHEL?
Ans. 

lsblk command is used to list block devices in RHEL.

  • Displays information about all available or the specified block devices.

  • Shows the device name, size, mount point, and file system type.

  • Can be used to identify unmounted disks or partitions.

  • Can also be used to check the status of a disk or partition.

  • Example: lsblk -a -o NAME,SIZE,MOUNTPOINT,FSTYPE

View all Linux System Administrator interview questions

Magnon Solutions Interview Experiences

2 interviews found

I applied via Referral and was interviewed in Apr 2022. There was 1 interview round.

Round 1 - One-on-one 

(11 Questions)

  • Q1. How to configure Apache server in red hat 7.9
  • Ans. 

    To configure Apache server in Red Hat 7.9, follow these steps:

    • Install Apache using yum package manager

    • Start Apache service and enable it to start at boot

    • Configure firewall to allow HTTP traffic

    • Create virtual hosts for multiple websites

    • Configure SSL/TLS encryption for secure connections

  • Answered by AI
  • Q2. How to set permission in directly
  • Q3. How to create LVM partision
  • Ans. 

    To create LVM partition, first create physical volumes, then create volume group and finally create logical volumes.

    • Use pvcreate command to create physical volumes

    • Use vgcreate command to create volume group

    • Use lvcreate command to create logical volumes

    • Use mkfs command to create file system on logical volumes

  • Answered by AI
  • Q4. What is use for lsblk command in rhel
  • Ans. 

    lsblk command is used to list block devices in RHEL.

    • Displays information about all available or the specified block devices.

    • Shows the device name, size, mount point, and file system type.

    • Can be used to identify unmounted disks or partitions.

    • Can also be used to check the status of a disk or partition.

    • Example: lsblk -a -o NAME,SIZE,MOUNTPOINT,FSTYPE

  • Answered by AI
  • Q5. How to create blank file in rhel
  • Ans. 

    To create a blank file in RHEL, you can use the 'touch' command.

    • Open the terminal in RHEL.

    • Use the 'touch' command followed by the desired file name to create a blank file.

    • For example, to create a file named 'example.txt', you would run: touch example.txt

    • The 'touch' command can also be used to update the timestamp of an existing file.

  • Answered by AI
  • Q6. How to install packages in rhel
  • Ans. 

    To install packages in RHEL, use the yum package manager.

    • Open the terminal and log in as root or use sudo

    • Use the command 'yum install package_name' to install a package

    • Use 'yum search keyword' to search for a package

    • Use 'yum update' to update all installed packages

    • Use 'yum remove package_name' to remove a package

  • Answered by AI
  • Q7. Diffrence between yum vs weget
  • Ans. 

    yum is a package manager for RPM-based Linux distributions, while wget is a command-line tool for downloading files from the internet.

    • yum is used for installing, updating, and removing packages on a system

    • wget is used for downloading files from the internet, including packages

    • yum uses repositories to manage packages, while wget can download files from any URL

    • yum can resolve dependencies automatically, while wget does n...

  • Answered by AI
  • Q8. Entry of local repo in rhel 7.2
  • Ans. 

    To add a local repo in RHEL 7.2, create a .repo file in /etc/yum.repos.d/ directory.

    • Create a .repo file in /etc/yum.repos.d/ directory

    • Add the necessary details like name, baseurl, enabled, gpgcheck, etc. in the .repo file

    • Save the file and run 'yum clean all' command to clear the cache

    • Run 'yum repolist' command to verify if the local repo is added successfully

  • Answered by AI
  • Q9. What is cron tab & how to setup
  • Ans. 

    Cron tab is a time-based job scheduler in Linux used to automate repetitive tasks. It runs in the background and executes commands at specified intervals.

    • Cron tab is configured using the 'crontab' command

    • Each user has their own crontab file located in /var/spool/cron/crontabs/

    • The syntax for setting up a cron job is: * * * * * command-to-be-executed

    • The five asterisks represent the minute, hour, day of the month, month, ...

  • Answered by AI
  • Q10. Diffrence between rhel vs centos
  • Ans. 

    RHEL is a commercial distribution with paid support, while CentOS is a free, community-driven distribution.

    • RHEL is developed by Red Hat and requires a paid subscription for support and updates.

    • CentOS is a community-driven distribution that is free to use and receives updates from the community.

    • Both distributions are based on the same source code and are binary compatible.

    • CentOS is often used as a free alternative to RH...

  • Answered by AI
  • Q11. How to kill process in rhel 7.2

Interview Preparation Tips

Interview preparation tips for other job seekers - Please read basic & some advanced of rhel & CentOS before scheduling interviews.

Skills evaluated in this interview

I applied via Referral and was interviewed before Mar 2021. There were 3 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 - HR 

(4 Questions)

  • Q1. Tell me about yourself.
  • Q2. What are your salary expectations?
  • Q3. Share details of your previous job.
  • Q4. Why are you looking for a change?
Round 3 - Technical 

(2 Questions)

  • Q1. Tell me about a key project executed that was 360-degree and digital-focused?
  • Q2. What were the key decisions taken for your team to enhance team stability?

Interview Preparation Tips

Interview preparation tips for other job seekers - Ensure you focus on larger business points rather than digging into details. Keep a larger focus on how you manage P&L and key decisions delivering on revenue generation for the agency.

Top trending discussions

View All
Interview Hub
1w
a team lead
FeedCard Image
Got a question about Magnon Solutions?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Jul 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions from SQL, Python, Excel, Tableau and from my Projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with your projects properly
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. About datorama explain how it works
  • Ans. 

    Datorama is a marketing intelligence platform that integrates data from various sources for analysis and visualization.

    • Data Integration: Datorama connects to multiple data sources like Google Analytics, Salesforce, and social media platforms.

    • Data Harmonization: It standardizes data formats and metrics, allowing for consistent analysis across different datasets.

    • Visualization: Users can create customizable dashboards to ...

  • Answered by AI
  • Q2. More about digital marketing
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Difference between union and union all in SQL?
  • Q2. How to show top 5 in pandas?
  • Ans. 

    To show top 5 in pandas, use the nlargest() function.

    • Use the nlargest() function with the 'n' parameter set to 5 to get the top 5 values in a pandas DataFrame.

    • For example: df['column_name'].nlargest(5) will return the top 5 values in the specified column.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. If we have 3 numerical columns, which chart is a better representation these column?
  • Ans. 

    A scatter plot is a better representation for 3 numerical columns.

    • Use a scatter plot to show the relationship between the numerical columns.

    • Scatter plots are effective for visualizing correlations and patterns in data.

    • Each point on the plot represents a data point with values from all 3 columns.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Omnicom Media Group Data Analyst interview:
  • SQL Server
  • Pandas
  • Power Bi

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
  • Q1. Tell me about yourself.
  • Q2. What are your career goals?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

HackerRank Test, basic questions related to the profile.

Round 2 - Technical 

(1 Question)

  • Q1. Coding Interview with the team manager
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
No response

I applied via LinkedIn and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What are synthetic Events?
  • Q2. What is event bubbling?

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Questions on vlook up, h-look up, pivot and if else condition
  • Q2. You must know how to use vlook up, h-look up and if-else condition
Round 2 - Assignment 

Excel file was give, used sumifs, countifs , index match formulas

Interview Preparation Tips

Interview preparation tips for other job seekers - Just learn the excel famous questions and concept like look up, index match, nested if, concate function etc
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is invoke controller?
  • Ans. 

    Invoke controller is a component in a software application that manages the flow of requests and responses between the user interface and the backend services.

    • Manages the communication between user interface and backend services

    • Handles the routing of requests to appropriate functions or methods

    • Coordinates the flow of data and actions within the application

  • Answered by AI
  • Q2. What is facade in laravel?
  • Ans. 

    Facade in Laravel is a design pattern that provides a simple interface to a complex subsystem.

    • Facade provides a static interface to classes that are available in the application's service container.

    • It is used to simplify the usage of complex classes by providing a simpler interface.

    • Facade allows you to access Laravel's features without needing to instantiate objects or use dependency injection.

    • Example: The Auth facade ...

  • Answered by AI

Skills evaluated in this interview

Magnon Solutions Interview FAQs

How many rounds are there in Magnon Solutions interview?
Magnon Solutions interview process usually has 2 rounds. The most common rounds in the Magnon Solutions interview process are Resume Shortlist, HR and Technical.
How to prepare for Magnon Solutions 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 Magnon Solutions. The most common topics and skills that interviewers at Magnon Solutions expect are Key Account Management, Digital Marketing, Advertising, Client Management and Content Writing.
What are the top questions asked in Magnon Solutions interview?

Some of the top questions asked at the Magnon Solutions interview -

  1. How to configure Apache server in red hat ...read more
  2. What is use for lsblk command in r...read more
  3. How to create blank file in r...read more
What are the most common questions asked in Magnon Solutions HR round?

The most common HR questions asked in Magnon Solutions interview are -

  1. Why are you looking for a chan...read more
  2. What are your salary expectatio...read more
  3. Share details of your previous j...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

3 Minds Digital Interview Questions
4.3
 • 73 Interviews
Wikiprospects Interview Questions
4.7
 • 35 Interviews
EvolutionCo Interview Questions
4.0
 • 27 Interviews
Moris Media Interview Questions
4.3
 • 26 Interviews
IPG Mediabrands Interview Questions
3.4
 • 19 Interviews
Xapads Media Interview Questions
4.6
 • 15 Interviews
Omnicom Media Group Interview Questions
3.1
 • 15 Interviews
Cash Ur Drive Marketing Interview Questions
4.4
 • 13 Interviews
Amitoje India Interview Questions
4.1
 • 12 Interviews
Z1 Tech Interview Questions
4.1
 • 11 Interviews
View all

Magnon Solutions Reviews and Ratings

based on 21 reviews

2.7/5

Rating in categories

2.7

Skill development

2.8

Work-life balance

1.9

Salary

2.3

Job security

2.7

Company culture

1.9

Promotions

2.2

Work satisfaction

Explore 21 Reviews and Ratings
Manager
5 salaries
unlock blur

₹4.9 L/yr - ₹12.3 L/yr

Assistant Manager
4 salaries
unlock blur

₹3.3 L/yr - ₹7.5 L/yr

Senior Associate
4 salaries
unlock blur

₹3.6 L/yr - ₹5.4 L/yr

Key Account Manager
4 salaries
unlock blur

₹5.7 L/yr - ₹11.3 L/yr

Accounts Manager
4 salaries
unlock blur

₹5.7 L/yr - ₹9.1 L/yr

Explore more salaries
Compare Magnon Solutions with

Omnicom Media Group

3.1
Compare

Z1 Tech

4.1
Compare

7Search PPC

4.8
Compare

Bikayi

2.9
Compare
write
Share an Interview