Upload Button Icon Add office photos

Filter interviews by

Inventum Technologies Technical Support Engineer Interview Questions and Answers

Updated 14 Apr 2024

Inventum Technologies Technical Support Engineer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is SCP in Linux
  • Ans. 

    SCP in Linux stands for Secure Copy Protocol, used to securely transfer files between a local and remote host.

    • SCP is a command-line tool included in most Linux distributions for securely copying files over SSH.

    • It uses the SSH protocol for data transfer and provides encryption and authentication.

    • Syntax: scp [options] [source] [destination]

    • Example: scp file.txt user@remotehost:/path/to/destination

  • Answered by AI
  • Q2. What is the OSI Model?
  • Ans. 

    The OSI Model is a conceptual framework that standardizes the functions of a telecommunication or computing system into seven distinct layers.

    • The OSI Model stands for Open Systems Interconnection Model.

    • It helps in understanding how different networking protocols work together.

    • The seven layers are: Physical, Data Link, Network, Transport, Session, Presentation, and Application.

    • Each layer has specific functions and commu...

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. How to configure the DHCP in Linux
  • Ans. 

    To configure DHCP in Linux, you need to modify the configuration file and restart the DHCP service.

    • Edit the /etc/dhcp/dhcpd.conf file to configure DHCP settings

    • Specify the range of IP addresses to be leased to clients

    • Set the subnet mask, default gateway, DNS servers, and other options

    • Restart the DHCP service after making changes to the configuration file

  • Answered by AI
  • Q2. Prepare about the Hobbies
Round 3 - HR 

(2 Questions)

  • Q1. What are your expectations from the Company?
  • Q2. What are your Qualifications?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for Linux and Networking. In Linux, they are asking about some basic questions like 1. What is SCP, 2. How to configure the DHCP in Linux, 3. What is the OSI Layer? 4. Static Routes in Networking (Don't ask about other routes) and many more basics of Linux and Networking.

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Oct 2018. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Asked me to draw spring mvc architecture and about collection framework.
  • Q2. Asked me to write the logic for pattern.
  • Q3. Asked me on core java.

Interview Preparation Tips

General Tips: be thorough with the core java and good to have knowledge on spring mvc
Skills: Communication
Duration: <1 week

I applied via Company Website and was interviewed before Dec 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Regarding OOPS, wordpress and laravel.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good and I am still working here.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Oct 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 - Coding Test 

Duration is around 1 hour

Round 3 - Technical 

(1 Question)

  • Q1. 1. Basic programming concepts 2. OOP concepts and basic problem solving skills
Round 4 - Technical 

(1 Question)

  • Q1. Programming question
Round 5 - HR 

(1 Question)

  • Q1. 1. Basic questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Second largest number in an array
  • Ans. 

    Find the second largest number in an array of strings.

    • Convert the strings to numbers for comparison.

    • Sort the array in descending order.

    • Return the second element in the sorted array.

  • Answered by AI
  • Q2. Pairs with given sum
  • Ans. 

    Find pairs in an array that sum up to a given target value.

    • Use a hash set to store the difference between the target value and each element in the array.

    • Iterate through the array and check if the current element's complement exists in the hash set.

    • Return the pairs that sum up to the target value.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. OOPS based questions
  • Q2. Basic language based questions
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is single page application
  • Ans. 

    Single page application is a web application that loads a single HTML page and dynamically updates the content as the user interacts with the app.

    • SPA uses AJAX and HTML5 to create fluid and responsive user experience.

    • It eliminates the need for page reloading during use, making it faster and more efficient.

    • Examples include Gmail, Facebook, and Google Maps.

  • Answered by AI
  • Q2. What is state management
  • Ans. 

    State management is the process of managing the state of an application, including data flow, user interface updates, and user interactions.

    • State management involves storing and updating the state of an application to ensure data consistency.

    • It helps in managing user interface updates based on changes in the application state.

    • State management is crucial for handling user interactions and maintaining a seamless user exp...

  • Answered by AI

Skills evaluated in this interview

I applied via Campus Placement

Round 1 - Aptitude Test 

In this round you have to clear Aptitude and Basic Coding

Round 2 - Coding Test 

It is pure coding test which is conduct on hacker rank platform. You have to complete 4 question(1 easy + 2 medium + 1 hard)

Round 3 - Technical 

(2 Questions)

  • Q1. Coding question base on Sorting and Array
  • Q2. Some of theory question base on your Project technology and DSA
Round 4 - HR 

(1 Question)

  • Q1. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Improve your basic concepts and coding skills.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Oct 2022. 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 

(1 Question)

  • Q1. Find the duplicate items in the array.
  • Ans. 

    Find duplicate items in array of strings.

    • Iterate through array and store each item in a hash set.

    • If item already exists in hash set, it is a duplicate.

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Javascript basics questions

Skills evaluated in this interview

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

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. Questions on dsa, 2 medium and 1 easy level.
  • Q2. Questions related to the projects.

Inventum Technologies Interview FAQs

How many rounds are there in Inventum Technologies Technical Support Engineer interview?
Inventum Technologies interview process usually has 3 rounds. The most common rounds in the Inventum Technologies interview process are Technical, One-on-one Round and HR.
How to prepare for Inventum Technologies Technical Support Engineer 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 Inventum Technologies. The most common topics and skills that interviewers at Inventum Technologies expect are CCNA, RHCE, Appliances, Centos and DNS.
What are the top questions asked in Inventum Technologies Technical Support Engineer interview?

Some of the top questions asked at the Inventum Technologies Technical Support Engineer interview -

  1. How to configure the DHCP in Li...read more
  2. What is the OSI Mod...read more
  3. What is SCP in Li...read more

Tell us how to improve this page.

Inventum Technologies Technical Support Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Webdew Interview Questions
4.4
 • 106 Interviews
HyScaler Interview Questions
4.5
 • 92 Interviews
Quantsapp Interview Questions
2.8
 • 35 Interviews
Appsierra Interview Questions
4.4
 • 31 Interviews
View all
Inventum Technologies Technical Support Engineer Salary
based on 9 salaries
₹2.4 L/yr - ₹7.5 L/yr
14% less than the average Technical Support Engineer Salary in India
View more details

Inventum Technologies Technical Support Engineer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

3.0

Skill development

1.0

Work-life balance

1.0

Salary

1.0

Job security

2.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
30 salaries
unlock blur

₹3.4 L/yr - ₹9.8 L/yr

Senior Software Engineer
20 salaries
unlock blur

₹8 L/yr - ₹19 L/yr

Software Developer
18 salaries
unlock blur

₹4.8 L/yr - ₹9 L/yr

Technical Support Engineer
9 salaries
unlock blur

₹2.4 L/yr - ₹7.5 L/yr

Senior Software Developer
7 salaries
unlock blur

₹13 L/yr - ₹22 L/yr

Explore more salaries
Compare Inventum Technologies with

Accel Frontline

4.0
Compare

Northcorp Software

4.3
Compare

Elentec Power India (EPI) Pvt. Ltd.

3.7
Compare

HyScaler

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