Upload Button Icon Add office photos

Filter interviews by

SutiSoft Java Developer Interview Questions and Answers

Updated 6 Dec 2019

SutiSoft Java Developer Interview Experiences

1 interview found

Interview Questionnaire 

5 Questions

  • Q1. 1.what is exception handling
  • Ans. 

    Exception handling is a mechanism in Java to handle runtime errors and prevent program termination.

    • Exception handling allows programmers to catch and handle errors that occur during program execution.

    • It involves the use of try-catch blocks to catch exceptions and perform appropriate actions.

    • By handling exceptions, the program can gracefully recover from errors and continue execution.

    • Examples of exceptions include NullP...

  • Answered by AI
  • Q2. 2.differance between throw and throws, and difference between final,finally,finalize and difference between arraylist and linked list
  • Ans. 

    throw is used to explicitly throw an exception, while throws is used to declare exceptions that a method may throw.

    • throw is used within a method to throw an exception explicitly

    • throws is used in the method signature to declare the exceptions that the method may throw

    • final is a keyword used to make a variable, method, or class unchangeable

    • finally is a block that is used to execute code regardless of whether an exception...

  • Answered by AI
  • Q3. Why strings are immutable, and for each loop,
  • Ans. 

    Strings are immutable because they cannot be changed once created. For-each loop is used to iterate over arrays or collections.

    • Strings are immutable to ensure their values cannot be modified accidentally or maliciously.

    • Immutable strings allow for efficient memory management and string pooling.

    • For-each loop simplifies the process of iterating over arrays or collections.

    • Example: String str = "Hello"; str.concat(" World")...

  • Answered by AI
  • Q4. Pattern programs
  • Q5. Arayy, collections, strings, exception programs

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident in front of interviewer and tell about the answer clearly

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Linked list question to detect cycle
  • Q2. Basic questions from JS
Round 2 - Technical 

(2 Questions)

  • Q1. Some questions related to my projects
  • Q2. Some Questions related to my past experience
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Map reduce filter in javascript
  • Ans. 

    Map, reduce, and filter are higher-order functions in JavaScript used to manipulate arrays.

    • Map: Transforms each element in an array and returns a new array with the transformed elements.

    • Reduce: Reduces an array to a single value by applying a function to each element.

    • Filter: Creates a new array with elements that pass a certain condition.

  • Answered by AI
  • Q2. Exception handling

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Sep 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 - Aptitude Test 

Very easy roundand is it a program to implement Parallel Merge Sort and can measure the performance

Round 3 - Coding Test 

Coding and decoding reasoning for the shield season is over now I am not sure

Interview Preparation Tips

Interview preparation tips for other job seekers - Learning in the morning and have a couple years back home
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

10 apti questions and 10 technical mcq on cpp

Round 2 - Technical 

(2 Questions)

  • Q1. Oops concept question
  • Q2. Sql queries on join
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Oops topic and aptitude

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
No response

I applied via Walk-in and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is interface ?
  • Ans. 

    An interface in software development defines a contract for classes to implement, specifying methods and properties.

    • Interfaces in programming languages like Java and C# allow for multiple inheritance by defining a set of methods that a class must implement.

    • Interfaces provide a way to achieve abstraction and polymorphism in object-oriented programming.

    • Interfaces are used to define common behavior that multiple classes c...

  • Answered by AI
  • Q2. Hat is encapsulation
  • Ans. 

    Encapsulation is the concept of bundling data and methods that operate on the data into a single unit.

    • Encapsulation helps in hiding the internal state of an object and restricting access to it.

    • It allows for better control over the data by preventing direct access from outside the class.

    • Encapsulation promotes code reusability and makes the code easier to maintain.

    • Example: In a class representing a car, the variables lik...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong with ur basics

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Apttitude and Basic of CPP

Round 2 - Technical 

(3 Questions)

  • Q1. String reverse program
  • Ans. 

    A program to reverse a string in Java.

    • Use StringBuilder class to reverse the string.

    • Convert the string to a StringBuilder object, call reverse() method, and convert back to string.

    • Example: String str = "hello"; StringBuilder sb = new StringBuilder(str); sb.reverse(); String reversed = sb.toString();

  • Answered by AI
  • Q2. Logical questions
  • Q3. Project Information
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Mar 2023. 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 - Technical 

