Upload Button Icon Add office photos

SrinSoft Technologies

Compare button icon Compare button icon Compare

Filter interviews by

SrinSoft Technologies Interview Questions and Answers

Updated 11 Nov 2024
Popular Designations

15 Interview questions

A Software Engineer Trainee was asked 9mo ago
Q. What are the differences between a list and an array?
Ans. 

Arrays have fixed size, while lists can dynamically resize. Arrays store elements of the same data type, while lists can store different data types.

  • Arrays have a fixed size, while lists can dynamically resize.

  • Arrays store elements of the same data type, while lists can store different data types.

  • Arrays are accessed by index, while lists are accessed by iterators or positions.

  • Arrays are faster for accessing element...

View all Software Engineer Trainee interview questions
A Programmer Analyst was asked 11mo ago
Q. What are the concepts of OOPS?
Ans. 

OOPs (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.

  • OOPs focuses on creating objects that interact with each other to solve problems.

  • Key concepts include encapsulation, inheritance, polymorphism, and abstraction.

  • Encapsulation involves bundling data and methods that operate on the data into a single unit.

  • Inheritance allows a class to inherit ...

View all Programmer Analyst interview questions
A Programmer Analyst was asked 11mo ago
Q. What are the APIs used in those projects?
Ans. 

The APIs used in the projects include RESTful APIs, SOAP APIs, and custom APIs for data retrieval and integration.

  • RESTful APIs were used for communication between client and server in a stateless manner.

  • SOAP APIs were utilized for exchanging structured information in the form of XML messages.

  • Custom APIs were developed for specific functionalities and integrations within the projects.

View all Programmer Analyst interview questions
A Front end Developer was asked
Q. What is the difference between let and var in JavaScript?
Ans. 

let is block scoped while var is function scoped in JavaScript.

  • let is block scoped, meaning it is only accessible within the block it is declared in.

  • var is function scoped, meaning it is accessible throughout the function it is declared in.

  • Using let can help prevent variable hoisting issues.

  • let allows you to redeclare a variable in the same scope, while var does not.

View all Front end Developer interview questions
A Front end Developer was asked
Q. Tell me about some HTML tags.
Ans. 

HTML tags are used to structure content on a web page.

  • <h1> - Heading tag

  • <p> - Paragraph tag

  • <a> - Anchor tag for links

  • <img> - Image tag

  • <ul> - Unordered list tag

View all Front end Developer interview questions
A Software Developer was asked
Q. How do you identify duplicate values in a database?
Ans. 

To show duplicates in a database, use GROUP BY and HAVING clauses.

  • Use GROUP BY to group the data by the column that may have duplicates.

  • Use HAVING to filter the groups that have more than one row.

  • Example: SELECT column_name, COUNT(*) FROM table_name GROUP BY column_name HAVING COUNT(*) > 1;

View all Software Developer interview questions
A Pega Developer was asked
Q. What are flows and flow actions?
Ans. 

Flows and flow actions are used in Pega to define the sequence of steps in a business process.

  • Flows are visual representations of a business process that define the sequence of steps and actions required to complete a task.

  • Flow actions are individual steps within a flow that represent a specific action or decision point.

  • Flows and flow actions can be customized and configured to meet specific business needs.

  • Example...

View all Pega Developer interview questions
Are these interview questions helpful?
A Middleware Administrator was asked
Q. Explain the differences between standalone and domain configurations.
Ans. 

Standalone and domain are two different modes of running a middleware server.

  • Standalone mode runs a single server instance, while domain mode runs multiple server instances managed by a domain controller.

  • In standalone mode, configuration is done on the server instance itself, while in domain mode, configuration is done on the domain controller.

  • Standalone mode is suitable for small-scale deployments, while domain m...

View all Middleware Administrator interview questions
A Trainee was asked
Q. What is a case in Pega?
Ans. 

Case in Pega refers to a specific instance of a work item or task that needs to be completed.

  • Cases are created when a user submits a request or when an automated process triggers a new case.

  • Each case has a unique ID and contains all the information and data related to that specific task.

  • Cases can be tracked and managed through Pega's Case Management tools.

  • Examples of cases include customer service requests, insura...

View all Trainee interview questions
A Software Developer was asked
Q. What is the difference between Promises and callbacks?
Ans. 

Promise callbacks are functions that are executed when a promise is resolved or rejected.

  • Promise callbacks are defined using the then() and catch() methods.

  • The then() method is executed when the promise is resolved.

  • The catch() method is executed when the promise is rejected.

  • Promise callbacks can be chained together using multiple then() methods.

  • Example: promise.then(onResolved).catch(onRejected);

View all Software Developer interview questions

SrinSoft Technologies Interview Experiences

17 interviews found

Pega Developer Interview Questions & Answers

user image Sriram Crazy

posted on 24 Feb 2023

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2022. There were 4 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 

Paper pen test….. difficulty - easy

Round 3 - Group Discussion 

All simple topics - i got OTT Vs Theatre

Round 4 - Technical 

(3 Questions)

  • Q1. What is pega or why pega?.
  • Ans. 

    Pega is a BPM software that helps automate business processes and improve customer engagement.

    • Pega provides a unified platform for process automation, case management, and customer service.

    • It uses a model-driven approach to create applications without the need for coding.

    • Pega's AI capabilities enable intelligent decision-making and predictive analytics.

    • Pega is used by many industries including finance, healthcare, and ...

  • Answered by AI
  • Q2. What are flow and flow actions?.
  • Ans. 

    Flows and flow actions are used in Pega to define the sequence of steps in a business process.

    • Flows are visual representations of a business process that define the sequence of steps and actions required to complete a task.

    • Flow actions are individual steps within a flow that represent a specific action or decision point.

    • Flows and flow actions can be customized and configured to meet specific business needs.

    • Examples of ...

  • Answered by AI
  • Q3. Define rule and ruleset?.
  • Ans. 

    A rule is a unit of logic that defines a specific behavior or action. A ruleset is a collection of related rules.

    • A rule is a building block of Pega applications that defines a specific behavior or action.

    • Rules are organized into rulesets, which are collections of related rules.

    • Rules can be reused across different applications and rulesets.

    • Rules can be versioned and managed using Pega's rule management tools.

    • Examples of...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your resume crisp and be confident while answering.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Discription about your previous projects?
  • Q2. What are the APIs used in those projects?
  • Ans. 

    The APIs used in the projects include RESTful APIs, SOAP APIs, and custom APIs for data retrieval and integration.

    • RESTful APIs were used for communication between client and server in a stateless manner.

    • SOAP APIs were utilized for exchanging structured information in the form of XML messages.

    • Custom APIs were developed for specific functionalities and integrations within the projects.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is oops concept?
  • Ans. 

    OOPs (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOPs focuses on creating objects that interact with each other to solve problems.

    • Key concepts include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation involves bundling data and methods that operate on the data into a single unit.

    • Inheritance allows a class to inherit prope...

  • Answered by AI
  • Q2. What is data structure and algorithms?
  • Ans. 

    Data structures are ways of organizing and storing data in a computer's memory, while algorithms are step-by-step procedures for solving problems.

    • Data structures are used to efficiently manage and manipulate data, such as arrays, linked lists, trees, graphs, etc.

    • Algorithms are the set of rules or steps to solve a particular problem, like sorting algorithms (e.g. bubble sort, quick sort) or searching algorithms (e.g. bi...

  • Answered by AI

Skills evaluated in this interview

Software Engineer Trainee Interview Questions & Answers

user image Karthick Selvavinayagam

posted on 10 Sep 2024

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

Normal questions aptitude questions

Round 2 - HR 

(1 Question)

  • Q1. Oops concepts and paradigms
  • Ans. 

    Oops concepts and paradigms are fundamental principles in object-oriented programming.

    • Object-oriented programming (OOP) is a programming paradigm based on the concept of objects, which can contain data in the form of fields (attributes) and code in the form of procedures (methods).

    • OOP concepts include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation is the bundling of data with the methods that o...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Different between list and array
  • Ans. 

    Arrays have fixed size, while lists can dynamically resize. Arrays store elements of the same data type, while lists can store different data types.

    • Arrays have a fixed size, while lists can dynamically resize.

    • Arrays store elements of the same data type, while lists can store different data types.

    • Arrays are accessed by index, while lists are accessed by iterators or positions.

    • Arrays are faster for accessing elements, wh...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

This Aptitude test was good ,they mention different topics like reasoning, Engineering Graphics, and design tool related etc..

Round 2 - Group Discussion 

This GD was good ,Topic of the GD is Impact of social media .

Interview Preparation Tips

Interview preparation tips for other job seekers - They Do well like the way of speaking, approaching their Information and more importantly they are very kind. So my advice is continue the same way of approaching.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

50 question percentage, direction,speed, picture next find

Round 2 - Group Discussion 

General topics , online or offline transaction

Round 3 - Technical 

(2 Questions)

  • Q1. Oops , basic codings
  • Q2. String, encapsulation, abstraction

Interview Preparation Tips

Interview preparation tips for other job seekers - Gd is important,then oops is very important
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Java basic and spring boot

Round 2 - Group Discussion 

General topics to group discussion

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Very basic javascript questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in May 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 - Group Discussion 

They will give some topics and after that gd starts

Round 3 - Aptitude Test 

30 questions provided you need to answer 15 correctly to go to next round

Round 4 - Technical 

(4 Questions)

  • Q1. Introduce yourself, write sql query to list out employees above age of 23
  • Ans. 

    Experienced front end developer with SQL skills. SQL query to list employees above age 23.

    • Use SELECT statement to retrieve data from employees table

    • Use WHERE clause to filter employees above age 23

    • Example: SELECT * FROM employees WHERE age > 23;

  • Answered by AI
  • Q2. Tell what you have learned in your interships
  • Q3. Difference between let and var in javascript
  • Ans. 

    let is block scoped while var is function scoped in JavaScript.

    • let is block scoped, meaning it is only accessible within the block it is declared in.

    • var is function scoped, meaning it is accessible throughout the function it is declared in.

    • Using let can help prevent variable hoisting issues.

    • let allows you to redeclare a variable in the same scope, while var does not.

  • Answered by AI
  • Q4. Tell me some Html tags
  • Ans. 

    HTML tags are used to structure content on a web page.

    • <h1> - Heading tag

    • <p> - Paragraph tag

    • <a> - Anchor tag for links

    • <img> - Image tag

    • <ul> - Unordered list tag

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Just normal questions are asked like how will you relocate

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Jun 2023. There were 4 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 - HR 

(2 Questions)

  • Q1. -Self intro -Some simple topics to speak for 5 minutes till the satisfied with your english.
  • Q2. Topics like your native, internet benefits and social media
Round 3 - Aptitude Test 

-Quantitative easy, intermediate
-Mathematical easy, intermediate
-Logical easy, intermediate
-programming questions too but it is easy like syntax correction and McQ in coding.

Round 4 - Coding Test 

This was taken by two senior developers
30mins interview which the questions will be asked on your skill section.
-About Dotnet
-c#
-Oops principles
-HTML, CSS
-React Js basics
-SQL queries
But they asked only the basics so cover all the fundamentals before interview
Good luck guys!

Interview Preparation Tips

Topics to prepare for SrinSoft Technologies DOT NET Developer interview:
  • C#.Net
  • Javascript
  • HTML
  • CSS
  • SQL
Interview preparation tips for other job seekers - Study according to the company Requirements
Courses and certificates makes you first priority for the HR
Spoken English important
Be open with them don't lie about your skills in resume
Keep it simple don't panic🙂

DOT NET Developer Interview Questions & Answers

user image CHANDRA SEKAR .S

posted on 29 Jun 2023

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

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

This round consists of aptitude and basic coding questions.

Round 3 - Technical 

(2 Questions)

  • Q1. They haven't conducted this round yet.
  • Q2. This round didn't happen yet.

Interview Preparation Tips

Topics to prepare for SrinSoft Technologies DOT NET Developer interview:
  • Basic coding skills
  • Aptitude questions
Interview preparation tips for other job seekers - I went for the interview on June 2nd, there was around 30-50 people. The interviewer was so good and checked my communication and selected me for 1st round.
I got selected in that round.
And for the next round that is Technical, they told that panel was not available due to WFH and will call for 2nd round.
After one week they told that mine and others who got selected are on hold. Till no update from them. But I hope they will give a good reply soon.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Mar 2023. There were 3 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Tell about your self
  • Ans. 

    I am a software developer with 5 years of experience in developing web applications using Java and JavaScript.

    • Experienced in Java and JavaScript

    • Developed web applications for 5 years

    • Familiar with Agile methodology

    • Strong problem-solving skills

    • Excellent communication and teamwork skills

  • Answered by AI
  • Q2. Why you relocated to chennai
  • Ans. 

    Relocated to Chennai for better career opportunities and personal growth.

    • Chennai has a thriving IT industry with many job opportunities

    • The city has a vibrant culture and a good quality of life

    • I wanted to challenge myself and gain new experiences

    • I have family and friends in Chennai, which made the transition easier

  • Answered by AI
Round 2 - Aptitude Test 

Mcq format questions are asked

Round 3 - Technical 

(1 Question)

  • Q1. Show me the duplicates value in the database
  • Ans. 

    To show duplicates in a database, use GROUP BY and HAVING clauses.

    • Use GROUP BY to group the data by the column that may have duplicates.

    • Use HAVING to filter the groups that have more than one row.

    • Example: SELECT column_name, COUNT(*) FROM table_name GROUP BY column_name HAVING COUNT(*) > 1;

  • Answered by AI

Interview Preparation Tips

Topics to prepare for SrinSoft Technologies Software Developer interview:
  • SQL

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about SrinSoft Technologies?
Ask anonymously on communities.

SrinSoft Technologies Interview FAQs

How many rounds are there in SrinSoft Technologies interview?
SrinSoft Technologies interview process usually has 3 rounds. The most common rounds in the SrinSoft Technologies interview process are Technical, Aptitude Test and Resume Shortlist.
How to prepare for SrinSoft Technologies 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 SrinSoft Technologies. The most common topics and skills that interviewers at SrinSoft Technologies expect are REVIT, Bim, Javascript, AutoCAD and Civil.
What are the top questions asked in SrinSoft Technologies interview?

Some of the top questions asked at the SrinSoft Technologies interview -

  1. Show me the duplicates value in the datab...read more
  2. Introduce yourself, write sql query to list out employees above age of...read more
  3. What are flow and flow action...read more
How long is the SrinSoft Technologies interview process?

The duration of SrinSoft Technologies interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.9/5

based on 17 interview experiences

Difficulty level

Easy 50%
Moderate 50%

Duration

Less than 2 weeks 88%
2-4 weeks 13%
View more

Interview Questions from Similar Companies

VDart Interview Questions
4.0
 • 29 Interviews
DISYS Interview Questions
3.0
 • 27 Interviews
Ciklum Interview Questions
3.4
 • 22 Interviews
View all

SrinSoft Technologies Reviews and Ratings

based on 152 reviews

3.1/5

Rating in categories

3.2

Skill development

3.1

Work-life balance

3.3

Salary

3.1

Job security

3.1

Company culture

3.0

Promotions

3.1

Work satisfaction

Explore 152 Reviews and Ratings
Programmer Analyst
101 salaries
unlock blur

₹3.5 L/yr - ₹13 L/yr

Software Developer
49 salaries
unlock blur

₹2.2 L/yr - ₹10 L/yr

Junior Programmer Analyst
44 salaries
unlock blur

₹1.8 L/yr - ₹6 L/yr

Design Engineer
42 salaries
unlock blur

₹2.3 L/yr - ₹7.2 L/yr

Senior Programmer Analyst
34 salaries
unlock blur

₹7 L/yr - ₹22 L/yr

Explore more salaries
Compare SrinSoft Technologies with

Saama Technologies

3.7
Compare

Jumio

3.8
Compare

DISYS

3.0
Compare

Data-Core Systems

3.1
Compare
write
Share an Interview