Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by E2E Networks Team. If you also belong to the team, you can get access from here

E2E Networks Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

E2E Networks BDM Sales Interview Questions and Answers

Updated 9 Nov 2022

E2E Networks BDM Sales Interview Experiences

1 interview found

BDM Sales Interview Questions & Answers

user image Anonymous

posted on 9 Nov 2022

I applied via Naukri.com and was interviewed in Oct 2022. 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 Resume tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Where do you live? What CTC you are expecting ?
  • Q2. Will you be able to do field job . How ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Just go with the flow and it will be done.
Don't ask for hike more then 30%

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 in Mar 2018.

Interview Preparation Tips

General Tips: This interview was a technical one but was majorly a stress test. It lasted for about 1 hour 10 minutes. The interviewer wanted to test both my knowledge and communication skills. Most of the questions asked to me were related to my B.Tech curriculum i.e. computer science related topics. He stressed a lot on the basics related to my project topic. Luckily I was able to answer most of the questions correctly. I tried to answer each question with examples and also used props on the table (like pens, paperweights, pen stands etc.) to explain my theories. It was my first offcampus interview, and I think I did pretty well for a fresher.
You need to stay calm and should apply presence of mind. Please go through the job description thoroughly word-by-word and recheck your resume to ensure that you are a best-fit for the position.
Skills: Communication, Problem Solving, Leadership, Decision Making Skills

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

Interview Preparation Tips

Round: Test
Experience: Tested basics in each subject

Round: Technical Interview
Experience: Had asked me about my projects in detail. Some DSA questions were asked. Asked to code in C for some questions.

Round: Technical Interview
Experience: Asked questions about data structures and some more algorithms. Tested in Probability and some quant.

College Name: IIT Madras

Interview Preparation Tips

Round: Resume Shortlist
Tips: It will be good to have a GPA of 8 and above

Round: Test
Experience: Questions were easy it were good at C and basic maths. Questions were distributed on all aspects of computer science such as Operating Systems, Few Output Question, Data Structures and Application layer networking . In basic aptitude most questions fall under Probability, distance and time and few others.
Duration: 60 minutes
Total Questions: 50

Skills: Communication, Basic Coding, Math Puzzle
College Name: NIT Surathkal

Interview Preparation Tips

Round: Test
Experience: The test was MCQ type. It comprised of questions from Operating Systems, Data Structures, Microprocessors, logical Reasoning, Aptitude and Computer Networks. No negative marking was there.
Tips: One needs to be fast as you can't spend much time on one question.
Duration: 60 minutes
Total Questions: 50

Round: Technical Interview
Experience: I was given 2 coding questions to solve and basics of oops, operating systems, data structures and networks were asked. 3-4 questions were asked in each topic mentions above. The interviewer also asked 2 puzzles which were the standard ones. He first asked me if I knew the topic or not, then only he asked me questions about it. But that doesn't mean that you can skip all the above mentions topics.
Tips: Be relaxed and confident and try to discuss your approach with the interviewer.

Round: Technical Interview
Experience: 2 Coding questions and 3-4 questions from operating systems and networks.Questions also from the mentioned projects.

Round: HR Interview
Experience: Standard HR interview with questions like what Cisco does and why they should hire you. He also asked me questions from the CV.

Tips: Be confident and mug up your cv well

Round: HR Interview
Experience: It was just a formality where he just asked about my background and whether I would be able to move to bangalore and Why I want to join Cisco.

Skills: Confidence, Problem Solving Skills, Operating System Basics, Coding Skills, Object Oriented Programming (OOP) Basics, Computer Networking, Data Strrutures
College Name: IIT Guwahati

I applied via Referral

Interview Questionnaire 

