Upload Button Icon Add office photos
Engaged Employer

i

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

Nettechnocrats Verified Tick

Compare button icon Compare button icon Compare
3.2

based on 31 Reviews

Filter interviews by

Nettechnocrats Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. What is AML and primary and secondary research?
  • Ans. 

    AML stands for Anti-Money Laundering. Primary research involves collecting data firsthand, while secondary research involves analyzing existing data.

    • AML is a set of procedures, laws, and regulations designed to prevent the illegal generation of income through money laundering.

    • Primary research involves conducting surveys, interviews, and experiments to gather new data.

    • Secondary research involves analyzing existing data ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I had an interview with Parvesh Mittal and everything went well and I answered all the questions.
Furthermore, I was informed that the HR will be calling to schedule a meet for second round. The very next day I received an email mentioning that they will not be moving further with the application.
PS: Don’t demotivate and waste the time of the candidate. It’s not funny for a candidate who searching for the job seriously just to entertain your timepass process.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Campus Placement

Round 1 - HR 

(1 Question)

  • Q1. Best interview has been taken here
Round 2 - Technical 

(1 Question)

  • Q1. Good interview has been took here

Interview Preparation Tips

Interview preparation tips for other job seekers - There is only advice for job seekers first get proper knowledge and do preparations then there is no any chance to reject you
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Job Fair and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Introducing your self and project
  • Q2. Severity and priority
  • Q3. Smoke and sanity testing
  • Q4. Scenario base question if find bug before release

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare all manual testing type question
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. You notice OSPF neighbors are stuck in the Exstart state. How would you troubleshoot this issue ?
  • Ans. 

    To troubleshoot OSPF neighbors stuck in Exstart state, check for mismatched parameters, network connectivity issues, and potential network congestion.

    • Verify OSPF parameters such as area ID, network type, and authentication match on both neighbors

    • Check for network connectivity issues such as firewall blocking OSPF traffic or physical link problems

    • Investigate potential network congestion causing packets to be dropped or ...

  • Answered by AI
  • Q2. If a BGP Session fails what steps would you take to troubleshoot the issue ?
  • Ans. 

    To troubleshoot a failed BGP session, check the configuration, verify connectivity, analyze logs, and check for any network issues.

    • Check BGP configuration for any errors or misconfigurations

    • Verify connectivity between the BGP peers

    • Analyze BGP logs for any error messages or warnings

    • Check for any network issues such as routing problems or firewall blocking BGP traffic

  • Answered by AI
  • Q3. How would you diagnose a STP loop in a switches network ?
  • Ans. 

    Diagnosing a STP loop in a switches network involves checking for redundant links, analyzing STP configurations, and using network monitoring tools.

    • Check for redundant links in the network that may be causing the loop.

    • Analyze the STP configurations on the switches to ensure proper settings and priorities.

    • Use network monitoring tools to identify the source of the loop and isolate the affected switches.

    • Implement loop pre...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Why are you leaving your current organization ?
  • Ans. 

    Seeking new challenges and growth opportunities.

    • Looking for a new challenge to further develop my skills and knowledge.

    • Interested in exploring new technologies and methodologies.

    • Seeking opportunities for career advancement and growth.

    • Desire for a change in work environment or company culture.

  • Answered by AI
  • Q2. Are you comfortable with Night shifts ?
  • Ans. 

    Yes, I am comfortable with night shifts as I have prior experience working during those hours.

    • I have previous experience working night shifts in my previous roles.

    • I am able to adjust my sleep schedule to accommodate night shifts.

    • I understand the importance of being alert and focused during night shifts.

    • I am willing to work night shifts as needed to support the team and operations.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your basic understanding of the Networks

Skills evaluated in this interview

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

Round 1 - Technical 

(3 Questions)

  • Q1. What is the default index type
  • Ans. 

    B-tree index is the default index type in Oracle database.

    • Default index type in Oracle is B-tree index

    • B-tree index is suitable for range queries and equality searches

    • Other index types in Oracle include bitmap index and function-based index

  • Answered by AI
  • Q2. What is the causes of query slowness
  • Ans. 

    Causes of query slowness can include inefficient queries, lack of indexes, outdated statistics, hardware limitations, and network latency.

    • Inefficient queries - poorly written queries that do not utilize indexes or join tables unnecessarily

    • Lack of indexes - missing indexes on columns frequently used in queries

    • Outdated statistics - outdated or inaccurate statistics can lead to poor query execution plans

    • Hardware limitatio...

  • Answered by AI
  • Q3. How to resolve query slowness
  • Ans. 

    To resolve query slowness, analyze query execution plan, optimize indexes, update statistics, consider partitioning.

    • Analyze query execution plan to identify bottlenecks

    • Optimize indexes to improve query performance

    • Update statistics to ensure the query optimizer has accurate information

    • Consider partitioning large tables to improve query performance

  • Answered by AI
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Question about applications and possibilities.
  • Q2. Questions about frameworks.
  • Q3. Questions about past projects
