Upload Button Icon Add office photos
Engaged Employer

i

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

Naukri Verified Tick

Compare button icon Compare button icon Compare
4.0

based on 699 Reviews

Filter interviews by

Naukri Interview Questions, Process, and Tips

Updated 9 Jan 2025

Top Naukri Interview Questions and Answers

View all 90 questions

Naukri Interview Experiences

Popular Designations

179 interviews found

Interview Questions & Answers

user image Anonymous

posted on 2 Apr 2015

Interview Questionnaire 

31 Questions

  • Q1. Difference between threads and process?
  • Ans. 

    Threads are lightweight units of execution within a process, while processes are independent instances of a program.

    • Threads share the same memory space and resources of a process, while processes have their own memory space and resources.

    • Threads are faster to create and terminate compared to processes.

    • Threads within a process can communicate with each other directly, while processes communicate through inter-process co...

  • Answered by AI
  • Q2. How threading works at CPU level?
  • Ans. 

    Threading at the CPU level involves the execution of multiple threads simultaneously to improve performance.

    • Threading allows for parallel execution of tasks on a CPU.

    • Threads are scheduled by the operating system and executed by the CPU.

    • Each thread has its own stack and program counter.

    • Threads share the same memory space, allowing for communication and data sharing.

    • Thread synchronization mechanisms like locks and semaph...

  • Answered by AI
  • Q3. Idea about thrashing?
  • Ans. 

    Thrashing is a phenomenon in computer systems where excessive paging occurs, leading to a decrease in overall system performance.

    • Thrashing occurs when a computer's virtual memory system is constantly swapping data between RAM and disk.

    • It typically happens when the system is overloaded with too many processes or when the working set of a process exceeds the available physical memory.

    • Thrashing can severely impact system ...

  • Answered by AI
  • Q4. List page replacement policies?
  • Ans. 

    Page replacement policies are algorithms used in operating systems to decide which pages to evict from memory when a new page needs to be loaded.

    • FIFO (First-In, First-Out): Evicts the oldest page in memory.

    • LRU (Least Recently Used): Evicts the least recently used page in memory.

    • LFU (Least Frequently Used): Evicts the least frequently used page in memory.

    • Optimal: Evicts the page that will not be used for the longest per...

  • Answered by AI
  • Q5. What data structure uses FIFO?
  • Ans. 

    Queue is a data structure that uses FIFO (First-In-First-Out) principle.

    • Elements are added to the back of the queue and removed from the front.

    • Common operations include enqueue (add element) and dequeue (remove element).

    • Examples: waiting in line, printing tasks in order.

  • Answered by AI
  • Q6. How paging works ?
  • Ans. 

    Paging is a memory management technique used by operating systems to efficiently manage memory.

    • Paging divides the physical memory into fixed-size blocks called pages.

    • Virtual memory is divided into fixed-size blocks called page frames.

    • When a process needs to access a memory location, the operating system maps the virtual address to a physical address.

    • Page tables are used to keep track of the mapping between virtual and ...

  • Answered by AI
  • Q7. What are page faults?
  • Ans. 

    Page faults occur when a program requests data from the disk that is not currently in the main memory.

    • Page faults happen when a program tries to access data that is not present in the main memory.

    • When a page fault occurs, the operating system needs to retrieve the required data from the disk and load it into memory.

    • Page faults can significantly slow down program execution as disk access is much slower compared to memor...

  • Answered by AI
  • Q8. What is ATM?
  • Ans. 

    ATM stands for Automated Teller Machine. It is an electronic banking device that allows customers to perform financial transactions.

    • ATM is a self-service machine used for banking purposes.

    • It provides services like cash withdrawal, balance inquiry, fund transfers, and bill payments.

    • ATMs are available 24/7 and are located in various places like banks, shopping malls, and convenience stores.

    • Customers can access their acco...

  • Answered by AI
  • Q9. Have you ever made a thread based program in c?
  • Ans. 

    Yes, I have made a thread-based program in C.

    • Threads in C allow for concurrent execution of multiple tasks.

    • Threads can be created using the pthread library in C.

    • Thread-based programs can improve performance and responsiveness.

    • Example: Creating multiple threads to perform parallel processing tasks.

  • Answered by AI
  • Q10. Let suppose there is a large file of about 1PB ( = 1000TB ) and you want to read it using 4 threads. How it these threads would work. I said about Sync but he asked in a bit details
  • Ans. 

    The 1PB file can be read using 4 threads by dividing the file into smaller chunks and assigning each thread to read a chunk.

    • Divide the file into smaller chunks of equal size.

    • Assign each thread to read a specific chunk of the file.

    • Ensure synchronization between the threads to avoid conflicts.

    • Combine the data read by each thread to obtain the complete file content.

  • Answered by AI
  • Q11. A large linked list is given with a pointer to a middle node. How would you delete that node ?
  • Q12. He asked about what Internet Technologies I have worked on ? I listed html,css,php,js,jquery,ajax
  • Q13. How the server works ? what server you used ? ( i said apache )
  • Q14. Is server a process or a thread. I just guessed that the server is a process that is continuously listening to a port and when a request comes through the network it creates a thread for it which invokes ...
  • Q15. He asked difference between compiler & interpreter ? can php be compiled ?
  • Q16. Are you comfortable with php ? ( after yes ) $a = 2; if( $a = 3 ) echo “Hello”; else echo “False”; Output ?
  • Ans. 

    The output will be 'Hello'.

    • The code assigns the value 3 to the variable $a using the assignment operator (=).

    • The if statement checks if the value of $a is truthy (non-zero, non-null).

    • Since 3 is truthy, the condition evaluates to true and 'Hello' is echoed.

  • Answered by AI
  • Q17. What is Ajax ?
  • Ans. 

    Ajax is a web development technique that allows for asynchronous communication between the client and server.

    • Ajax stands for Asynchronous JavaScript and XML.

    • It enables web pages to update content without reloading the entire page.

    • Ajax uses XMLHttpRequest or fetch API to send and receive data asynchronously.

    • Commonly used in dynamic web applications to enhance user experience.

    • Example: Autocomplete search suggestions, rea

  • Answered by AI
  • Q18. How the ajax works ? tell me about headers ?
  • Ans. 

    AJAX is a technique used to send and receive data from a server without refreshing the entire web page.

    • AJAX stands for Asynchronous JavaScript and XML.

    • It allows for asynchronous communication between the client and server.

    • AJAX uses XMLHttpRequest object to send and receive data.

    • Headers in AJAX requests contain additional information about the request or response.

    • Common headers include Content-Type, Accept, and Authoriz...

  • Answered by AI
  • Q19. What is an IP Address and of how many bits ?
  • Ans. 

    An IP address is a unique numerical label assigned to each device connected to a computer network. It consists of 32 bits.

    • IP address is used to identify and locate devices on a network.

    • It is composed of four sets of numbers separated by periods.

    • Each set can range from 0 to 255, representing 8 bits.

    • Example: 192.168.0.1

  • Answered by AI
  • Q20. What is network addressing ? your networks would have a public id address then who manages the internal networks ip addresses ?
  • Q21. What are relational databases ? why we use relational databases ? Have you worked over NoSQL ?
  • Ans. 

    Relational databases are structured databases that store data in tables with relationships. They are used for data integrity and flexibility.

    • Relational databases store data in tables with rows and columns.

    • They use structured query language (SQL) to manipulate and retrieve data.

    • Tables can have relationships with each other through keys.

    • Relational databases ensure data integrity and consistency through constraints.

    • They p...

  • Answered by AI
  • Q22. What is Left Inner Join ? Write C code for Left Inner Join if the two tables are given in form of arrays
  • Ans. 

    Left Inner Join is a type of join operation in relational databases that returns only the matching records from both tables.

    • Left Inner Join combines rows from two tables based on a related column between them.

    • It returns only the matching records from both tables.

    • In C code, you can implement Left Inner Join using arrays by iterating through both arrays and comparing the related column values.

    • Here's an example of C code

  • Answered by AI
  • Q23. What is difference between Unique Key and Primary Key
  • Ans. 

    A primary key is a unique identifier for a record in a table, while a unique key ensures that all values in a column are distinct.

    • Primary key is used to uniquely identify a record in a table.

    • A table can have only one primary key.

    • Primary key cannot have null values.

    • Unique key ensures that all values in a column are distinct.

    • A table can have multiple unique keys.

    • Unique key can have null values.

  • Answered by AI
  • Q24. What are Web Sockets ? ( I mentioned this in my Resume so he asked )What is Socket Programming ?
  • Q25. What UDP has advantages over TCP
  • Ans. 

    UDP has advantages over TCP in terms of speed, simplicity, and low overhead.

    • UDP is faster than TCP because it does not require the establishment of a connection before data transfer.

    • UDP is simpler than TCP as it does not have features like flow control, congestion control, and error recovery.

    • UDP has lower overhead compared to TCP as it does not include sequence numbers, acknowledgments, or retransmission mechanisms.

    • UDP...

  • Answered by AI
  • Q26. What is HTTP ?
  • Ans. 

    HTTP is a protocol used for communication between web browsers and servers.

    • HTTP stands for Hypertext Transfer Protocol.

    • It is the foundation of data communication for the World Wide Web.

    • HTTP uses a client-server model where the browser acts as the client and requests data from the server.

    • It operates on top of TCP/IP and uses port 80 by default.

    • HTTP is stateless, meaning each request is independent and unrelated to previ...

  • Answered by AI
  • Q27. How HTTP request transfers form Client to Server ? What are the headers associated with it ?
  • Ans. 

    HTTP request transfers data from client to server using headers.

    • HTTP request is sent from the client to the server using the HTTP protocol.

    • The request consists of a request line, headers, and an optional message body.

    • Headers provide additional information about the request, such as the content type, cookies, authentication, etc.

    • Some common headers include 'Content-Type', 'User-Agent', 'Authorization', 'Cookie', etc.

    • Hea...

  • Answered by AI
  • Q28. Reverse of a Linked List?
  • Ans. 

    Reverse a linked list by changing the direction of the pointers.

    • Iteratively swap the next and previous pointers of each node.

    • Use three pointers to keep track of the current, previous, and next nodes.

    • Repeat until the current node becomes null.

    • Example: 1 -> 2 -> 3 -> 4 -> null becomes 4 -> 3 -> 2 -> 1 -> null.

  • Answered by AI
  • Q29. What is MVC framework ? Tell me about it’s workflow ? ( Resume Question )
  • Ans. 

    MVC framework is a software design pattern that separates an application into three interconnected components: Model, View, and Controller.

    • Model represents the data and business logic of the application.

    • View is responsible for displaying the user interface.

    • Controller handles user input, updates the model, and interacts with the view.

    • The workflow starts with the user interacting with the view, which triggers a request t...

  • Answered by AI
  • Q30. What is JSON ? What is XML ?
  • Ans. 

    JSON is a lightweight data interchange format. XML is a markup language used for structuring and storing data.

    • JSON stands for JavaScript Object Notation.

    • JSON is easy to read and write for humans and easy to parse and generate for machines.

    • JSON uses key-value pairs to represent data.

    • XML stands for eXtensible Markup Language.

    • XML uses tags to define elements and attributes to provide additional information about elements.

    • ...

  • Answered by AI
  • Q31. Write a sample JSON and XML. Which one is better ? What are the advantages of JSON over XML!
  • Ans. 

    JSON is better than XML for data interchange due to its simplicity, readability, and smaller file size.

    • JSON is more lightweight and has a simpler syntax compared to XML.

    • JSON is easier to read and write for humans.

    • JSON has better support for arrays and objects.

    • JSON has a smaller file size compared to XML.

    • JSON is faster to parse and process compared to XML.

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: There was just the Technical interviews.. The questions asked are listed above