10 Questions

  • Q1. Program to print the elements of a binary tree in spiral order
  • Ans. 

    Program to print binary tree elements in spiral order

    • Use two stacks to keep track of nodes at odd and even levels

    • Push nodes from left to right in odd level stack and right to left in even level stack

    • Pop nodes from the stack alternatively and print them

    • Repeat until both stacks are empty

  • Answered by AI
  • Q2. Explain what happens underneath when you enter a URL in the browser
  • Ans. 

    Entering a URL in the browser triggers a series of events to retrieve and display the requested webpage.

    • The browser checks the cache for a previously stored copy of the webpage

    • If not found, the browser sends a request to the DNS server to resolve the domain name to an IP address

    • The browser then sends a request to the web server at the IP address for the webpage

    • The web server responds with the requested webpage

    • The brows...

  • Answered by AI
  • Q3. Explain why MAC addresses are required despite having IP addresses
  • Ans. 

    MAC addresses are required for identifying devices on a local network, while IP addresses are used for identifying devices on a global network.

    • MAC addresses are used for communication within a local network

    • IP addresses are used for communication across different networks

    • MAC addresses are assigned by the manufacturer and cannot be changed

    • IP addresses can be assigned dynamically or statically

    • MAC addresses are used in the...

  • Answered by AI
  • Q4. Solve the classical bridge and torch puzzle
  • Q5. Explain my internship project
  • Ans. 

    Developed a web application for tracking inventory and sales data

    • Used React.js for front-end development

    • Implemented RESTful APIs using Node.js and Express for back-end

    • Utilized MongoDB for database management

    • Integrated authentication and authorization features for secure access

    • Designed user-friendly interface with responsive design

  • Answered by AI
  • Q6. What is an arraylist in Java?
  • Ans. 

    An ArrayList is a dynamic array in Java that can grow or shrink in size during runtime.

    • ArrayList is a class in Java's Collection framework.

    • It implements the List interface and allows duplicate elements.

    • Elements can be added or removed using methods like add(), remove(), etc.

    • It can also be sorted using the sort() method.

    • Example: ArrayList names = new ArrayList<>();

    • names.add("John"); names.add("Mary"); names.remove(0);

  • Answered by AI
  • Q7. What is the difference between an arraylist and a linkedlist in Java?
  • Ans. 

    ArrayList is a resizable array while LinkedList is a doubly linked list.

    • ArrayList is faster for accessing elements while LinkedList is faster for adding or removing elements.

    • ArrayList uses contiguous memory while LinkedList uses non-contiguous memory.

    • ArrayList is better for random access while LinkedList is better for sequential access.

    • Example: ArrayList - List names = new ArrayList<>(); LinkedList - List names = new L

  • Answered by AI
  • Q8. “Java is not a pure OO language”. Justify (the answer expected was that the primitive types are not objects in Java!)
  • Ans. 

    Java is not a pure OO language due to primitive types not being objects.

    • Primitive types like int, boolean, etc. are not objects in Java

    • They do not have methods or inheritance like objects do

    • This violates the principle of everything being an object in pure OO languages

    • Wrapper classes like Integer, Boolean, etc. were introduced to provide object-like behavior for primitives

  • Answered by AI
  • Q9. What is the difference between an object oriented and object based language?
  • Ans. 

    Object-oriented languages support inheritance and polymorphism, while object-based languages do not.

    • Object-oriented languages allow for the creation of classes and objects, and support inheritance and polymorphism.

    • Object-based languages only support objects, but do not have the concept of classes or inheritance.

    • Examples of object-oriented languages include Java, C++, and Python, while JavaScript is an example of an obj

  • Answered by AI
  • Q10. Explain inheritance and abstraction with a concrete example
  • Ans. 

    Inheritance is a way to create new classes based on existing ones. Abstraction is a way to hide implementation details.

    • Inheritance allows a subclass to inherit properties and methods from a superclass.

    • Abstraction allows a class to provide a simplified interface to its users while hiding its implementation details.

    • For example, a Car class can inherit properties and methods from a Vehicle class, while also implementing i...

  • Answered by AI

Interview Preparation Tips

Skills:
College Name: NA

Skills evaluated in this interview

I applied via Referral

Interview Questionnaire 

