Upload Button Icon Add office photos

JNET Technologies

Compare button icon Compare button icon Compare

Filter interviews by

JNET Technologies Interview Questions and Answers

Updated 30 Jan 2025
Popular Designations

12 Interview questions

A Software Engineer was asked 7mo ago
Q. Write a small JavaScript program and explain its output.
Ans. 

A simple JavaScript program that demonstrates basic concepts like variables, functions, and loops.

  • Variables: Use 'let' or 'const' to declare variables. Example: 'let x = 10;'

  • Functions: Define reusable code blocks. Example: 'function greet() { return 'Hello!'; }'

  • Loops: Iterate over arrays or perform repeated actions. Example: 'for (let i = 0; i < 5; i++) { console.log(i); }'

View all Software Engineer interview questions
A Software Engineer Trainee was asked 8mo ago
Q. What are the types of state management in React?
Ans. 

Types of state management in React include local state, props, context API, Redux, and MobX.

  • Local state: State managed within a component using useState hook.

  • Props: Data passed from parent to child components.

  • Context API: Allows sharing state across multiple components without prop drilling.

  • Redux: External state management library for managing complex state in large applications.

  • MobX: Another external state manage...

View all Software Engineer Trainee interview questions
A Software Engineer Trainee was asked 8mo ago
Q. What are HTML and CSS?
Ans. 

HTML and CSS are languages used for creating and styling web pages.

  • HTML stands for HyperText Markup Language and is used for creating the structure of a web page.

  • CSS stands for Cascading Style Sheets and is used for styling the elements on a web page.

  • HTML uses tags to define different elements like headings, paragraphs, images, and links.

  • CSS allows for customization of colors, fonts, layouts, and other visual aspe...

View all Software Engineer Trainee interview questions
A Software Engineer Trainee was asked 8mo ago
Q. What is prop drilling?
Ans. 

Prop drilling is the process of passing down props from a parent component to nested child components, even if the intermediate components do not use the props.

  • Prop drilling can lead to unnecessary passing of props through multiple levels of components.

  • It can make the code harder to maintain and understand.

  • One way to avoid prop drilling is by using context API or state management libraries like Redux.

  • Example: Pare...

View all Software Engineer Trainee interview questions
🔥 Asked by recruiter 2 times
A Software Engineer Trainee was asked 8mo ago
Q. What is React JS?
Ans. 

React JS is a JavaScript library for building user interfaces.

  • React JS is developed and maintained by Facebook.

  • It allows developers to create reusable UI components.

  • React uses a virtual DOM for better performance.

  • It follows a component-based architecture.

  • React can be used for building single-page applications.

View all Software Engineer Trainee interview questions
A Plsql Developer was asked
Q. Explain the LEAD and LAG analytic functions.
Ans. 

Lead and Lag are analytic functions in SQL used to access data from a previous or subsequent row in a result set.

  • Lead function is used to access data from a subsequent row in the result set.

  • Lag function is used to access data from a previous row in the result set.

  • Both functions take three arguments: the column to retrieve data from, the number of rows forward or backward to look, and a default value if the offset ...

View all Plsql Developer interview questions
A Plsql Developer was asked
Q. Explain the SQL Loader utility.
Ans. 

SQL Loader is a tool provided by Oracle for loading data from external files into database tables.

  • SQL Loader is used to load data from flat files (such as CSV) into Oracle database tables.

  • It can handle large volumes of data efficiently.

  • Control files are used to specify the format of the data file and the target table columns.

  • SQL Loader can perform various data transformations during the loading process.

  • It is commo...

View all Plsql Developer interview questions
Are these interview questions helpful?
A Plsql Developer was asked
Q. Explain performance tuning.
Ans. 

Performance tuning involves optimizing the speed and efficiency of a system or application.

  • Identifying and resolving bottlenecks in the system

  • Optimizing SQL queries by adding indexes, rewriting queries, or using hints

  • Tuning database parameters such as memory allocation and buffer sizes

  • Using tools like Explain Plan to analyze query performance

  • Caching frequently accessed data to reduce load on the database

