Upload Button Icon Add office photos

Filter interviews by

Menlo Security Inc Technical Support Engineer Interview Questions and Answers

Updated 25 Sep 2024

Menlo Security Inc Technical Support Engineer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. What is your past experience
  • Ans. 

    I have 3 years of experience providing technical support for software and hardware issues in a corporate environment.

    • Provided troubleshooting and resolution for software and hardware issues

    • Assisted users with setting up and configuring new devices

    • Managed ticketing system to track and prioritize support requests

  • Answered by AI
  • Q2. Why are you joining Menlo security
  • Ans. 

    I am joining Menlo Security because of their innovative approach to cybersecurity and their strong reputation in the industry.

    • Impressed by Menlo Security's innovative security solutions

    • Strong reputation in the cybersecurity industry

    • Excited about the opportunity to work with cutting-edge technology

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Technical questions regarding proxy
  • Q2. SSL ,DNS,proxy related issues

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

First Round was assessment test round, Which includes English + Cognitive questions

Round 2 - Technical 

(1 Question)

  • Q1. As I have completed aeronautical engineering. They asked me basic questions related to aeronautics. What are the primary part of the airplane?
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Communication round 

(1 Question)

  • Q1. Brief self introduction
Round 2 - Technical 

(1 Question)

  • Q1. For fresher, How do you troubleshoot when user is getting a blue screen error?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Sql query , database connectivity,
  • Q2. Unix commands , grep, find, sed
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Amrita Vishwa Vidyapeetham, Amritapuri Campus and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Hackerrank medium - hard lavel questions

Round 2 - Technical 

(2 Questions)

  • Q1. DSA question of finding the largest element and it's occurrence. Along with time complexity.
  • Q2. OOP, DBMS and all fundamentals
Round 3 - HR 

(2 Questions)

  • Q1. Project related question and why IBM?
  • Q2. Explain the issues handled in previous project

Interview Preparation Tips

Topics to prepare for IBM Technical Support Engineer interview:
  • DBMS
  • DSA
  • OOP
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Sql constraint , primary key, unique and foreign key

Interview Preparation Tips

Interview preparation tips for other job seekers - Good
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - HR 

(2 Questions)

  • Q1. Tell Me about Yourself?
  • Q2. Why Do you want to work with Teleperformance?
  • Ans. 

    I want to work with Teleperformance because of their reputation for providing excellent technical support services and opportunities for career growth.

    • Teleperformance has a strong reputation for providing top-notch technical support services to a wide range of clients.

    • I am impressed by Teleperformance's commitment to employee development and growth opportunities.

    • I believe that working at Teleperformance will allow me t...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Company Website and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Mathematical Logical And counication test

Round 2 - Technical 

(5 Questions)

  • Q1. What are oops concepts
  • Ans. 

    Oops concepts refer to Object-Oriented Programming concepts that help in organizing and managing code efficiently.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability of a method to do different things based on the object it is acting upon.

    • Abstraction: Hiding the complex implementation...

  • Answered by AI
  • Q2. Database related questions
  • Q3. Write a program in java
  • Ans. 

    A program in Java to print 'Hello, World!'

    • Create a class with a main method

    • Use System.out.println() to print the message

  • Answered by AI
  • Q4. Java reltated questions
  • Q5. Depends on ur resume
Round 3 - HR 

(4 Questions)

  • Q1. Where do you see yourself in five years
  • Q2. Situation based questions
  • Q3. Why u want to work for this company
  • Q4. Your hobbies related questions

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Tell about the oops ocncpets
  • Ans. 

    Object-oriented programming concepts focus on classes, objects, inheritance, encapsulation, and polymorphism.

    • Classes: Blueprint for creating objects with attributes and methods.

    • Objects: Instances of classes that contain data and behavior.

    • Inheritance: Allows a class to inherit attributes and methods from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Abil...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. What is JavaScript
  • Ans. 

    JavaScript is a programming language used to add interactivity and dynamic features to websites.

    • JavaScript is a client-side scripting language.

    • It is primarily used for web development.

    • JavaScript can be embedded directly into HTML pages.

    • It allows for the manipulation of webpage elements and handling of events.

    • Common uses include form validation, creating interactive content, and AJAX requests.

  • Answered by AI
  • Q2. What is closure
  • Ans. 

    Closure is a programming concept that allows a function to access variables from its parent scope even after the parent function has finished executing.

    • Closure is created when a nested function references a variable from its outer function.

    • The inner function can access and modify the variables from the outer function.

    • Closure helps in encapsulating data and creating private variables in JavaScript.

    • It allows functions to...

  • Answered by AI
  • Q3. Explain map method
  • Ans. 

    The map method is used to create a new array by applying a function to each element of an existing array.

    • The map method takes a callback function as an argument.

    • The callback function is executed on each element of the array.

    • The result of the callback function is added to the new array.

    • The map method does not modify the original array.

    • Example: ['apple', 'banana', 'cherry'].map(fruit => fruit.toUpperCase()) returns ['APP

  • Answered by AI
  • Q4. What is react.js
  • Ans. 

    React.js is a JavaScript library for building user interfaces.

    • React.js is used for creating reusable UI components.

    • It follows a component-based architecture.

    • React.js uses a virtual DOM for efficient rendering.

    • It allows for declarative and efficient updates to the UI.

    • React.js is widely used in web development for building interactive and dynamic user interfaces.

  • Answered by AI
  • Q5. Explain promise in JavaScript
  • Ans. 

    A promise in JavaScript is an object representing the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations such as fetching data from a server or reading a file.

    • They provide a cleaner and more readable way to write asynchronous code compared to using callbacks.

    • Promises have three states: pending, fulfilled, or rejected.

    • They can be chained using the then() metho...

  • Answered by AI

Skills evaluated in this interview

Menlo Security Inc Interview FAQs

How many rounds are there in Menlo Security Inc Technical Support Engineer interview?
Menlo Security Inc interview process usually has 2 rounds. The most common rounds in the Menlo Security Inc interview process are HR and Technical.
What are the top questions asked in Menlo Security Inc Technical Support Engineer interview?

Some of the top questions asked at the Menlo Security Inc Technical Support Engineer interview -

  1. Technical questions regarding pr...read more
  2. SSL ,DNS,proxy related iss...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Menlo Security Inc interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Menlo Security Inc Technical Support Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-Life balance

5.0

Salary & Benefits

5.0

Job Security

5.0

Company culture

5.0

Promotions/Appraisal

5.0

Work Satisfaction

Explore 1 Review and Rating
Software Engineer
5 salaries
unlock blur

₹11.6 L/yr - ₹22 L/yr

Senior Software Engineer
3 salaries
unlock blur

₹30.2 L/yr - ₹35 L/yr

Senior Network Security Engineer
3 salaries
unlock blur

₹18 L/yr - ₹20 L/yr

IT Support Specialist
3 salaries
unlock blur

₹12 L/yr - ₹13 L/yr

Explore more salaries
Compare Menlo Security Inc with

Zscaler Softech

3.6
Compare

Palo Alto Networks

3.8
Compare

FireEye

4.3
Compare

NortonLifeLock's

4.0
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