Upload Button Icon Add office photos

Filter interviews by

Prasanna Technologies Java Developer Interview Questions and Answers

Updated 5 Jul 2024

Prasanna Technologies Java Developer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Fair and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

There were 50 MCQs of java

Round 2 - Technical 

(1 Question)

  • Q1. What is jdk, JVM, Reverse a string
  • Ans. 

    JDK is Java Development Kit, JVM is Java Virtual Machine. Reversing a string involves flipping the characters in a string.

    • JDK is a software development kit used for developing Java applications.

    • JVM is a virtual machine that executes Java bytecode.

    • To reverse a string, you can use a loop to iterate through the characters and build a new string in reverse order.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Prasanna Technologies Java Developer interview:
  • Java
  • Arrays
  • Strings
  • Core Java
  • collection framework
Interview preparation tips for other job seekers - I was not prepared for java since I attended the job fair for business analyst role so couldnt crack.

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the difference between ==and .equals() in java?
  • Ans. 

    In Java, == compares memory addresses while .equals() compares the actual content of objects.

    • == compares memory addresses of objects, while .equals() compares the actual content of objects.

    • == is used to compare primitive data types, while .equals() is used to compare objects.

    • Example: String str1 = new String("hello"); String str2 = new String("hello"); str1 == str2 will be false, but str1.equals(str2) will be true.

  • Answered by AI
  • Q2. ==compares object references, while .equals() compares object values in java.
  • Ans. 

    In Java, == compares object references, while .equals() compares object values.

    • Use == to compare if two object references point to the same memory location.

    • Use .equals() to compare if two objects have the same values.

    • Example: String str1 = new String("hello"); String str2 = new String("hello"); str1 == str2 will be false, but str1.equals(str2) will be true.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay curious and keep upgrading your skills to match industry demands.
Interview experience
5
Excellent
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. In trend java questions
Round 3 - Technical 

(1 Question)

  • Q1. Advance java questions, questions related to microservice and java 8

I applied via Naukri.com and was interviewed in Jan 2022. There were 2 interview rounds.

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 - HR 

(1 Question)

  • Q1. Where do you see yourself in 5 years?

Interview Preparation Tips

Interview preparation tips for other job seekers - J2EE J2SE SERVLETS JSP JDBS JAV.ABLE
Required: JAVA SPRING SPRINGBOOT, HIBERNATE, MIRCOSERCIES, WEBSERVICES ABILE TO UNDERSTAND SDLC PROCESS.
SALARY 90% HIKE AS PER CURRENT SALARY.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the purpose of the volatile keyword?
  • Ans. 

    The volatile keyword in Java is used to indicate that a variable's value will be modified by different threads.

    • Ensures visibility of changes made by one thread to other threads

    • Prevents compiler optimizations that could reorder instructions

    • Useful for variables accessed by multiple threads without synchronization

    • Example: volatile boolean flag = true;

  • Answered by AI
  • Q2. It ensures visibility nd prevents instruction reordering in multi-threading.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is JAVA Full Form?
  • Ans. 

    JAVA stands for Java Virtual Machine

    • JAVA stands for Java Virtual Machine

    • It is a programming language that follows the principle of 'write once, run anywhere'

    • Java code is compiled into bytecode which can run on any platform with Java Virtual Machine (JVM)

    • Examples of Java applications include web applications, mobile apps, and enterprise software

  • Answered by AI
  • Q2. JAVA stands for Just Another Virtual Accelerator.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the D/W Hashmap and ConcurrentHashmap in Java?
  • Ans. 

    D/W Hashmap and ConcurrentHashmap are both implementations of the Map interface in Java, with the latter being thread-safe.

    • D/W Hashmap stands for 'Doubly-Linked Hashmap' and is a custom implementation of a hashmap in Java that maintains insertion order.

    • ConcurrentHashmap is a thread-safe implementation of the Map interface in Java, allowing multiple threads to access and modify it concurrently without causing data corru

  • Answered by AI
  • Q2. HashMap is not thread-safe, while concurrentHashMap is thread-safe.
  • Ans. 

    HashMap is not synchronized and not thread-safe, while ConcurrentHashMap is thread-safe and allows concurrent access.

    • HashMap is not synchronized, so it is not safe to use in a multi-threaded environment without external synchronization.

    • ConcurrentHashMap uses internal synchronization mechanisms to ensure thread safety, allowing multiple threads to access and modify it concurrently.

    • ConcurrentHashMap is designed to handle...

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the difference between == and .equals() in Java?
  • Ans. 

    In Java, == compares memory addresses while .equals() compares the actual content of objects.

    • == is used to compare memory addresses of objects, while .equals() is used to compare the actual content of objects.

    • == is used for primitive data types comparison, while .equals() is used for object comparison.

    • Example: String str1 = new String("hello"); String str2 = new String("hello"); str1 == str2 will return false, but str1

  • Answered by AI
  • Q2. ==compares object refrences (memory location). -equals() compares object values.
  • Ans. 

    The difference between == and equals() in Java for comparing object references and values.

    • Use == to compare object references (memory location)

    • Use equals() to compare object values

    • Example: String str1 = new String("hello"); String str2 = new String("hello"); str1 == str2 will be false, but str1.equals(str2) will be true

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the stands for JAVA?
  • Ans. 

    Java stands for Just Another Virtual Machine

    • Java stands for Just Another Virtual Machine

    • It is a high-level programming language developed by Sun Microsystems

    • Java code is compiled into bytecode that runs on any Java Virtual Machine (JVM)

  • Answered by AI
  • Q2. Just Another virtual accelerator.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is Java Language?
  • Ans. 

    Java is a high-level, object-oriented programming language known for its portability and versatility.

    • Java is platform-independent, meaning it can run on any device with a Java Virtual Machine (JVM)

    • It is object-oriented, allowing for modular and reusable code

    • Java is known for its robust standard library, which includes tools for networking, data structures, and more

  • Answered by AI
  • Q2. Java is a object oriented programming language.

Prasanna Technologies Interview FAQs

How many rounds are there in Prasanna Technologies Java Developer interview?
Prasanna Technologies interview process usually has 2 rounds. The most common rounds in the Prasanna Technologies interview process are Aptitude Test and Technical.

Tell us how to improve this page.

Prasanna Technologies Java Developer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Zeus Learning Interview Questions
3.3
 • 35 Interviews
Appsierra Interview Questions
4.4
 • 32 Interviews
ENH iSecure Interview Questions
4.1
 • 29 Interviews
XenonStack Interview Questions
3.2
 • 28 Interviews
Moris Media Interview Questions
4.3
 • 24 Interviews
Big Oh Notation Interview Questions
2.8
 • 23 Interviews
View all

Prasanna Technologies Java Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

4.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Associate Software Developer
10 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Technical Support Executive
7 salaries
unlock blur

₹1.3 L/yr - ₹4.5 L/yr

Software Developer
6 salaries
unlock blur

₹1.8 L/yr - ₹4.2 L/yr

Business Analyst
6 salaries
unlock blur

₹2.9 L/yr - ₹4 L/yr

SQL Developer
6 salaries
unlock blur

₹2 L/yr - ₹10 L/yr

Explore more salaries
Compare Prasanna Technologies with

Northcorp Software

4.3
Compare

Apex CoVantage

3.1
Compare

Appsierra

4.4
Compare

Teleindia Networks

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