View all Plsql Developer interview questions
A Plsql Developer was asked
Q. Explain the refresh mechanism in SQL.
Ans. 

Refresh mechanism in SQL is used to update the data in a materialized view or a snapshot to reflect changes in the base tables.

  • Refresh mechanism can be manual or automatic.

  • Manual refresh requires the user to explicitly refresh the materialized view using a command like REFRESH MATERIALIZED VIEW.

  • Automatic refresh can be set up using options like ON COMMIT or ON DEMAND.

  • Examples of automatic refresh include fast refr...

View all Plsql Developer interview questions
A Software Engineer Trainee was asked 8mo ago
Q. Explain Redux and Context API
Ans. 

Redux is a predictable state container for JavaScript apps. Context API is a way to pass data through the component tree without having to pass props down manually.

  • Redux is a state management library commonly used with React to manage application state in a predictable way.

  • Redux follows a unidirectional data flow pattern, where the state of the whole application is stored in a single store.

  • Actions are dispatched t...

View all Software Engineer Trainee interview questions

JNET Technologies Interview Experiences

12 interviews found

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Technical 

(2 Questions)

  • Q1. UX and UI Related
  • Q2. HTML, CSS, and Bootstrap
Round 2 - Project & Tech Related 

(1 Question)

  • Q1. Question on your projects and current role
Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Dec 2024.

Round 1 - HR 

(1 Question)

  • Q1. What is the biggest achievement in your life how could you reach that achievement?
  • Ans. 

    My biggest achievement was graduating at the top of my class in college, through hard work and dedication.

    • Maintained a high GPA throughout college by studying consistently and seeking help when needed

    • Participated in extracurricular activities to develop leadership and teamwork skills

    • Completed a challenging senior thesis project that received recognition from faculty members

  • Answered by AI
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain about performance tuning
  • Ans. 

    Performance tuning involves optimizing the speed and efficiency of a system or application.

    • Identifying and resolving bottlenecks in the system

    • Optimizing SQL queries by adding indexes, rewriting queries, or using hints

    • Tuning database parameters such as memory allocation and buffer sizes

    • Using tools like Explain Plan to analyze query performance

    • Caching frequently accessed data to reduce load on the database

  • Answered by AI
  • Q2. Expalin about sql loader utility
  • Ans. 

    SQL Loader is a tool provided by Oracle for loading data from external files into database tables.

    • SQL Loader is used to load data from flat files (such as CSV) into Oracle database tables.

    • It can handle large volumes of data efficiently.

    • Control files are used to specify the format of the data file and the target table columns.

    • SQL Loader can perform various data transformations during the loading process.

    • It is commonly u...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Expalin about refresh mechanism in sql
  • Ans. 

    Refresh mechanism in SQL is used to update the data in a materialized view or a snapshot to reflect changes in the base tables.

    • Refresh mechanism can be manual or automatic.

    • Manual refresh requires the user to explicitly refresh the materialized view using a command like REFRESH MATERIALIZED VIEW.

    • Automatic refresh can be set up using options like ON COMMIT or ON DEMAND.

    • Examples of automatic refresh include fast refresh a...

  • Answered by AI
  • Q2. Expalin about lead and lag
  • Ans. 

    Lead and Lag are analytic functions in SQL used to access data from a previous or subsequent row in a result set.

    • Lead function is used to access data from a subsequent row in the result set.

    • Lag function is used to access data from a previous row in the result set.

    • Both functions take three arguments: the column to retrieve data from, the number of rows forward or backward to look, and a default value if the offset goes ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Preapre weel you can crack the interview

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Aug 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Basic mvc,sql,c# questions
Round 3 - Technical 

(1 Question)

  • Q1. Scenario based questions on c#,sql
Round 4 - Coo 