Round 2 - Assignment 

Two LLM based application development

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

I applied via Referral and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. What are closures in javascript
  • Ans. 

    Closures in JavaScript are functions that have access to variables from their outer scope even after the outer function has finished executing.

    • Closures allow for maintaining state in an asynchronous environment

    • They are created whenever a function is defined within another function

    • Example: function outerFunction() { let outerVar = 'I am outer'; return function innerFunction() { console.log(outerVar); }; }

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Is NaN === NaN
Round 3 - HR 

(1 Question)

  • Q1. How do you handle stressful situations?
  • Ans. 

    I handle stressful situations by staying calm, prioritizing tasks, and seeking support when needed.

    • I prioritize tasks to focus on what needs to be done first

    • I take breaks to clear my mind and refocus

    • I communicate with team members or supervisors for guidance and support

    • I practice mindfulness techniques such as deep breathing or meditation

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company

Round 1 - One-on-one 

(1 Question)

  • Q1. Communication evaluation
Round 2 - Technical 

(1 Question)

  • Q1. Discussion on previously handled projects
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Introduction yourself
  • Ans. 

    I am a dedicated PL/SQL developer with 5 years of experience in designing and implementing database solutions.

    • Experienced in writing complex PL/SQL queries and stored procedures

    • Proficient in performance tuning and optimization of SQL queries

    • Skilled in database design and normalization principles

    • Familiar with Oracle database technologies such as triggers and packages

  • Answered by AI
  • Q2. What is join and its types
  • Ans. 

    Join is used to combine rows from two or more tables based on a related column between them.

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

    • INNER JOIN returns rows when there is at least one match in both tables

    • LEFT JOIN returns all rows from the left table and the matched rows from the right table

    • RIGHT JOIN returns all rows from the right table and the matched rows from the left table

    • FULL JOIN r...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Definition. node js , callback, eventloop
  • Q2. What is callback hell
  • Ans. 

    Callback hell is a situation in asynchronous programming where multiple nested callbacks make the code difficult to read and maintain.

    • Occurs when multiple asynchronous operations are nested within each other

    • Can lead to deeply nested code which is hard to understand and debug

    • Can be mitigated using promises, async/await, or libraries like async.js

  • Answered by AI
  • Q3. What is react and workingwhich site
  • Ans. 

    React is a JavaScript library for building user interfaces.

    • React is used for creating interactive UI components.

    • It allows developers to build reusable UI components.

    • React uses a virtual DOM for efficient rendering.

    • React is commonly used in web development for single-page applications.

  • Answered by AI
  • Q4. What is loops and how we use
  • Ans. 

    Loops are used in programming to repeat a block of code multiple times until a certain condition is met.

    • Loops help in automating repetitive tasks

    • Types of loops include for, while, and do-while

    • Example: for loop to iterate over an array and perform an operation on each element

  • Answered by AI
  • Q5. What is child process
  • Ans. 

    A child process is a process created by another process, known as the parent process.

    • Child processes inherit resources and attributes from the parent process.

    • Child processes can communicate with the parent process and other child processes.

    • Examples include when a program spawns multiple processes to perform different tasks.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - definitions. :- node js, callback, event loop

Skills evaluated in this interview

Nettechnocrats Interview FAQs

How to prepare for Nettechnocrats 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 Nettechnocrats. The most common topics and skills that interviewers at Nettechnocrats expect are SEO, Business Development, Business Development Management, Marketing and Python.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 785 Interviews
View all

Nettechnocrats Reviews and Ratings

based on 31 reviews

3.2/5

Rating in categories

3.1

Skill development

3.5

Work-Life balance

3.1

Salary & Benefits

2.9

Job Security

3.1

Company culture

3.0

Promotions/Appraisal

3.1

Work Satisfaction

Explore 31 Reviews and Ratings
SEO Executive
24 salaries
unlock blur

₹0.9 L/yr - ₹2.4 L/yr

Senior SEO Executive
6 salaries
unlock blur

₹1.6 L/yr - ₹3.7 L/yr

Team Lead
4 salaries
unlock blur

₹2.9 L/yr - ₹6.5 L/yr

Digital Marketing Executive
4 salaries
unlock blur

₹1.8 L/yr - ₹3 L/yr

IOS Developer
4 salaries
unlock blur

₹1.2 L/yr - ₹5 L/yr

Explore more salaries
Compare Nettechnocrats with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview