Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Motadata Team. If you also belong to the team, you can get access from here

Motadata Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Motadata Senior Implementation Engineer Interview Questions, Process, and Tips for Experienced

Updated 25 Sep 2022

Motadata Senior Implementation Engineer Interview Experiences for Experienced

1 interview found

I applied via Referral and was interviewed before Sep 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 - Technical 

(8 Questions)

  • Q1. What is File System in Linux?
  • Ans. 

    File System in Linux is the way files are organized and stored on a Linux system.

    • File System is responsible for managing files and directories on a Linux system

    • It provides a hierarchical structure for organizing files and directories

    • The root directory is denoted by / and all other directories are subdirectories of the root directory

    • Different types of file systems are supported in Linux such as ext4, NTFS, FAT32, etc.

    • Co...

  • Answered by AI
  • Q2. How to check running process in Linux?
  • Ans. 

    To check running processes in Linux, use the 'ps' command.

    • Open the terminal and type 'ps' followed by any options or arguments.

    • Use 'ps aux' to display all running processes with detailed information.

    • Use 'ps -ef' to display all running processes with full information.

    • Use 'top' command to display real-time information about running processes.

    • Use 'htop' command to display running processes in a more user-friendly way.

    • Use ...

  • Answered by AI
  • Q3. How to check IP in Linux?
  • Ans. 

    To check IP in Linux, use the command 'ifconfig' or 'ip addr show'

    • Open the terminal and type 'ifconfig' or 'ip addr show'

    • Look for the IP address under the network interface section

    • Alternatively, use the command 'hostname -I' to display the IP address only

  • Answered by AI
  • Q4. What is WMI in Windows?
  • Ans. 

    WMI stands for Windows Management Instrumentation, a set of tools used to manage and monitor Windows systems.

    • WMI provides a standardized way for administrators to access and manage system information, configuration data, and performance statistics.

    • It can be used to remotely manage and monitor Windows systems, as well as automate administrative tasks.

    • WMI uses a query language called WQL (WMI Query Language) to retrieve ...

  • Answered by AI
  • Q5. Explain SNMPWALK and all the versions of SNMP
  • Ans. 

    SNMPWALK is a tool used to retrieve information from SNMP-enabled devices. There are three versions of SNMP: SNMPv1, SNMPv2c, and SNMPv3.

    • SNMPWALK is a command-line tool used to retrieve information from SNMP-enabled devices.

    • It works by sending a series of SNMP GETNEXT requests to the device, starting at the root of the MIB tree.

    • SNMPv1 is the original version of SNMP and is the most widely supported. It uses community s...

  • Answered by AI
  • Q6. What are permissions in Linux?
  • Ans. 

    Permissions in Linux determine the access level of users and processes to files and directories.

    • There are three types of permissions: read, write, and execute.

    • Permissions are set for three types of users: owner, group, and others.

    • Permissions can be viewed and modified using the chmod command.

    • Examples of permission settings: 755 (rwxr-xr-x) for directories, 644 (rw-r--r--) for files.

  • Answered by AI
  • Q7. How to change the ownership in Linux?
  • Ans. 

    To change ownership in Linux, use the chown command followed by the new owner and file/directory name.

    • Use the chown command followed by the new owner and file/directory name

    • To change ownership of a directory and its contents, use the -R option

    • To change group ownership, use the chgrp command

  • Answered by AI
  • Q8. How to kill the process in Linux?
  • Ans. 

    To kill a process in Linux, you can use the 'kill' command followed by the process ID (PID) or the 'pkill' command followed by the process name.

    • Use the 'kill' command followed by the PID to terminate a specific process

    • Use the 'pkill' command followed by the process name to kill all processes with that name

    • You can send different signals to the process using the '-s' option with the 'kill' command

    • To forcefully kill a pro...

  • Answered by AI
Round 3 - Business unit 

(1 Question)

  • Q1. How to check IP in Linux?
  • Ans. 

    To check IP in Linux, use the command 'ifconfig' or 'ip addr show'

    • Open the terminal and type 'ifconfig' or 'ip addr show'

    • Look for the IP address under the network interface section

    • Alternatively, use the command 'hostname -I' to display the IP address only

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Motadata Senior Implementation Engineer interview:
  • Linux Administration
  • Network Administration
  • Windows Server
Interview preparation tips for other job seekers - Prepare Linux well
Prepare the basic networking
Prepare about SNMPWALK, WMI, and Windows Remote Management
Keep yourself aware about whatever you've written in your resume

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Referral and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

45 mins, Basic aptitude , comprehension and decision making questions

Round 2 - Technical 

(1 Question)

  • Q1. Questions related to databases, DSA - medium, SQL Queries
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Easy medium to hard medium

Round 2 - Coding Test 

Questions on array , linked list

Round 3 - Technical 

(1 Question)

  • Q1. Oops ,dbms,cn,operating system
Round 4 - HR 

(1 Question)

  • Q1. Easy question of hr round
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Feb 2024.

Round 1 - Aptitude Test 

General Aptitude Test.

Round 2 - One-on-one 