College Name: NA

Skills evaluated in this interview

work from home Interview Questions & Answers

user image Hemavathi

posted on 26 Nov 2024

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

I applied via Job Portal and was interviewed in Oct 2024. There were 11 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. What is your name
  • Q2. What your Qualifications
Round 2 - HR 

(2 Questions)

  • Q1. Your job experience
  • Q2. Your farther name
Round 3 - HR 

(2 Questions)

  • Q1. What are the age
  • Q2. What your location
Round 4 - HR 

(2 Questions)

  • Q1. Your deta experience
  • Ans. 

    I have over 5 years of data entry experience in various industries.

    • Worked as a data entry clerk for a marketing firm for 2 years

    • Managed data entry tasks for a healthcare company for 3 years

    • Proficient in using Microsoft Excel and data management software

  • Answered by AI
  • Q2. Your rich and poor
Round 5 - HR 

(2 Questions)

  • Q1. 1 year experience job you
  • Q2. Your current with answer
Round 6 - One-on-one 

(2 Questions)

  • Q1. Your full Nick name
  • Q2. So your @ email id
Round 7 - One-on-one 

(2 Questions)

  • Q1. Your company experience
  • Q2. I tell you my company details
Round 8 - One-on-one 

(2 Questions)

  • Q1. Your language tell me
  • Q2. Your current situation
