Upload Button Icon Add office photos

Filter interviews by

SutiSoft Interview Questions, Process, and Tips

Updated 16 Jul 2024

Top SutiSoft Interview Questions and Answers

SutiSoft Interview Experiences

Popular Designations

8 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Core java , spring interview questions
  • Q2. Spring, basic logical interview questions
Round 2 - Technical 

(2 Questions)

  • Q1. Mostly behaviour questions and check the communication skills
  • Q2. Basic questions likes collections and project etc.

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (197)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Bug life cycle, Selenium basic questions Testng
  • Q2. What is bug Lifecycle
  • Ans. 

    Bug lifecycle refers to the stages a bug goes through from discovery to resolution.

    • Bug is reported by a tester or user

    • Bug is assigned to a developer

    • Developer reproduces the bug

    • Developer fixes the bug

    • Bug is retested by the tester

    • If the bug is fixed, it is closed; otherwise, it is reopened

    • Bug is verified and closed

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

Skills evaluated in this interview

Softwaretest Engineer Interview Questions asked at other Companies

Q1. What is boundary value analysis? How do u perform boundary value testing for User ID & Password textfields in login page?
View answer (2)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - One-on-one 

(3 Questions)

  • Q1. Resume based and past work details
  • Q2. What have you done and
  • Q3. How are you doing

Inside Sales Executive Interview Questions asked at other Companies

Q1. Sell me an android phone, if I am already having a iPhone.
View answer (1)

Interview Questions & Answers

user image Anonymous

posted on 1 Mar 2023

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

I applied via Company Website and was interviewed in Feb 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 - Coding Test 

The platform gets you the results and shortlists candidates as soon as an assessment is complete. You can also assess candidate performance on individual questions and make informed decisions regarding specific skill sets.

Round 3 - Aptitude Test 

A train 125 m long passes a man, running at 5 km/hr in the same direction in which the train is going, in 10 seconds. The speed of the train is:

Interview Preparation Tips

Topics to prepare for SutiSoft interview:
  • Capital Goods
  • User Experience
Interview preparation tips for other job seekers - Just apply. You may not be the best candidate or have all the requisite qualifications, but you’ll never get a job if you don’t try.

SutiSoft interview questions for popular designations

 Softwaretest Engineer

 (1)

 Software Engineer

 (1)

 Product Executive

 (1)

 Full Stack Developer

 (1)

 Software Tester

 (1)

 Java Developer

 (1)

 Inside Sales Executive

 (1)

I applied via Walk-in

Round 1 - Aptitude Test 

Speak clearly english

Round 2 - Assignment 

Which emp can reach the goal r not

Round 3 - Group Discussion 

All the employees are worked combinely

Round 4 - Coding Test 

Mentioned employees user Id's

Round 5 - Assignment 

Which person high position r low position

Round 6 - Case Study 

Total information is based on case study

Round 7 - Aptitude Test 

Company payments are required

Round 8 - Aptitude Test 

Interview Preparation Tips

Interview preparation tips for other job seekers - All rhe. Emp's are worked hardly

Product Executive Interview Questions asked at other Companies

Q1. What do you know about sales trends?
View answer (3)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed before Jun 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Which was the worst app you deal with and why?
  • Ans. 

    The worst app I dealt with was a budgeting app that constantly crashed and lost data.

    • Frequent crashes

    • Data loss issues

    • Poor user interface

    • Lack of customer support

    • Inaccurate calculations

  • Answered by AI
  • Q2. Istqb based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare test case with live project

Software Tester Interview Questions asked at other Companies

Q1. Which is a best technique to generate automated test report ?
View answer (1)

Interview Questionnaire 

3 Questions

  • Q1. Hi Sir I will join in u r company when coming for u r company sir
  • Q2. Salary for the month of how much sir
  • Q3. I will work in u r company but how do u my porfamanc and next promoted sir

Interview Preparation Tips

Interview preparation tips for other job seekers - Thank you for asking in some questions thank you sir

Full Stack Developer Interview Questions asked at other Companies

Q1. Query and Matrix Problem Statement You are given a binary matrix with 'M' rows and 'N' columns, initially consisting of all 0s. You will receive 'Q' queries, which can be of four types: Query 1: 1 R indexQuery 2: 1 C indexQuery 3: 2 R index... read more
View answer (1)

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

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (3)

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. What I know and what I don't know

Interview Preparation Tips

Round: Test
Experience: Aptitude, reasoning, logical, etc. 2 hours

Interview Questionnaire 

2 Questions

  • Q1. C and C++ - technically related stuffs
  • Q2. Communicate and fluency

SutiSoft Interview FAQs

How many rounds are there in SutiSoft interview?
SutiSoft interview process usually has 3 rounds. The most common rounds in the SutiSoft interview process are Aptitude Test, Resume Shortlist and Technical.
How to prepare for SutiSoft 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, Laravel, Lead Generation and PHP.
What are the top questions asked in SutiSoft interview?

Some of the top questions asked at the SutiSoft 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.

SutiSoft Interview Process

based on 4 interviews

Interview experience

4.8
  
Excellent
View more

Interview Questions from Similar Companies

HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
Coforge Interview Questions
3.3
 • 519 Interviews
Zoho Interview Questions
4.3
 • 505 Interviews
Freshworks Interview Questions
3.5
 • 157 Interviews
Ramco Systems Interview Questions
3.9
 • 65 Interviews
Tally Solutions Interview Questions
4.2
 • 39 Interviews
InMobi Interview Questions
3.5
 • 35 Interviews
View all

SutiSoft Reviews and Ratings

based on 42 reviews

3.8/5

Rating in categories

3.6

Skill development

3.6

Work-life balance

3.0

Salary

3.8

Job security

2.9

Company culture

3.0

Promotions

3.4

Work satisfaction

Explore 42 Reviews and Ratings
Junior Software Engineer
40 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
28 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
22 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
17 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Inside Sales Executive
15 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare SutiSoft with

Zoho

4.3
Compare

Freshworks

3.5
Compare

Tally Solutions

4.2
Compare

Ramco Systems

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