(4 Questions)

  • Q1. One to one discussion about OOPS, Hibernate, Java.
  • Q2. What is one-one mapping.
  • Ans. 

    One-one mapping is a relationship between two sets where each element of one set is associated with exactly one element of the other set.

    • Each element in the first set maps to exactly one element in the second set.

    • No two elements in the first set map to the same element in the second set.

    • Example: Mapping employee IDs to employee names in a database.

  • Answered by AI
  • Q3. Explain Inheritance
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Allows a class to inherit attributes and methods from another class

    • Promotes code reusability and reduces redundancy

    • Creates a parent-child relationship between classes

    • Derived class can override or extend the functionality of the base class

    • Example: Class 'Car' can inherit from class 'Vehicle' and inh...

  • Answered by AI
  • Q4. Select 2nd top salary.
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Easy test on 2 ques of coding

Round 2 - Technical 

(2 Questions)

  • Q1. Java and AQL ques
  • Q2. Aptitude and DSA

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not join this company theh will put you anywhere without even discussing. Waste of company no hike you will get no work life balance. They do nothing for employees and they just want work.
Interview experience
4
Good
Difficulty level
-
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Technical 

(1 Question)

  • Q1. Quite lengthy interview with many fresher Java question and logical questions. Overall was good experience.
Round 2 - HR 

(1 Question)

  • Q1. Easy interview with no hard questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Aug 2024.

Round 1 - Aptitude Test 

Aptitude test(Quants+Reasoning+English)

Round 2 - Coding Test 

1 Beginner+ 1 Intermediate

Round 3 - Technical 

(2 Questions)

  • Q1. Technical CSE & IT Questions
  • Q2. HR Round

I applied via Campus Placement and was interviewed in Jun 2022. There were 5 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 

50 mcq were asked in 12 mins. Most of the candidates qualified this round.

Round 3 - Coding Test 

3 coding questions of basic DSA were asked. Also few mcqs from Operating System, Networking and DBMS.

Round 4 - Technical 

(3 Questions)

  • Q1. The technical round was of 40 mins. 3 standard questions from DSA were asked for which only approach was enough. Questions were from string, array and tree- Rotated string, Lowest common ancestor, etc.
  • Q2. Project related discussion regarding my role in the team.
  • Q3. A few HR questions related to family background. Why not go for higher studies like the rest of my family. Had to convince him that I saw more growth in working for an organisation.
Round 5 - HR 

(1 Question)

  • Q1. My introduction then, standard HR questions like where do i see myself in coming yrs, why do i want to join the company, etc. It lasted 10 mins

Interview Preparation Tips

Topics to prepare for Cogoport Software Engineer interview:
  • DSA
  • DBMS
  • OS
  • Networking
  • Project
Interview preparation tips for other job seekers - Try to present yourself in a confident and straightforward manner. Ask as many questions as possible at the end to convey your eagerness to join the company.
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Oct 2022. 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 

15 minutes test.
50 questions
easy questions
Management , Leadership , Character Type questions

Round 3 - Coding Test 

2 coding questions
resume grilling
easy medium questions

Round 4 - HR 

(2 Questions)

  • Q1. Time management questions
  • Q2. Toughest project you work upon
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. Write a program to reverse a string.
  • Ans. 

    A program to reverse a string

    • Iterate through the string from end to start and append each character to a new string

    • Use built-in functions like reverse() or StringBuilder.reverse() in some programming languages

  • Answered by AI
  • Q2. Difference between arraylist and linkedlitst
  • Ans. 

    ArrayList is a resizable array while LinkedList is a doubly linked list.

    • ArrayList is faster for accessing elements while LinkedList is faster for adding or removing elements.

    • ArrayList uses contiguous memory while LinkedList uses non-contiguous memory.

    • ArrayList is better for random access while LinkedList is better for sequential access.

    • Example: ArrayList - List names = new ArrayList<>(); LinkedList - List names = new L

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on core java concepts like oops, collections and multithreading

Skills evaluated in this interview

Motadata Interview FAQs

How many rounds are there in Motadata Senior Implementation Engineer interview for experienced candidates?
Motadata interview process for experienced candidates usually has 3 rounds. The most common rounds in the Motadata interview process for experienced candidates are Resume Shortlist and Technical.
How to prepare for Motadata Senior Implementation Engineer interview for experienced candidates?
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 Motadata. The most common topics and skills that interviewers at Motadata expect are Computer science, Customer Service, Linux, MPLS and Middleware.
What are the top questions asked in Motadata Senior Implementation Engineer interview for experienced candidates?

Some of the top questions asked at the Motadata Senior Implementation Engineer interview for experienced candidates -

  1. How to check running process in Lin...read more
  2. How to kill the process in Lin...read more
  3. How to change the ownership in Lin...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Ramco Systems Interview Questions
3.9
 • 64 Interviews
Cogoport Interview Questions
2.9
 • 53 Interviews
Treebo Hotels Interview Questions
3.3
 • 22 Interviews
Simpl Interview Questions
2.9
 • 17 Interviews
KrazyBee Interview Questions
3.7
 • 14 Interviews
View all
Motadata Senior Implementation Engineer Salary
based on 15 salaries
₹4.8 L/yr - ₹11 L/yr
24% less than the average Senior Implementation Engineer Salary in India
View more details

Motadata Senior Implementation Engineer Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

4.8

Skill development

5.0

Work-life balance

4.8

Salary

5.0

Job security

5.0

Company culture

4.8

Promotions

4.1

Work satisfaction

Explore 2 Reviews and Ratings
Software Engineer
18 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Implementation Engineer
15 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

QA Engineer
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Customer Success Engineer
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Motadata with

ManageEngine

1.4
Compare

Nucleus Software Exports

3.5
Compare

Ramco Systems

3.9
Compare

TCS

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