(1 Question)

  • Q1. Questions about previous work experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not join this company.no matter what

Project Lead Interview Questions & Answers

user image Shyam Gupta

posted on 22 Sep 2023

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

General question on aptitude test

Round 3 - Coding Test 

Common test on math & science .

Round 4 - Technical 

(1 Question)

  • Q1. Normal question common,
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a recent graduate with a degree in Computer Science, passionate about coding and problem-solving.

    • Recent graduate with a degree in Computer Science

    • Passionate about coding and problem-solving

    • Experience with programming languages like Java, Python, and C++

  • Answered by AI
  • Q2. What are HTML and CSS?
  • Ans. 

    HTML and CSS are languages used for creating and styling web pages.

    • HTML stands for HyperText Markup Language and is used for creating the structure of a web page.

    • CSS stands for Cascading Style Sheets and is used for styling the elements on a web page.

    • HTML uses tags to define different elements like headings, paragraphs, images, and links.

    • CSS allows for customization of colors, fonts, layouts, and other visual aspects o...

  • Answered by AI
  • Q3. What is React JS?
  • Ans. 

    React JS is a JavaScript library for building user interfaces.

    • React JS is developed and maintained by Facebook.

    • It allows developers to create reusable UI components.

    • React uses a virtual DOM for better performance.

    • It follows a component-based architecture.

    • React can be used for building single-page applications.

  • Answered by AI
  • Q4. What is prop drilling?
  • Ans. 

    Prop drilling is the process of passing down props from a parent component to nested child components, even if the intermediate components do not use the props.

    • Prop drilling can lead to unnecessary passing of props through multiple levels of components.

    • It can make the code harder to maintain and understand.

    • One way to avoid prop drilling is by using context API or state management libraries like Redux.

    • Example: Parent co...

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. What is React JS?
  • Ans. 

    React JS is a JavaScript library for building user interfaces.

    • React JS is developed and maintained by Facebook.

    • It allows developers to create reusable UI components.

    • React uses a virtual DOM for better performance.

    • It follows a component-based architecture.

    • React can be used for building single-page applications.

  • Answered by AI
  • Q2. What is Reconcilation?
  • Ans. 

    Reconciliation is the process of comparing two sets of records to ensure they are in agreement.

    • Reconciliation involves verifying and adjusting financial transactions to ensure accuracy.

    • It is commonly used in accounting to match transactions in bank statements with internal records.

    • Reconciliation helps identify discrepancies and errors that need to be resolved.

    • Examples include reconciling credit card statements with rec...

  • Answered by AI
  • Q3. What are the types of state management in react?
  • Ans. 

    Types of state management in React include local state, props, context API, Redux, and MobX.

    • Local state: State managed within a component using useState hook.

    • Props: Data passed from parent to child components.

    • Context API: Allows sharing state across multiple components without prop drilling.

    • Redux: External state management library for managing complex state in large applications.

    • MobX: Another external state management ...

  • Answered by AI
  • Q4. Explain Redux and Context API
  • Ans. 

    Redux is a predictable state container for JavaScript apps. Context API is a way to pass data through the component tree without having to pass props down manually.

    • Redux is a state management library commonly used with React to manage application state in a predictable way.

    • Redux follows a unidirectional data flow pattern, where the state of the whole application is stored in a single store.

    • Actions are dispatched to upd...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - My interview happened in mid 2022 where 1 round was a normal technical round with 1-1.
The second round was deep into the foundations of javascript and React including array and object operations, react implementation techniques, etc.
The second round was lengthy due to the merging of the managerial round into the technical round.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Walk-in

Round 1 - Aptitude Test 

Trains, coding and decoding, other topics

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

I applied via Referral and was interviewed before Nov 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Java script related questions promises, asynchronous and synchronous etc..
  • Q2. Js coding small program and one react program counter
Round 2 - Technical 

