i
NEC
Work with us
Filter interviews by
Cloud computing allows users to access and store data and applications over the internet instead of on a physical hard drive.
Data and applications are stored on remote servers and accessed through the internet.
Users can access their data and applications from any device with an internet connection.
Cloud services can include storage, databases, networking, analytics, and more.
Examples of cloud services include Amaz...
The RJ45 connector is a standardized physical interface for connecting ethernet cables, with color specifications for wiring.
RJ45 connectors have 8 pins and are commonly used for Ethernet connections
The color specifications for wiring in an RJ45 connector are typically T568A or T568B standards
T568A wiring uses green and orange pairs, while T568B uses orange and green pairs
For example, in T568B standard, pin 1 is w...
List is mutable while tuple is immutable.
List can be modified while tuple cannot be modified.
List is defined using square brackets [] while tuple is defined using parentheses ().
List is used for homogenous data while tuple is used for heterogenous data.
List is slower than tuple in terms of performance.
Example of list: [1, 2, 3] and example of tuple: (1, 'hello', 3.14)
A .pyc file is a compiled Python file that contains bytecode.
It is created by the Python interpreter when a .py file is imported or run.
It is platform-independent and can be executed on any system with the same version of Python.
It speeds up the execution of Python code as the interpreter does not have to compile the code every time it is run.
It can be deleted without affecting the original .py file, as the interp...
A decorator is a design pattern in object-oriented programming that allows behavior to be added to an individual object, dynamically.
Decorators are used to modify the behavior of a function or class without changing its source code.
They are implemented using the @ symbol in Python.
Decorators can be used for logging, timing, caching, and more.
An example of a decorator is the @staticmethod decorator in Python, which...
A generator is a device that converts mechanical energy into electrical energy.
Generators are commonly used in power plants to produce electricity.
They work on the principle of electromagnetic induction.
The mechanical energy can be provided by various sources such as steam turbines, gas turbines, wind turbines, etc.
Generators can be classified into AC generators and DC generators.
AC generators are used in most pow...
The task is to capitalize the first and last character of each word in a given string.
Split the string into an array of words
Iterate through each word and capitalize the first and last character
Join the modified words back into a string
Reverse a string using recursion.
Create a function that takes a string as input.
Check if the string is empty or has only one character.
If yes, return the string.
If not, call the function recursively with the substring excluding the first character and concatenate the first character at the end.
Return the reversed string.
Answering three technical questions for a software developer interview
To reverse a string, use a loop to iterate through the string and append each character to a new string in reverse order
To remove duplicate elements, use a set data structure to store unique elements and then convert it back to a list
Inheritance allows a subclass to inherit properties and methods from a superclass, allowing for code reuse and or...
AWS, Azure, and GCP are three major cloud service providers offering a range of services and features for businesses.
AWS (Amazon Web Services) is the oldest and most widely used cloud platform, offering a wide range of services and global data centers.
Azure (Microsoft Azure) is known for its strong integration with Microsoft products and services, as well as its hybrid cloud capabilities.
GCP (Google Cloud Platform...
I applied via Campus Placement and was interviewed in Jun 2024. There were 4 interview rounds.
Easy questions mostly on programming languages and data analysis.
I appeared for an interview before Jun 2024, where I was asked the following questions.
I applied via Campus Placement and was interviewed before Jul 2022. There were 5 interview rounds.
Basics aptitude question mixed with cs question
Sql commands and queries with some cloud computing questions and oops concepts
The RJ45 connector is a standardized physical interface for connecting ethernet cables, with color specifications for wiring.
RJ45 connectors have 8 pins and are commonly used for Ethernet connections
The color specifications for wiring in an RJ45 connector are typically T568A or T568B standards
T568A wiring uses green and orange pairs, while T568B uses orange and green pairs
For example, in T568B standard, pin 1 is white/...
AWS, Azure, and GCP are three major cloud service providers offering a range of services and features for businesses.
AWS (Amazon Web Services) is the oldest and most widely used cloud platform, offering a wide range of services and global data centers.
Azure (Microsoft Azure) is known for its strong integration with Microsoft products and services, as well as its hybrid cloud capabilities.
GCP (Google Cloud Platform) is ...
Cloud computing allows users to access and store data and applications over the internet instead of on a physical hard drive.
Data and applications are stored on remote servers and accessed through the internet.
Users can access their data and applications from any device with an internet connection.
Cloud services can include storage, databases, networking, analytics, and more.
Examples of cloud services include Amazon We...
I appeared for an interview before Apr 2024, where I was asked the following questions.
Answering three technical questions for a software developer interview
To reverse a string, use a loop to iterate through the string and append each character to a new string in reverse order
To remove duplicate elements, use a set data structure to store unique elements and then convert it back to a list
Inheritance allows a subclass to inherit properties and methods from a superclass, allowing for code reuse and organiz...
Coding round easy level ques and some of them is mcq
I applied via Campus Placement and was interviewed before Sep 2022. There were 6 interview rounds.
There were total 60 MCQ worth time of 1 hour. The major part is covered by the computer fundamentals like OS and CN , Verbal reasoning , Quant , Cloud and code snippet output based questions. If you are scoring 48/60 then there is a great chance to qualify this round.
3 coding questions worth time of 30 minutes. The level was moderate. 2 question was based on string and 1 question was on Array. If you solve 2 questions then there is a great chance to qualify this round.
I applied via Naukri.com and was interviewed in Nov 2021. There was 1 interview round.
Reverse a string using recursion.
Create a function that takes a string as input.
Check if the string is empty or has only one character.
If yes, return the string.
If not, call the function recursively with the substring excluding the first character and concatenate the first character at the end.
Return the reversed string.
The task is to capitalize the first and last character of each word in a given string.
Split the string into an array of words
Iterate through each word and capitalize the first and last character
Join the modified words back into a string
A generator is a device that converts mechanical energy into electrical energy.
Generators are commonly used in power plants to produce electricity.
They work on the principle of electromagnetic induction.
The mechanical energy can be provided by various sources such as steam turbines, gas turbines, wind turbines, etc.
Generators can be classified into AC generators and DC generators.
AC generators are used in most power pl...
A decorator is a design pattern in object-oriented programming that allows behavior to be added to an individual object, dynamically.
Decorators are used to modify the behavior of a function or class without changing its source code.
They are implemented using the @ symbol in Python.
Decorators can be used for logging, timing, caching, and more.
An example of a decorator is the @staticmethod decorator in Python, which mark...
A .pyc file is a compiled Python file that contains bytecode.
It is created by the Python interpreter when a .py file is imported or run.
It is platform-independent and can be executed on any system with the same version of Python.
It speeds up the execution of Python code as the interpreter does not have to compile the code every time it is run.
It can be deleted without affecting the original .py file, as the interpreter...
List is mutable while tuple is immutable.
List can be modified while tuple cannot be modified.
List is defined using square brackets [] while tuple is defined using parentheses ().
List is used for homogenous data while tuple is used for heterogenous data.
List is slower than tuple in terms of performance.
Example of list: [1, 2, 3] and example of tuple: (1, 'hello', 3.14)
I applied via Referral and was interviewed before Feb 2023. There was 1 interview round.
posted on 16 Mar 2022
I applied via Walk-in and was interviewed in Mar 2022. There were 3 interview rounds.
C language and java
I come from a supportive family that values education and hard work, fostering a nurturing environment for personal growth.
Parents: My father is an engineer and my mother is a teacher, both instilling a strong work ethic and the importance of education.
Siblings: I have one younger sister who is currently pursuing her studies in computer science, inspired by our family's emphasis on learning.
Family Values: We prioritize...
In five years, I envision myself as a skilled programmer, contributing to innovative projects and mentoring junior developers.
Career Growth: I aim to advance to a senior programming role, leading projects that utilize cutting-edge technologies like AI and machine learning.
Skill Development: I plan to enhance my programming skills by mastering languages such as Python and JavaScript, and frameworks like React and Node.j...
Identifying strengths and weaknesses helps in personal growth and aligning skills with job requirements for better performance.
Strength: Strong problem-solving skills. For example, I successfully debugged a complex issue in a software project, improving efficiency by 30%.
Strength: Adaptability. I quickly learned new programming languages and tools, such as transitioning from Java to Python for a project.
Weakness: Publi...
Top trending discussions
The duration of NEC interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 6 interview experiences
Difficulty level
Duration
Member Technical Staff
360
salaries
| ₹3.5 L/yr - ₹7.9 L/yr |
Technical Lead
268
salaries
| ₹16.4 L/yr - ₹30 L/yr |
Senior Member of Technical Staff
247
salaries
| ₹4.6 L/yr - ₹18 L/yr |
Senior Software Engineer
166
salaries
| ₹11.5 L/yr - ₹23.4 L/yr |
Senior Technical Lead
161
salaries
| ₹19 L/yr - ₹33 L/yr |
Cognizant
DXC Technology
UST
Atos