Upload Button Icon Add office photos

Filter interviews by

Modwin Networks Interview Questions and Answers

Updated 2 Mar 2025

Modwin Networks Interview Experiences

1 interview found

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

I was interviewed in Feb 2025.

Round 1 - HR 

(2 Questions)

  • Q1. What is access point
  • Ans. 

    An access point is a device that allows wireless devices to connect to a wired network using Wi-Fi or other standards.

    • Acts as a bridge between wired and wireless networks.

    • Extends the range of a wireless network, allowing more devices to connect.

    • Can be standalone or part of a larger network infrastructure.

    • Examples include home Wi-Fi routers and enterprise-grade access points like Cisco Aironet.

  • Answered by AI
  • Q2. How to configure a switch
  • Ans. 

    Configuring a switch involves setting up VLANs, IP addresses, and security features for network management.

    • Access the switch via console or SSH.

    • Enter global configuration mode using 'configure terminal'.

    • Set up VLANs with 'vlan [VLAN_ID]' and assign ports using 'switchport access vlan [VLAN_ID]'.

    • Configure IP address on the switch with 'interface vlan [VLAN_ID]' and 'ip address [IP_ADDRESS] [SUBNET_MASK]'.

    • Enable trunking...

  • Answered by AI

Network Support Engineer Interview Questions asked at other Companies

Q1. what is protocol, how many type of protocol.
View answer (3)

Interview questions from similar companies

I applied via Other and was interviewed before Mar 2018. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Serivece expression plz told
  • Q2. Customer choice given service and reply best response
  • Q3. How much transfer customer
  • Ans. 

    The question is unclear and lacks context.

    • Request clarification on what is meant by 'transfer customer'

    • Ask for more information about the specific role and responsibilities of an Assistant Manager

    • Seek clarification on the purpose or objective behind the question

  • Answered by AI
  • Q4. 6000/ customer satisfaction guaranteed service

Interview Preparation Tips

General Tips: Maruti home relocation movers and packers door to door delivery All responsibility packing and moving service
Skills: Communication

I was interviewed before Sep 2016.

Interview Questionnaire 

1 Question

  • Q1. It was an online technical test. Questions were related to ME outlook, mobile device management , Networking and many more

Interview Preparation Tips

Round: Grammar Round
Experience: It was a written English grammar test to analyse how grammatically sound you are.
Tips: Just revise your basic English grammar like prepositions verbs nd essay/paragraph writing

Round: COMMUNICATION SKILLS Round
Experience: In this round they ask you to speak something on the given topic or sometimes group discussion . Basically they test your vocabulary, your thought process, pronunciation, accent and above all confidence.
Tips: Be confident in whatever you speak. Remember if you get nervous you will need with your words .

Round: Technical Interview
Experience: This was an online test and it had 50 questions all objective types.
Tips: Be technically sound. You cannot Google them as these search engines are blocked

College Name: Babu Banarasi Das National Institute Of Technology And Management (BBDNITM)

I applied via Recruitment Consultant and was interviewed before Sep 2018. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1.  overloading ,inheritance concepts,structures,pointers

Interview Preparation Tips

Interview preparation tips for other job seekers - have good understanding of basics and have expertise on any specific area.

Interview Questionnaire 

2 Questions

  • Q1. Basic Programming Questions, Data structures, SQL queries
  • Q2. This was the most simple one, they simply asked introduce yourself and fine with night shifts.

Interview Preparation Tips

General Tips: I joined HCL as a fresher and got Intervie

Interview Questionnaire 

1 Question

  • Q1. What I know and what I don't know

Interview Preparation Tips

Round: Test
Experience: Aptitude, reasoning, logical, etc. 2 hours

Interview Questionnaire 

2 Questions

  • Q1. C and C++ - technically related stuffs
  • Q2. Communicate and fluency

Analyst Interview Questions & Answers

HCLTech user image Raj Hrithik

posted on 2 Sep 2017

I was interviewed in Jul 2017.

Interview Questionnaire 