Round 9 - One-on-one 

(2 Questions)

  • Q1. Your current details
  • Q2. Your only 10 pass
Round 10 - One-on-one 

(2 Questions)

  • Q1. Tell me yourself
  • Q2. Why should we hir you
Round 11 - Assignment 

How do you value an asset
Tell me about different asset class
What are the biggest risks in th market

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for interviews
An interview invitation means your resume or networking strategy has caught the attention of an organization
Interview experience
4
Good
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Company Website

Round 1 - Case Study 

To learn case study first

Round 2 - One-on-one 

(5 Questions)

  • Q1. This is my first experience
  • Q2. First i will join this job
  • Q3. How i am telling you
  • Q4. This is my first attempt
  • Q5. Great opportunity

Interview Preparation Tips

Interview preparation tips for other job seekers - Hard work never fails

Billing Executive Interview Questions asked at other Companies

Q1. If a customer doesn't have a GST, how will you ship the goods him...?
View answer (3)

Software Developer Interview Questions & Answers

user image Sachin Tiwari

posted on 1 Nov 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is ambitionbox
  • Q2. How many questions are there in that
Round 2 - One-on-one 

(2 Questions)

  • Q1. Same as above questions
  • Q2. Same as above questions second one

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Naukri interview questions for popular designations

 Data Entry Operator

 (7)

 Software Engineer

 (5)

 Sr Sales Executive Naukri.COM

 (5)

 Sales Executive

 (4)

 Software Developer

 (4)

 Computer Operator

 (3)

 Inside Sales Executive

 (3)

 Sales Girl

 (3)

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

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