14 Questions

  • Q1. How many interviews have I attended before?
  • Q2. What value would I add to Cisco?
  • Q3. What do I know about Cisco?
  • Q4. Am I ready to work as an IT manager?
  • Ans. 

    No, as a software engineer, you may not have the necessary experience or skills to work as an IT manager.

    • Software engineers typically focus on coding and technical aspects, while IT managers are responsible for overseeing projects, teams, and budgets.

    • IT managers need strong leadership, communication, and decision-making skills, which may not be the primary focus of a software engineer.

    • Consider gaining experience in pro...

  • Answered by AI
  • Q5. Mention the layers in OSI stack
  • Ans. 

    OSI stack has 7 layers that define how data is transmitted over a network.

    • OSI stands for Open Systems Interconnection

    • Each layer has a specific function and communicates with adjacent layers

    • Layers are: Physical, Data Link, Network, Transport, Session, Presentation, Application

  • Answered by AI
  • Q6. When would I go for a router to make two computers communicate?
  • Ans. 

    A router is needed to connect two computers in different networks or to share internet connection.

    • When two computers are in different networks, a router is needed to connect them.

    • A router can also be used to share internet connection between multiple devices.

    • Routers can provide additional security features like firewall and VPN.

    • Examples of routers include Cisco, Netgear, and TP-Link.

  • Answered by AI
  • Q7. Mention the number of bits in IPv4 and IPv6 addresses
  • Ans. 

    IPv4 has 32 bits and IPv6 has 128 bits.

    • IPv4 addresses are in the format of xxx.xxx.xxx.xxx where each xxx is an 8-bit number.

    • IPv6 addresses are in the format of xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx where each xxxx is a 16-bit number.

    • IPv6 addresses allow for a much larger number of unique addresses than IPv4.

  • Answered by AI
  • Q8. What is the need for IPv6?
  • Ans. 

    IPv6 is needed due to the exhaustion of IPv4 addresses and the need for more unique IP addresses.

    • IPv6 provides a significantly larger address space compared to IPv4.

    • It allows for the allocation of unique IP addresses to every device connected to the internet.

    • IPv6 supports improved security features and better network performance.

    • It enables the growth of Internet of Things (IoT) devices and services.

    • Transitioning to IPv...

  • Answered by AI
  • Q9. How many clients are possible for a /24 address?. What is the network address and broadcast address here?
  • Ans. 

    A /24 address can have 256 clients. Network address is the first IP and broadcast address is the last IP.

    • A /24 address has 256 IP addresses

    • The network address is the first IP in the range

    • The broadcast address is the last IP in the range

  • Answered by AI
  • Q10. What is the difference between anycast, unicast, and multicast?
  • Ans. 

    Anycast, unicast, and multicast are different ways of routing network traffic.

    • Unicast is one-to-one communication between a sender and a receiver.

    • Anycast is one-to-nearest communication where the sender sends a message to the nearest receiver.

    • Multicast is one-to-many communication where the sender sends a message to a group of receivers.

    • Anycast is used for load balancing and finding the nearest server.

    • Unicast is used f...

  • Answered by AI
  • Q11. What is virtual memory? What is its size in relation to main memory?
  • Ans. 

    Virtual memory is a memory management technique that allows a computer to use more memory than physically available.

    • Virtual memory is created by using hard disk space as an extension of RAM.

    • It allows running more programs than the physical memory can handle.

    • The size of virtual memory is typically larger than the size of main memory.

    • Virtual memory is divided into pages, which are swapped in and out of main memory as nee...

  • Answered by AI
  • Q12. How do I rate myself in C, web technologies on a scale of 10?
  • Ans. 

    I rate myself 8 in C and 7 in web technologies.

    • I have extensive experience in C programming and have worked on multiple projects using it.

    • In web technologies, I have a good understanding of HTML, CSS, and JavaScript, but there is always room for improvement.

    • I am constantly learning and improving my skills in both areas.

  • Answered by AI
  • Q13. What are my strengths?
  • Ans. 

    My strengths include problem-solving skills, attention to detail, and strong programming abilities.

    • Strong problem-solving skills - able to analyze complex problems and come up with effective solutions

    • Attention to detail - meticulous in writing code and ensuring it is error-free

    • Strong programming abilities - proficient in multiple programming languages such as Java, Python, and C++

  • Answered by AI
  • Q14. The classical 3l, 5l puzzle

Interview Preparation Tips

Skills:
College Name: NA

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. All questions were related to procurement
  • Q2. Technocommercial knowledge check done

Interview Preparation Tips

Interview preparation tips for other job seekers - All questions were related to technical knowledge and related to work profile only. So better be prepared for questions related to all the activities you are looking after. Don't misguide the interviewer give your best.

I applied via Naukri.com and was interviewed in Dec 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1.  Question about in depth working of Angular.io and nodejs. Also the basic mongodb questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Tata communications does not have a very big team for software development. The person has to manage from UI to backend database everything. The questions are asked on almost all the languages/tools etc.
There will be 3 technical rounds as to say and a HR round.
First round of interview is taken by the junior developer. This will be pure technical and lots of questions related to mostly one tech. Either front end and backend. Easy to clear if the basics are clear.
Second round is more technical and mostly related to integration of different services and architectural styles etc. Not so difficult to clear if you know industry best practices for designs.
Third round is with manager who checks the candidates and explains the business need and his role. Not to worry about.
Last is an HR round for package discuss and stuff.
Contribute & help others!
anonymous
You can choose to be anonymous

E2E Networks Interview FAQs

How many rounds are there in E2E Networks BDM Sales interview?
E2E Networks interview process usually has 2 rounds. The most common rounds in the E2E Networks interview process are Resume Shortlist and One-on-one Round.

Recently Viewed

JOBS

Browse jobs

Discover jobs you love

COMPANY BENEFITS

KNR Constructions

20 benefits

COMPANY BENEFITS

IRB Infrastructure

60 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

JOBS

E2E Networks

No Jobs

LIST OF COMPANIES

Alorb Technologies

Overview

SALARIES

InfoObjects

DESIGNATION

LIST OF COMPANIES

Adapty Solutions

Overview

Tell us how to improve this page.

Interview Questions from Similar Companies

Bharti Airtel Interview Questions
4.0
 • 845 Interviews
Cisco Interview Questions
4.1
 • 371 Interviews
Sify Technologies Interview Questions
3.9
 • 122 Interviews
Blue Dart Express Interview Questions
4.0
 • 102 Interviews
Tejas Networks Interview Questions
4.0
 • 75 Interviews
Hathway Interview Questions
3.5
 • 42 Interviews
CtrlS Interview Questions
3.5
 • 38 Interviews
View all
Software Engineer
25 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Cloud Engineer
21 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Server Engineer
18 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Inside Sales Executive
14 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Business Development Manager
14 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare E2E Networks with

CtrlS

3.5
Compare

Sify Technologies

3.9
Compare

Web Werks

2.6
Compare

Blue Dart Express

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