1 Question

  • Q1. Experience summary and the roles

Interview Preparation Tips

Round: Test
Experience: I was allowed to write a test for 2hrs in that each headings seems to be different and also there is a section heading marks
Duration: 2 hours
Total Questions: 70

Round: Technical Interview
Experience: After finishing i was advised to attend 2nd round in that they ask about the detailed experience of my previous company and finally technical terms question also flows

Skills: Logical And Structured Thinking, Communication And Confidence, Attitude, Psychometric Test, Project Management

I was interviewed in Dec 2016.

Interview Questionnaire 

8 Questions

  • Q1. What was your final year project about
  • Ans. 

    My final year project was about developing a mobile application for tracking and managing personal finances.

    • Developed a user-friendly interface for inputting and categorizing expenses

    • Implemented features for setting budgets and generating reports on spending habits

    • Utilized data encryption to ensure the security of financial information

  • Answered by AI
  • Q2. Which role of sdlc were you a part of in your project
  • Ans. 

    I was involved in the testing phase of the SDLC in my project.

    • Participated in creating test cases and executing them

    • Collaborated with developers to identify and fix bugs

    • Ensured the quality of the software before release

  • Answered by AI
  • Q3. Work done in internship
  • Ans. 

    During my internship, I was responsible for assisting with various tasks such as data analysis, project management, and client communication.

    • Assisted with data analysis by collecting and organizing data sets

    • Managed projects by creating timelines, delegating tasks, and tracking progress

    • Communicated with clients to gather feedback and provide updates on project status

  • Answered by AI
  • Q4. Why do you want to join jio
  • Ans. 

    I want to join Jio because of its innovative and disruptive approach in the telecom industry.

    • Jio has revolutionized the telecom industry with its affordable data plans and high-speed internet.

    • I am impressed by Jio's commitment to digital transformation and its focus on providing cutting-edge technology to its customers.

    • Jio's extensive network coverage and strong infrastructure make it an exciting company to work for.

    • I ...

  • Answered by AI
  • Q5. Family background
  • Q6. Can classes be declared abstract in java
  • Ans. 

    Yes, abstract classes can be declared in Java.

    • Abstract classes cannot be instantiated

    • They can have abstract and non-abstract methods

    • Subclasses must implement all abstract methods

    • Example: abstract class Animal { abstract void makeSound(); }

    • Example: class Dog extends Animal { void makeSound() { System.out.println("Bark"); }}

  • Answered by AI
  • Q7. Explain polymorphism with a program
  • Ans. 

    Polymorphism is the ability of an object to take on many forms. It allows objects of different classes to be treated as if they were of the same class.

    • Polymorphism is achieved through method overriding and method overloading.

    • Method overriding is when a subclass provides its own implementation of a method that is already provided by its parent class.

    • Method overloading is when a class has multiple methods with the same n...

  • Answered by AI
  • Q8. Advantages of recursion
  • Ans. 

    Recursion allows for elegant and concise code, simplifies complex problems, and can be more efficient in certain cases.

    • Recursion can simplify complex problems by breaking them down into smaller subproblems.

    • It allows for elegant and concise code, especially when dealing with data structures like trees and graphs.

    • Recursion can be more efficient in certain cases, such as when calculating factorials or Fibonacci numbers.

    • Ho...

  • Answered by AI

Interview Preparation Tips

Round: Group Discussion
Duration: 10 minutes

Round: Technical + HR Interview
Experience: After he was satisfied with my answers he explained me my job role, salary and the growth in the organization
Tips: Be confident and prepare your CV well..That should do it

Skills evaluated in this interview

I was interviewed in Mar 2017.

Interview Preparation Tips

Round: Test
Experience: Test was online.
1. In Hadoop, Big Data & Wireless Communication section, there were 10-10 question with 15 minutes of time in each of three.
These three section were quite logical rather than calculative.

