Upload Button Icon Add office photos

Filter interviews by

Icon Technologies NOC Engineer Interview Questions and Answers

Updated 7 Oct 2022

Icon Technologies NOC Engineer Interview Experiences

1 interview found

NOC Engineer Interview Questions & Answers

user image Anonymous

posted on 7 Oct 2022

I applied via Recruitment Consulltant and was interviewed before Oct 2021. There were 2 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 

(3 Questions)

  • Q1. What is DNS, DHCP,FSMO, Cluster
  • Ans. 

    DNS is a system that translates domain names to IP addresses. DHCP assigns IP addresses to devices. FSMO is a role in Active Directory. Cluster is a group of servers working together.

    • DNS stands for Domain Name System and is responsible for translating domain names to IP addresses.

    • DHCP stands for Dynamic Host Configuration Protocol and assigns IP addresses to devices on a network.

    • FSMO stands for Flexible Single Master O...

  • Answered by AI
  • Q2. How to Create users in AD
  • Ans. 

    To create users in AD, use Active Directory Users and Computers console or PowerShell cmdlets.

    • Open Active Directory Users and Computers console

    • Right-click on the domain and select 'New' and then 'User'

    • Fill in the required user information and click 'Next' until the user is created

    • Alternatively, use PowerShell cmdlets like New-ADUser to create users programmatically

  • Answered by AI
  • Q3. Active Directory Domain Service

Interview Preparation Tips

Topics to prepare for Icon Technologies NOC Engineer interview:
  • DNS
  • DHCP
  • ADDS
Interview preparation tips for other job seekers - Don't need to worry or Scared from interview be a Confident

Skills evaluated in this interview

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Best sorting although and its working they asked
  • Q2. Write a program to replace the character with another character in java.
  • Ans. 

    A program to replace a character with another character in Java.

    • Create a string variable with the original text

    • Use the replace() method to replace the character with another character

    • Print the new string with the replaced character

  • Answered by AI
  • Q3. SQL queries on order by, group by, and it's difference they asked.
  • Q4. Project management experience they asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare on the basis concepts and be perfect on your resume they are not expecting much from you as you are a fresher.

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. It's was basic testing questios, specific to selenium and Java.
  • Q2. Explain framework
  • Ans. 

    A framework is a set of guidelines, standards, and tools used to develop software applications.

    • A framework provides a structure for developers to build upon

    • It includes pre-written code and libraries to simplify development

    • Frameworks can be specific to a programming language or platform

    • Examples include React for web development and TensorFlow for machine learning

  • Answered by AI
  • Q3. Basic java programs

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared, basically on manual testing, Selenium and Java

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Feb 2021. There were 2 interview rounds.

Round 1 - Case Study 
Round 2 - Group Discussion 
Pro Tip by AmbitionBox:
Don’t treat group discussions as an argument. Group discussion is about reaching a meaningful conclusion.
View all tips

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview process is smooth and majorly asked direct questions and some scenarios

I applied via Campus Placement and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Swap two number with and without temporary variable
  • Ans. 

    Swap two numbers with and without temporary variable

    • Without temporary variable: Use addition and subtraction

    • With temporary variable: Use a third variable to store the value of one of the numbers

    • Example without temporary variable: a=5, b=7; a=a+b; b=a-b; a=a-b;

    • Example with temporary variable: a=5, b=7; temp=a; a=b; b=temp;

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't be afraid. It companies take interview to select you. And if you are selected in this company you are not lucky enough so try hard.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. What is second level cache?How to implement second level cache?How to optimize sql query?what are solid principles?
  • Ans. 

    Second level cache is a caching mechanism used to improve performance by storing frequently accessed data in memory.

    • Second level cache is implemented at the application level and can be configured using frameworks like Hibernate.

    • To optimize SQL queries, one can use indexes, avoid using SELECT *, and use JOINs instead of subqueries.

    • SOLID principles are a set of design principles for writing maintainable and scalable cod...

  • Answered by AI
  • Q2. Mostly FAQ but somewhat in depth?
  • Q3. How to deploy application in aws?
  • Ans. 

    To deploy an application in AWS, you need to create an EC2 instance, configure security groups, install necessary software, and upload your application code.

    • Create an EC2 instance in the desired region and select the appropriate instance type

    • Configure security groups to allow traffic to and from the instance

    • Install necessary software and dependencies on the instance

    • Upload your application code to the instance

    • Start the ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic faq but in depth,Interview level is easy to medium.They will ask only theory .No practical algorithm test.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Performa in 3par
  • Ans. 

    Performa is a performance monitoring tool for HPE 3PAR storage arrays.

    • Performa provides real-time monitoring of storage performance metrics.

    • It helps identify performance bottlenecks and optimize storage performance.

    • Performa can generate reports and alerts based on user-defined thresholds.

    • It can also be used for capacity planning and trend analysis.

    • Examples of performance metrics monitored by Performa include IOPS, late

  • Answered by AI
  • Q2. San zoning

