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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the difference between abstract class and an interface in Java?
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructors, member variables, and methods, while interface cannot.

    • A class can implement multiple interfaces but can only extend one abstract class.

    • Abstract classes are used to define a common behavior among subclasses, while interfaces are used to define a contract for classes to impl...

  • Answered by AI
  • Q2. An abstract class can have method implements and abstract method, while an interface only contains abstract method (before Java 8) . Abstract classes support single inheritance, whereas interfaces support ...
  • Ans. 

    Abstract classes can have both implemented and abstract methods, while interfaces can only have abstract methods. Abstract classes support single inheritance, interfaces support multiple inheritance.

    • Abstract classes can have both implemented and abstract methods, providing more flexibility in design.

    • Interfaces can only have abstract methods, promoting a more strict contract for implementing classes.

    • Abstract classes sup...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - HR 

(4 Questions)

  • Q1. Tell me about your self
  • Ans. 

    I am a passionate Java Developer with 5 years of experience in developing web applications and implementing solutions using Java technologies.

    • 5 years of experience in Java development

    • Strong knowledge of web application development

    • Experience in implementing solutions using Java technologies

  • Answered by AI
  • Q2. Tell me java feature
  • Ans. 

    Java feature includes platform independence, object-oriented programming, and automatic memory management.

    • Platform independence allows Java programs to run on any platform without recompilation.

    • Object-oriented programming supports concepts like inheritance, encapsulation, and polymorphism.

    • Automatic memory management through garbage collection helps in managing memory efficiently.

  • Answered by AI
  • Q3. Java interfaces
  • Q4. Tell encapsulation in java
  • Ans. 

    Encapsulation in Java is the concept of wrapping data (variables) and code (methods) together into a single unit, known as a class.

    • Encapsulation helps in data hiding, as the internal state of the object is hidden from the outside world.

    • It allows for better control over the data by providing getter and setter methods to access and modify the data.

    • Encapsulation also helps in maintaining the integrity of the data by preve...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Approached by Company and was interviewed in Mar 2023. There were 3 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 - One-on-one 

(3 Questions)

  • Q1. What is java ?
  • Ans. 

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

    • 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 security features, such as sandboxing and encryption.

    • Popular frameworks and libraries like Spring and Hibernate are commonly used in

  • Answered by AI
  • Q2. Opps concepts collections
  • Q3. Data structures
Round 3 - One-on-one 

(2 Questions)

  • Q1. Opps and collections
  • Q2. Must know about collections

Interview Preparation Tips

Interview preparation tips for other job seekers - learn and practice bacic concepts

Skills evaluated in this interview

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?
  • Q2. HashMap is not thread-safe, while concurrentHashMap is thread-safe.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the difference between HashMap and ConcurrentHashMap?
  • Q2. HashMap is not thread-safe, but ConcurrentHashmap is thread-safe and allows concurrent access.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How does JVM optimize method calls?
  • Q2. JVM just Just-In-Time (JIT) compilation, method inlining, and escape analysis for optimization.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the purpose of the volatile keyword?
  • Q2. It ensures visibility nd prevents instruction reordering in multi-threading.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the diffrence between == and .equals() in java?
  • Q2. == : Compares refrences (memory addresses) of objects. .equals() : Compares to content (value) of objects.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Write a short java program to check if a number is prime.
  • Ans. 

    Java program to check if a number is prime

    • Create a function that takes an integer as input

    • Check if the number is less than 2, return false

    • Iterate from 2 to the square root of the number, check for divisibility

    • If the number is divisible by any number, return false

    • Otherwise, return true

  • Answered by AI
  • Q2. A prime number is a number greater than 1.....etc
  • Ans. 

    A prime number is a number greater than 1 that can only be divided by 1 and itself.

    • Prime numbers are integers greater than 1

    • They have only two factors: 1 and the number itself

    • Examples of prime numbers: 2, 3, 5, 7, 11, 13

  • Answered by AI

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

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

₹1.8 L/yr - ₹3.6 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

Associate Test Engineer
6 salaries
unlock blur

₹1.8 L/yr - ₹3.5 L/yr

Explore more salaries
Compare Prasanna Technologies with

Infosys

3.6
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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