2. Quant & Apti section was quite easy. Fill in the blanks type questions were also present. There was 50 question in this section and only 12 minutes were given to solve.
Over all this section was very easy and scoring.
Tips: As a graduate or PG fresher in ECE, you can score in Mobile communication & Non-tech portion.
Try to score in Apti part as much as you can.
Duration: 1 hour
Total Questions: 80

Round: Problem Statement
Experience: In this round one person from the selection panel of five gave the three question as a problem and asked to write our own strategy to tackle.
The questions were:
1. What do you mean by a network ?
2. Problem related to LOS and non LOS communication.
3. Signal fading in Communication.
Tips: Just use your technical skills, you can easily answer these question if you have a good understanding of the Wireless communication.

Round: Coding Test.
Experience: This round was also not for elimination.
They just gave a sheet of five question of coding.The questions were:
1. To add 2 very long integer type number.
2. To draw the mirror image of a given tree.
3. To find the loop in a link list.
4. To find the max possible sum of an array of positive and negative no.
5. Ques. was related to a given figure to write the Algo to find the center of the circle.(fig. was given in the ques.).


Tips: To clear this round you need to be proficient at least in one coding language.

Round: Technical + HR Interview
Experience: They shortlisted 47 person from IIT Roorkee for the written.
Up to this round only 19 were present.
Duration of my interview was only 25-30 minutes.
There are 5 members panel(4 Tech+ 1HR).
One person in from Israel(Data mining expert),Second was from Sweden(Coding expert),Third & fourth were from India and Wireless comm. and architecture expert. 5th was HR person from India.
They started from the coding section form the test sheet ques.
He asked to explain all the coding ques and about my logic behind that.
Then they asked about Big data and Machine learning question.
As I don't know much about these topic I replied that I don't know sir.
After that they asked to explain my B.tech and M.tech project ,then they asked some ques related to project.
Then they asked ques from Wireless communication and Architecture of 1G to 5G to explain.
They asked ques from GSM, FDM, CDMA,TDM,OFDM.
They asked me the various reason behind call dropping.
Then he asked my B.tech communication subject when I told him my Analog & Digital comm. topic then he started laughing and told me that these techniques are completely outdated.
In last they asked my GATE %ile then I replied 99.42.
HR person was just observing my answering skills.

Tips: The interview was going on very fast they gave only 4-5 sec to think otherwise next ques was waiting for me.
Be confident and try to give the answer with some basic concept.
As for as my concern, They were just checking our base knowledge in there field specially in Wireless comm. and some courses in Machine learning or Data mining is a plus point.

Skills: Basic Concepts, Understanding Ability
College Name: IIT Roorkee

Modwin Networks Interview FAQs

How many rounds are there in Modwin Networks interview?
Modwin Networks interview process usually has 1 rounds. The most common rounds in the Modwin Networks interview process are HR.
How to prepare for Modwin Networks 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 Modwin Networks. The most common topics and skills that interviewers at Modwin Networks expect are Networking, CCNA, Switching, Routing and Communication Skills.
What are the top questions asked in Modwin Networks interview?

Some of the top questions asked at the Modwin Networks interview -

  1. How to configure a swi...read more
  2. What is access po...read more

Tell us how to improve this page.

Modwin Networks Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Jio Interview Questions
3.9
 • 1.7k Interviews
Bharti Airtel Interview Questions
4.0
 • 843 Interviews
Vodafone Idea Interview Questions
4.1
 • 553 Interviews
Sify Technologies Interview Questions
3.9
 • 122 Interviews
Hathway Interview Questions
3.5
 • 42 Interviews
View all

Modwin Networks Reviews and Ratings

based on 16 reviews

3.4/5

Rating in categories

3.2

Skill development

3.3

Work-life balance

3.1

Salary

3.1

Job security

3.4

Company culture

3.2

Promotions

3.5

Work satisfaction

Explore 16 Reviews and Ratings
Project Engineer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Network Engineer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Network Support Engineer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

System Engineer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Manager
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Modwin Networks with

Tata Communications

4.0
Compare

Bharti Airtel

4.0
Compare

Jio

3.9
Compare

Vodafone Idea

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