Interview Preparation Tips

Interview preparation tips for other job seekers - Brushup basics.

Interview Questionnaire 

2 Questions

  • Q1. About technology on which i had worked. What do you know about Design Pattern and explain them? Window Services and Web APIs.
  • Q2. MVC Architecture and Web APIs security?

Interview Preparation Tips

Interview preparation tips for other job seekers - I attended two technical round that was good in terms of technology and knowledge. Then one Managerial round which was taken by General Manager. Total interview process taken 1 month time, I must say process are slow due to approval and all.

I applied via Campus Placement

Interview Questionnaire 

4 Questions

  • Q1. What is multithreading? ( I used it in my project )
  • Ans. 

    Multithreading is the ability of a CPU to execute multiple threads concurrently, improving performance and responsiveness.

    • Multithreading allows for parallel execution of tasks, utilizing multiple CPU cores.

    • It enables concurrent processing, where multiple threads can execute simultaneously.

    • Thread synchronization mechanisms like locks and semaphores are used to prevent data inconsistencies.

    • Multithreading can be used to i...

  • Answered by AI
  • Q2. How is socket programming different from other programmings?( Again a question from my project)
  • Q3. Difference between constructors and destructors.
  • Ans. 

    Constructors are used to initialize objects while destructors are used to destroy objects.

    • Constructors are called when an object is created while destructors are called when an object is destroyed.

    • Constructors have the same name as the class while destructors have the same name as the class preceded by a tilde (~).

    • Constructors can be overloaded while destructors cannot be overloaded.

    • Constructors do not have a return ty...

  • Answered by AI
  • Q4. Oops basics

Interview Preparation Tips

Interview preparation tips for other job seekers - My technical interview round lasted for just 20 minutes. It's becomes easier to crack if you actually have knowledge about things you have put on your resume. My advice to prepare for the interview is to open your resume and start making flowchart of what questions can go next once you introduce yourself. In the introduction, include your strong areas so that the interview revolves around that. I used this approach in my first interview and it went really well. I got real good reviews from the interviewer. Lastly, stay confident in explaining and Good Luck.

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic communication skills were tested. Sone techical questn too. Versant test is mandatory

Interview Preparation Tips

Interview preparation tips for other job seekers - Please never go for these third party vendors. They misguide you regarding profile . I went for this third party vendor named savantis solution and it really misguided me

Icon Technologies Interview FAQs

How many rounds are there in Icon Technologies NOC Engineer interview?
Icon Technologies interview process usually has 2 rounds. The most common rounds in the Icon Technologies interview process are Resume Shortlist and Technical.
What are the top questions asked in Icon Technologies NOC Engineer interview?

Some of the top questions asked at the Icon Technologies NOC Engineer interview -

  1. What is DNS, DHCP,FSMO, Clus...read more
  2. How to Create users in...read more
  3. Active Directory Domain Serv...read more

Tell us how to improve this page.

NOC Engineer Interview Questions from Similar Companies

View all
Icon Technologies NOC Engineer Salary
based on 4 salaries
₹1.4 L/yr - ₹2.5 L/yr
53% less than the average NOC Engineer Salary in India
View more details

Icon Technologies NOC Engineer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

3.0

Skill development

3.0

Work-life balance

3.0

Salary

3.0

Job security

3.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Process Associate
70 salaries
unlock blur

₹1 L/yr - ₹2.2 L/yr

Senior Process Associate
23 salaries
unlock blur

₹1 L/yr - ₹3.5 L/yr

Design Engineer
10 salaries
unlock blur

₹3 L/yr - ₹3.6 L/yr

Team Lead
6 salaries
unlock blur

₹2.7 L/yr - ₹4.6 L/yr

Tryout Engineer
5 salaries
unlock blur

₹2.8 L/yr - ₹4.2 L/yr

Explore more salaries
Compare Icon Technologies with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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