(5 Questions)

  • Q1. What are oops concepts in java, explain real time scenario
  • Ans. 

    OOPs concepts in Java include inheritance, polymorphism, encapsulation, and abstraction.

    • Inheritance allows a subclass to inherit properties and methods from a superclass.

    • Polymorphism allows objects to take on multiple forms and behave differently based on their context.

    • Encapsulation hides the implementation details of an object and only exposes necessary information.

    • Abstraction allows for the creation of abstract class...

  • Answered by AI
  • Q2. Uses of interface, inheritance
  • Ans. 

    Interfaces define contracts for behavior, while inheritance allows for code reuse and polymorphism.

    • Interfaces allow for loose coupling and abstraction, enabling multiple implementations of the same behavior.

    • Inheritance allows for code reuse and extension of existing classes, reducing code duplication.

    • Polymorphism allows objects of different classes to be treated as if they were of the same class, simplifying code and i

  • Answered by AI
  • Q3. SQL query for join of tables
  • Ans. 

    SQL query for joining tables

    • Use JOIN keyword to combine two or more tables based on a related column

    • Specify the columns to be selected using SELECT keyword

    • Use ON keyword to specify the condition for joining the tables

    • Different types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN

  • Answered by AI
  • Q4. Java concepts used in your project
  • Ans. 

    Used Java concepts such as inheritance, polymorphism, and exception handling in my project.

    • Implemented inheritance to create a base class and derived classes with specific functionalities.

    • Utilized polymorphism to allow objects of different classes to be treated as if they were of the same class.

    • Implemented exception handling to handle errors and prevent program crashes.

    • Used interfaces to define a set of methods that a ...

  • Answered by AI
  • Q5. Overloading vs overriding, practical uses
  • Ans. 

    Overloading is having multiple methods with the same name but different parameters. Overriding is having a method in a subclass with the same name and parameters as a method in the superclass.

    • Overloading is used to provide different ways to call a method with different parameters

    • Overriding is used to provide a specific implementation of a method in a subclass

    • Overloading is resolved at compile-time while overriding is r...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Zebra Technologies Software Developer interview:
  • Core Java
  • OOPS
  • collection framework
  • Database Management

Skills evaluated in this interview

I applied via Referral

Interview Questionnaire 

1 Question

  • Q1. Basic Oops Concept And SQL Queries

Interview Preparation Tips

Interview preparation tips for other job seekers - Good Company.and nice Interview Experience

SutiSoft Interview FAQs

How to prepare for SutiSoft 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 SutiSoft. The most common topics and skills that interviewers at SutiSoft expect are Hibernate, Java, Spring Boot, J2Ee and JSP.
What are the top questions asked in SutiSoft Java Developer interview?

Some of the top questions asked at the SutiSoft Java Developer interview -

  1. 2.differance between throw and throws, and difference between final,finally,fin...read more
  2. 1.what is exception handli...read more
  3. Why strings are immutable, and for each loo...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Monotype Interview Questions
3.8
 • 23 Interviews
Pitney Bowes Interview Questions
3.8
 • 21 Interviews
Xactly Corp Interview Questions
3.8
 • 17 Interviews
Emtec Interview Questions
4.3
 • 14 Interviews
Dataflow Group Interview Questions
3.0
 • 14 Interviews
V2soft Interview Questions
3.7
 • 12 Interviews
View all
SutiSoft Java Developer Salary
based on 10 salaries
₹3 L/yr - ₹5.8 L/yr
42% less than the average Java Developer Salary in India
View more details
Junior Software Engineer
40 salaries
unlock blur

₹3 L/yr - ₹6.1 L/yr

Associate Software Engineer
28 salaries
unlock blur

₹3.7 L/yr - ₹13.1 L/yr

Software Engineer
21 salaries
unlock blur

₹2.8 L/yr - ₹6.5 L/yr

Software Developer
17 salaries
unlock blur

₹3 L/yr - ₹7.8 L/yr

Inside Sales Executive
15 salaries
unlock blur

₹2.5 L/yr - ₹6.8 L/yr

Explore more salaries
Compare SutiSoft with

Pitney Bowes

3.8
Compare

Dataflow Group

3.0
Compare

Sapphire Software Solutions (India)

4.5
Compare

Sagitec Solutions

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