Round 1 - One-on-one 

(5 Questions)

  • Q1. Data entry Training
  • Q2. Work from home 12th pass
  • Q3. Work from home 12 pass house wife
  • Q4. Data entry training one week kudunga sir
  • Q5. 8 hours work one week or six days

Interview Preparation Tips

Topics to prepare for Naukri Data Entry Operator interview:
  • Data entry training
Interview preparation tips for other job seekers - Yes

Data Entry Operator Interview Questions asked at other Companies

Q1. What is skills matrix of Return center Department?
View answer (41)

Get interview-ready with Top Naukri Interview Questions

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

I was interviewed in Aug 2024.

Round 1 - One-on-one 

(3 Questions)

  • Q1. I want to know about my income.
  • Q2. I want to know more about it.
  • Q3. I want to understand more.
Round 2 - One-on-one 

(2 Questions)

  • Q1. Also want to know how to do it so that we can earn this
  • Q2. I also want you can teach me so that I can work well.

Interview Preparation Tips

Interview preparation tips for other job seekers - Thank you.

Online Business Manager Interview Questions asked at other Companies

Q1. How do you deal with disagreement?
View answer (1)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com

Round 1 - One-on-one 

(3 Questions)

  • Q1. How to I will start our work
  • Q2. What's my monthly sellery
  • Q3. Where are you sending me a work
Round 2 - Group Discussion 

Graphic design is to designes some posters some headlines were creating a best and beautiful designs

Round 3 - How to I started my work 

(2 Questions)

  • Q1. I hope my work you will be like
  • Q2. How and when I started my work
Round 4 - Technical 

(2 Questions)

  • Q1. What's you send me payment
  • Q2. What's my work timings

Graphic Designer Interview Questions asked at other Companies

Q1. If assignment goes perfect and you are suitable for the job then only you will be able to face this final round and in this round asking about the expected salary but at the end offers their criteria with fix salary only.
View answer (8)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Narayana Business School Ahmedabad and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell about yourself
  • Q2. Why you want to do Sales

Assistant Manager Corporate Sales Interview Questions asked at other Companies

Q1. What are the Assets and Liabilities for a Bank?
View answer (1)

Inside Sales Executive interview

user image Mad Over Makings

posted on 23 Nov 2021

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

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

Round 1 - One-on-one 