(1 Question)

  • Q1. Javascript small program and output
  • Ans. 

    A simple JavaScript program that demonstrates basic concepts like variables, functions, and loops.

    • Variables: Use 'let' or 'const' to declare variables. Example: 'let x = 10;'

    • Functions: Define reusable code blocks. Example: 'function greet() { return 'Hello!'; }'

    • Loops: Iterate over arrays or perform repeated actions. Example: 'for (let i = 0; i < 5; i++) { console.log(i); }'

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Expected salary and work life balance project related
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about yourself ? Fallow up: about project
  • Q2. OOPs based questions
Round 2 - Coding Test 

You will be given some coding questions and need to code them on your machine. This is happened in virtual mode.

Round 3 - Technical 

(2 Questions)

  • Q1. OOPS based questions
  • Q2. Behavioural questions

ASP.NET Developer Interview Questions & Answers

user image chakali Ashokkumar

posted on 6 Feb 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
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 - Group Discussion 

About your self,jam session,and group discussion

Round 3 - Jam 

(2 Questions)

  • Q1. Tell me about your self?
  • Ans. 

    I am an experienced ASP.NET Developer with a strong background in web development and a passion for creating efficient and user-friendly applications.

    • Over 5 years of experience in ASP.NET development

    • Proficient in C#, HTML, CSS, JavaScript, and SQL

    • Strong understanding of MVC architecture and object-oriented programming

    • Experience with front-end frameworks like Angular and React

    • Developed and maintained multiple web applic...

  • Answered by AI
  • Q2. Pollution (group discussion ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Good in communications and as well as coding and good analytical skills

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about JNET Technologies?
Ask anonymously on communities.

JNET Technologies Interview FAQs

How many rounds are there in JNET Technologies interview?
JNET Technologies interview process usually has 2-3 rounds. The most common rounds in the JNET Technologies interview process are Technical, Resume Shortlist and Coding Test.
How to prepare for JNET Technologies 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 JNET Technologies. The most common topics and skills that interviewers at JNET Technologies expect are .Net, Javascript, Java, SQL and C#.
What are the top questions asked in JNET Technologies interview?

Some of the top questions asked at the JNET Technologies interview -

  1. What are the types of state management in rea...read more
  2. What is Reconcilati...read more
  3. What are HTML and C...read more
How long is the JNET Technologies interview process?

The duration of JNET Technologies interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.7/5

based on 13 interview experiences

Difficulty level

Easy 13%
Moderate 63%
Hard 25%

Duration

Less than 2 weeks 63%
2-4 weeks 25%
4-6 weeks 13%
View more

Interview Questions from Similar Companies

MAQ Software Interview Questions
1.9
 • 104 Interviews
Webkul Software Interview Questions
4.0
 • 71 Interviews
Softenger Interview Questions
4.0
 • 59 Interviews
Tata Digital Interview Questions
2.8
 • 48 Interviews
View all

JNET Technologies Reviews and Ratings

based on 185 reviews

4.0/5

Rating in categories

3.9

Skill development

3.6

Work-life balance

3.9

Salary

3.8

Job security

3.9

Company culture

3.6

Promotions

3.8

Work satisfaction

Explore 185 Reviews and Ratings
Software Engineer
57 salaries
unlock blur

₹5.2 L/yr - ₹11.7 L/yr

Senior Software Engineer
54 salaries
unlock blur

₹11.1 L/yr - ₹20.8 L/yr

Software Developer
33 salaries
unlock blur

₹5.7 L/yr - ₹14.2 L/yr

Network Engineer
26 salaries
unlock blur

₹2.4 L/yr - ₹3.6 L/yr

Project Engineer
25 salaries
unlock blur

₹1.5 L/yr - ₹4.4 L/yr

Explore more salaries
Compare JNET Technologies with

Tekwissen

4.8
Compare

Softenger

4.0
Compare

XcelServ Solutions

4.4
Compare

Capital Numbers Infotech

4.4
Compare
write
Share an Interview