Upload Button Icon Add office photos

Filter interviews by

P2P SYSTEM Java Developer Interview Questions and Answers

Updated 19 Feb 2024

P2P SYSTEM Java Developer Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Naukri.com

Round 1 - Aptitude Test 

Aptitude test :-question was from medium to low.

Round 2 - Coding Test 

DSA question mainly.

Round 3 - HR 

(1 Question)

  • Q1. Basics Hr questions ,search on google
Round 4 - Group Discussion 

Normal discussion between a.

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(1 Question)

  • Q1. What is Opps and concept
  • Ans. 

    OOPs stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects.

    • OOPs focuses on creating objects that contain data and methods to manipulate that data.

    • Key concepts include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation refers to bundling data and methods that operate on the data into a single unit.

    • Inheritance allows a class to inherit properties and beh...

  • Answered by AI
Round 3 - Coding Test 

Coding reverse string

Java Developer Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size ... read more
Q2. Parent class has run() and walk() . Parent run() - calls walk() C ... read more
asked in Infosys
Q3. Which should be preferred between String and StringBuffer when th ... read more
asked in Deloitte
Q4. Convert BST to Greater Sum Tree Given a Binary Search Tree (BST) ... read more
Q5. 2. What will happen if hashcode only returns a constant? How will ... read more

Interview questions from similar companies

I applied via LinkedIn and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Basic html css js questins,
  • Q2. Box model, css tags, arrays

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic questions asked, latested for half an hour

I applied via Referral and was interviewed before May 2020. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Why did you chose your particular graduation course as your career?
  • Ans. 

    I chose my graduation course as my career because it aligned with my interests and skills.

    • I had a passion for the subject and enjoyed studying it in college

    • I excelled in the coursework and found it challenging yet rewarding

    • I researched the job prospects and found that it offered a promising career path

    • I interned in the field and gained valuable experience and connections

    • Examples: I studied computer science and pursued ...

  • Answered by AI
  • Q2. One should follow his/her dreams or rely on destiny?
  • Q3. Tell me one of your memorable day till now.

Interview Preparation Tips

Interview preparation tips for other job seekers - Candidate must have a strong base in his/her choosen subject/course. One should know basic things about concerned job and technical fields. Way of communication should be attractive (communication is not about language).

I applied via Referral and was interviewed in Jun 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 5 years from noww
  • Ans. 

    In 5 years, I see myself as a successful and experienced professional in my field.

    • Continuing to learn and grow in my career

    • Taking on more leadership roles

    • Expanding my network and connections

    • Contributing to the success of my organization

    • Achieving personal and professional goals

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay clam, plaesant

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself ?

I applied via Recruitment Consultant and was interviewed before Oct 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. What is Abstraction
  • Ans. 

    Abstraction is the process of hiding complex implementation details and exposing only the necessary information.

    • Abstraction helps in reducing complexity and increasing efficiency.

    • It allows us to focus on the essential features of an object or system.

    • Abstraction can be achieved through abstract classes, interfaces, and encapsulation.

    • For example, a car can be abstracted as a vehicle with certain properties and methods.

    • Ab...

  • Answered by AI
  • Q2. Concept of hiding implementation
  • Ans. 

    Hiding implementation means keeping the internal details of a class or function hidden from the outside world.

    • It is a fundamental principle of object-oriented programming.

    • It helps in achieving encapsulation and abstraction.

    • It prevents the user from accessing the internal workings of a class or function.

    • Examples include private variables and methods in a class.

    • It allows for easier maintenance and modification of code.

    • It...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Not bad, good atmosphere, positive response from staff

I applied via Naukri.com and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Related to restful services ,spring boot, hibernate , core java

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on booming technology and learn as much as possible.Be clear on the basic concepts .

Interview Questionnaire 

6 Questions

  • Q1. Given a Linked list , print yes if it is palindrome else print no
  • Q2. Print the level order traversal of the binary tree in the spiral form
  • Ans. 

    Print the level order traversal of binary tree in spiral form

    • Perform level order traversal of the binary tree

    • Alternate the direction of traversal for each level

    • Use a stack to reverse the order of nodes in each level

    • Print the nodes in the order of traversal

  • Answered by AI
  • Q3. Maximum of all subarrays of size k(Expected Time Complexity O(N). Input : arr[] = {1, 2, 3, 1, 4, 5, 2, 3, 6} k = 3 Output : 3 3 4 5 5 5 6
  • Ans. 

    Find the maximum element in each subarray of size k in a given array.

    • Iterate through the array from index 0 to n-k.

    • For each subarray of size k, find the maximum element.

    • Store the maximum elements in a separate array.

    • Return the array of maximum elements.

  • Answered by AI
  • Q4. Given Two sorted array of size size n each. Find the Kth largest element in these two array (Expected Time Complexity Log(n))
  • Ans. 

    To find the Kth largest element in two sorted arrays, we can use the merge step of merge sort algorithm.

    • Merge the two arrays into a single sorted array using a modified merge sort algorithm.

    • Return the Kth element from the merged array.

  • Answered by AI
  • Q5. Website having several web-pages. And also there are lot many user who are accessing the web-site. say user 1 has access pattern : x->y->z->a->b->c->d->e->f user 2 has access pattern : z->a->b->c->d user 3...
  • Q6. Given two array , one of size m+n and contains m element and other position are empty , 2nd array is of size n and contains n element. both array are sorted , now merge the second array to first one such t...
  • Ans. 

    Merge two sorted arrays into one sorted array with expected time complexity of (m+n).

    • Use a two-pointer approach to compare elements from both arrays and merge them into the first array.

    • Start comparing elements from the end of both arrays and place the larger element at the end of the first array.

    • Continue this process until all elements from the second array are merged into the first array.

  • Answered by AI

Interview Preparation Tips

Round: Test
Duration: 90 minutes

Skills: Algorithm , OS, DBMS, data structure
College Name: NIT BHOPAL

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Experience: Coding questions were comparatively easy. There were three questions.1. Given a string map each character of which to the corresponding digit in a 10 digit mobile phone keypad.2. Don't remember, will add when it comes to my mind.3. Don't remember, will add when it comes to my mind.

Skills: Coding ability, Complete knowledge of working of internet.,
College Name: IIT Bombay

P2P SYSTEM Interview FAQs

How many rounds are there in P2P SYSTEM Java Developer interview?
P2P SYSTEM interview process usually has 3-4 rounds. The most common rounds in the P2P SYSTEM interview process are Coding Test, Resume Shortlist and Technical.

Tell us how to improve this page.

P2P SYSTEM Java Developer Interview Process

based on 3 interviews

Interview experience

4.7
  
Excellent
View more
P2P SYSTEM Java Developer Salary
based on 181 salaries
₹2.4 L/yr - ₹6.5 L/yr
27% less than the average Java Developer Salary in India
View more details

P2P SYSTEM Java Developer Reviews and Ratings

based on 15 reviews

4.5/5

Rating in categories

4.6

Skill development

4.3

Work-life balance

3.9

Salary

4.5

Job security

4.6

Company culture

4.1

Promotions

4.5

Work satisfaction

Explore 15 Reviews and Ratings
Java Developer
181 salaries
unlock blur

₹2.4 L/yr - ₹6.5 L/yr

Software Engineer
38 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Software Developer
31 salaries
unlock blur

₹2.8 L/yr - ₹6 L/yr

Salesforce Developer
16 salaries
unlock blur

₹2.4 L/yr - ₹7 L/yr

Softwaretest Engineer
12 salaries
unlock blur

₹2.1 L/yr - ₹5.1 L/yr

Explore more salaries
Compare P2P SYSTEM with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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