Upload Button Icon Add office photos

Filter interviews by

International SOS Network Architect Interview Questions and Answers for Experienced

Updated 3 Sep 2024

International SOS Network Architect Interview Experiences for Experienced

1 interview found

Network Architect Interview Questions & Answers

user image deepak manchanda

posted on 3 Sep 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Technical questions on fortinet SDWAN
Round 2 - Technical 

(1 Question)

  • Q1. Traffic shaping in fortinet SDWAN
  • Ans. 

    Traffic shaping in Fortinet SDWAN involves prioritizing and controlling network traffic to optimize performance.

    • Traffic shaping policies can be created to prioritize certain types of traffic over others.

    • Bandwidth limits can be set for different applications or users to ensure fair distribution of resources.

    • Quality of Service (QoS) settings can be configured to guarantee a certain level of performance for critical appli...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Round 1 - Technical 

(1 Question)

  • Q1. Basic electronics & field knowledge
Round 2 - Technical 

(1 Question)

  • Q1. Basic electronics & field knowledge
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion / Negotiations

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic electronics is mandatory. Company relevant information is also needed.
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Previous Experience
  • Q2. Design Knowledge
  • Q3. Personally Based
Round 2 - One-on-one 

(3 Questions)

  • Q1. Domain Knowledge Formal Testing
  • Q2. Lab Management Quality Assurance Design Assurance
  • Q3. Dv, TMV R&D Testing Mechanical
Round 3 - HR 

(1 Question)

  • Q1. Salary Negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Showcase exemplery Doman Knowledge.
Real time experience be Straight Forward.
Prepare for the exact JD Provided. For experienced Candidates no special Preparation is required as they hire you for Skill and Problem solving Attitude no need to potray that you have all the skills in world be Genuine .

I applied via Referral and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. How to avoid accidents
  • Ans. 

    Accidents can be avoided by implementing safety measures and promoting awareness.

    • Conduct regular safety training sessions for employees

    • Ensure proper maintenance of equipment and machinery

    • Implement safety protocols and procedures

    • Provide personal protective equipment (PPE) to employees

    • Promote a safety culture within the organization

    • Encourage reporting of near-misses and incidents for analysis and improvement

    • Regularly rev

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Hi it went on smooth the day the faced the interview
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in May 2024. There was 1 interview round.

Round 1 - Case Study 

How does Boston scientific align with future?

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 Jun 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Questions related to NODEJS , PHP, Past projects, Resume
  • Q2. Why Mongodb over Sql
  • Ans. 

    MongoDB is preferred over SQL for its flexibility, scalability, and ease of use in handling unstructured data.

    • MongoDB is a NoSQL database, making it easier to work with unstructured data compared to SQL.

    • MongoDB is schema-less, allowing for more flexibility in data modeling and changes.

    • MongoDB is horizontally scalable, making it easier to handle large amounts of data and high traffic loads.

    • MongoDB's document-based data ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for ResMed Associate Software Engineer interview:
  • Nodejs
  • MongoDB
  • PHP
  • SQL
Interview preparation tips for other job seekers - They asked related to resume only.

I didn't got selected because I couldn't justify what was written on my resume.

Skills evaluated in this interview

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

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

Round 1 - Aptitude Test 

C,c++ questions and two coding questions. basic mcq

Round 2 - Technical 

(3 Questions)

  • Q1. Treeset, hashset difference
  • Ans. 

    TreeSet and HashSet are both implementations of the Set interface in Java, but they have some key differences.

    • TreeSet is a sorted set that maintains elements in ascending order, while HashSet does not guarantee any specific order.

    • TreeSet uses a Red-Black tree data structure for storage, which allows for efficient retrieval of elements in sorted order.

    • HashSet uses a hash table for storage, which provides constant-time p...

  • Answered by AI
  • Q2. Oops concept, dbms, programming questions
  • Q3. Set and treeset and hashset

Interview Preparation Tips

Topics to prepare for ResMed Software Developer interview:
  • DBMS
  • OOPS
Interview preparation tips for other job seekers - none

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Related to excel VBA and MySQL

Interview Preparation Tips

Interview preparation tips for other job seekers - It was not much tough, there was 3 round and final with HR.
Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Why do you want to join us

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest and subtle with your answers.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(6 Questions)

  • Q1. React hooks, Explain using code
  • Ans. 

    React hooks are functions that let you use state and other React features without writing a class.

    • Hooks are functions that let you use state and other React features in functional components

    • useState() is a hook that allows you to add state to functional components

    • useEffect() is a hook that allows you to perform side effects in functional components

    • useContext() is a hook that allows you to use the context API in functio

  • Answered by AI
  • Q2. Factory Patterns?
  • Q3. Liskov Substitution Principle
  • Ans. 

    Liskov Substitution Principle states that objects of a superclass should be replaceable with objects of its subclasses without affecting the program's correctness.

    • Subtypes must be substitutable for their base types.

    • Derived classes must be able to replace their base classes without affecting the program's behavior.

    • Violating this principle can lead to unexpected behavior and errors in the code.

    • Example: If a program expec...

  • Answered by AI
  • Q4. Oops Concept and give examples
  • Ans. 

    Oops concept is a programming paradigm that focuses on objects and classes.

    • Oops stands for Object-Oriented Programming

    • Key concepts include inheritance, encapsulation, polymorphism, and abstraction

    • Examples: Class Car with properties like make, model, and methods like start(), stop()

    • Example: Inheritance - Class SUV extends Car and adds property numSeats

  • Answered by AI
  • Q5. JQuery - Ajax mechanisms
  • Q6. Docker and Kubernetes - Azure concepts

Skills evaluated in this interview

International SOS Interview FAQs

How many rounds are there in International SOS Network Architect interview for experienced candidates?
International SOS interview process for experienced candidates usually has 2 rounds. The most common rounds in the International SOS interview process for experienced candidates are Technical.
What are the top questions asked in International SOS Network Architect interview for experienced candidates?

Some of the top questions asked at the International SOS Network Architect interview for experienced candidates -

  1. Traffic shaping in fortinet SD...read more
  2. Technical questions on fortinet SD...read more

Tell us how to improve this page.

International SOS Network Architect Interview Process for Experienced

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

UnitedHealth Interview Questions
4.0
 • 81 Interviews
Labcorp Interview Questions
4.1
 • 40 Interviews
ResMed Interview Questions
3.8
 • 16 Interviews
View all
Concierge Executive
23 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Staff Nurse
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Consultant Physician
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Concierge Consultant
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Supervisor
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare International SOS with

UnitedHealth

4.0
Compare

Johnson & Johnson

4.0
Compare

Baxter International

4.0
Compare

B. Braun Medical

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