(3 Questions)

  • Q1. Tell about your self
  • Ans. 

    I am a detail-oriented individual with strong data entry skills and a proven track record of accuracy and efficiency.

    • I have X years of experience in data entry

    • Proficient in using Microsoft Excel and other data entry software

    • Strong attention to detail and accuracy

    • Ability to work efficiently under pressure

    • Excellent time management skills

    • Completed a data entry certification course

    • Previous experience in a fast-paced office

  • Answered by AI
  • Q2. Why did we hire you
  • Ans. 

    You hired me because of my strong data entry skills, attention to detail, and ability to work efficiently.

    • I have a proven track record of accurately entering data in previous roles.

    • I am highly detail-oriented and always double-check my work to ensure accuracy.

    • I am able to work quickly and efficiently without sacrificing accuracy.

    • I have experience using various data entry software and tools.

    • I am a quick learner and can

  • Answered by AI
  • Q3. What is your creativity
  • Ans. 

    My creativity shines through in my ability to find innovative solutions to data entry challenges.

    • I often come up with new ways to streamline processes and improve efficiency in data entry tasks.

    • I enjoy thinking outside the box to find creative solutions to complex data entry problems.

    • I have a knack for finding patterns and organizing data in a visually appealing and easy-to-understand manner.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Naukri Data Entry Operator interview:
  • Design
Interview preparation tips for other job seekers - This job was very nice and the company also very nice.

Data Entry Operator Interview Questions asked at other Companies

Q1. What is skills matrix of Return center Department?
View answer (41)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Nov 2024.

Round 1 - HR 

(3 Questions)

  • Q1. Your job experience
  • Q2. What is your name
  • Q3. No experience my name hemavathi. V
Round 2 - HR 

(2 Questions)

  • Q1. Tell me your family members
  • Q2. Your farther name

Implementation Consultant Interview Questions asked at other Companies

Q1. In a factory as per govt rule how much leave is applicable
View answer (1)

Naukri Interview FAQs

How many rounds are there in Naukri interview?
Naukri interview process usually has 2-3 rounds. The most common rounds in the Naukri interview process are One-on-one Round, Resume Shortlist and HR.
How to prepare for Naukri 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 Naukri. The most common topics and skills that interviewers at Naukri expect are Hardware Engineering, Desktop Support, Java, Sales and Business Development.
What are the top questions asked in Naukri interview?

Some of the top questions asked at the Naukri interview -

  1. What is an IP Address and of how many bit...read more
  2. Are you Interested For This Job? Which languages are you know in softwa...read more
  3. Let suppose there is a large file of about 1PB ( = 1000TB ) and you want to rea...read more
How long is the Naukri interview process?

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

Tell us how to improve this page.

Naukri Interview Process

based on 47 interviews in last 1 year

Interview experience

4.3
  
Good
View more

People are getting interviews through

based on 128 Naukri interviews
Job Portal
Company Website
Campus Placement
WalkIn
Referral
Recruitment Consultant
30%
29%
13%
5%
5%
2%
16% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 4.9k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Info Edge Interview Questions
4.0
 • 314 Interviews
LinkedIn Interview Questions
4.3
 • 78 Interviews
Quikr Interview Questions
3.8
 • 31 Interviews
Foundit Interview Questions
3.6
 • 26 Interviews
Glassdoor Interview Questions
3.5
 • 7 Interviews
CareerBuilder Interview Questions
4.0
 • 2 Interviews
View all

Naukri Reviews and Ratings

based on 699 reviews

4.0/5

Rating in categories

3.8

Skill development

3.9

Work-Life balance

3.8

Salary & Benefits

4.2

Job Security

3.9

Company culture

3.7

Promotions/Appraisal

3.8

Work Satisfaction

Explore 699 Reviews and Ratings
Assistant Manager
124 salaries
unlock blur

₹3.8 L/yr - ₹10 L/yr

Senior Executive
97 salaries
unlock blur

₹3.5 L/yr - ₹8 L/yr

Senior Executive Corporate Sales
95 salaries
unlock blur

₹4.5 L/yr - ₹8 L/yr

Assistant Manager Corporate Sales
74 salaries
unlock blur

₹4.3 L/yr - ₹9.5 L/yr

Deputy Manager
71 salaries
unlock blur

₹5 L/yr - ₹14 L/yr

Explore more salaries
Compare Naukri with

Info Edge

4.0
Compare

Quikr

3.8
Compare

Foundit

3.6
Compare

Times Business Solutions

3.4
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