Upload Button Icon Add office photos

Filter interviews by

Signiwis Technologies Java Developer Interview Questions and Answers

Updated 20 Jun 2024

Signiwis Technologies Java Developer Interview Experiences

2 interviews found

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

Basic java which is like error or output

Round 2 - Coding Test 

Pyramid like printing star or number

Round 3 - HR 

(1 Question)

  • Q1. Java theory question like oops concept and more

Java Developer Interview Questions & Answers

user image Manjunath P

posted on 11 Apr 2023

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

I applied via Recruitment Consulltant and was interviewed in Mar 2023. There were 5 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 - Technical 

(1 Question)

  • Q1. Core java advance java
Round 3 - Communication 

(1 Question)

  • Q1. English knowledge
Round 4 - Coding Test 

Java , array, simple java program

Round 5 - Technical 

(1 Question)

  • Q1. Oops, multi threading, jdbc

Interview Preparation Tips

Topics to prepare for Signiwis Technologies Java Developer interview:
  • Core Java
  • Advanced Java
Interview preparation tips for other job seekers - Question on oops, multi threading, jdbc

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 LTIMindtree
Q3. Longest Harmonious Subsequence Problem Statement Determine the lo ... 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

Interview experience
5
Excellent
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.

    • == 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 (memory location) .equals() compares the actual content or values of the objects.
  • Ans. 

    The question explains the difference between == and .equals() in Java for comparing object references and content.

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

    • Use .equals() to compare the actual content or values of the 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

Interview Preparation Tips

Interview preparation tips for other job seekers - "Stay curious keep learning."
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Walk-in and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Questions on string and arrays both are moderate level questions on hacherrank type for 20 marks

Round 2 - Technical 

(2 Questions)

  • Q1. Constructor chaining
  • Q2. Hasmap and treemap
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

There were 5 questions and we need to solve 4 questions in java. Mostly Array and string based.

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
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at National Institute of Technology (NIT), Warangal and was interviewed in Jul 2022. There were 3 interview rounds.

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 

Their are 30 questions which one has to done in 30 mins

Round 3 - Technical 

(2 Questions)

  • Q1. Q1) About the project you have done
  • Q2. Q2) some technical questions related to core Java

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your projects well enough so that you are answerable to each question asked
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the purpose of static keyword in Java?
  • Ans. 

    The static keyword in Java is used to create class-level variables and methods that can be accessed without creating an instance of the class.

    • Static variables are shared among all instances of a class.

    • Static methods can be called without creating an instance of the class.

    • Static blocks are used to initialize static variables.

    • Static keyword can also be used to create static nested classes.

  • Answered by AI
  • Q2. The static keyword is used to create class-level variable and methods ............etc.
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

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

Round 1 - Technical 

(1 Question)

  • Q1. Oops Concepts ,Absrtraction,Polymorphism
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.

Signiwis Technologies Interview FAQs

How many rounds are there in Signiwis Technologies Java Developer interview?
Signiwis Technologies interview process usually has 4 rounds. The most common rounds in the Signiwis Technologies interview process are Technical, Coding Test and Resume Shortlist.
How to prepare for Signiwis Technologies Java Developer 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 Signiwis Technologies. The most common topics and skills that interviewers at Signiwis Technologies expect are Core Java, OOPS, Collections, Hibernate and J2Ee.
What are the top questions asked in Signiwis Technologies Java Developer interview?

Some of the top questions asked at the Signiwis Technologies Java Developer interview -

  1. Core java advance j...read more
  2. Java theory question like oops concept and m...read more
  3. Oops, multi threading, j...read more

Tell us how to improve this page.

Signiwis Technologies Java Developer Interview Process

based on 3 interviews

Interview experience

4
  
Good
View more
Signiwis Technologies Java Developer Salary
based on 12 salaries
₹2.5 L/yr - ₹4.2 L/yr
48% less than the average Java Developer Salary in India
View more details

Signiwis Technologies Java Developer Reviews and Ratings

based on 1 review

2.0/5

Rating in categories

2.0

Skill development

1.0

Work-life balance

2.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

2.0

Work satisfaction

Explore 1 Review and Rating
SAP Abap Consultant
60 salaries
unlock blur

₹2 L/yr - ₹5 L/yr

Java Developer
12 salaries
unlock blur

₹2.5 L/yr - ₹4.2 L/yr

SAP Abap Technical Consultant
11 salaries
unlock blur

₹3 L/yr - ₹4.5 L/yr

Software Developer
9 salaries
unlock blur

₹1.5 L/yr - ₹5.6 L/yr

Hybris Developer
8 salaries
unlock blur

₹3.5 L/yr - ₹9.1 L/yr

Explore more salaries
Compare Signiwis 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