Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Signity Software Solutions Team. If you also belong to the team, you can get access from here

Signity Software Solutions Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Signity Software Solutions Interview Questions and Answers

Updated 15 Jun 2023

Signity Software Solutions Interview Experiences

Popular Designations

2 interviews found

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

I applied via Recruitment Consulltant and was interviewed before Jun 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 - Coding Test 

Basic concept from your resume mentioned technology

Round 3 - Technical 

(2 Questions)

  • Q1. Little exploratory problem solving questions Oops, optimization technique, performance improvement, security concepts
  • Q2. How you keep user token secure
  • Ans. 

    User tokens are kept secure by using encryption, secure storage, and regular token rotation.

    • Use encryption algorithms like AES to secure the token data

    • Store tokens securely in a database or key management system

    • Implement token rotation to regularly change and invalidate tokens

    • Use secure protocols like HTTPS for transmitting tokens

    • Implement proper access controls and authentication mechanisms

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Basic discussion relates to your nature of work and expectations

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)

I applied via Referral and was interviewed in Jul 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. In Group discussion....what is your dream job

Interview Preparation Tips

Interview preparation tips for other job seekers - Very little opportunity in less time to reply

Graduate Engineer Trainee (Get) Interview Questions asked at other Companies

Q1. Q: 1 What is IC engine? What is the types of IC engine? Q:2 Difference between Otto cycle and Diesel cycle? What is the process of both cycle and what is the effeciency of both cycle ? Which one is good in effeciency? Q:3 Difference between... read more
View answer (2)

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Which collection class is used to represent key-value pairs?
  • Ans. 

    The HashMap class is used to represent key-value pairs in Java.

    • HashMap is a part of the Java Collections Framework.

    • It allows null values and only one null key.

    • It provides constant-time performance for basic operations like get and put.

    • Example: HashMap<String, Integer> map = new HashMap<>();

  • Answered by AI
  • Q2. What is abstraction?
  • Ans. 

    Abstraction is the process of simplifying complex systems by focusing on essential details and hiding unnecessary complexities.

    • Abstraction allows us to create models or representations of real-world objects or systems in software.

    • It helps in managing complexity by breaking down a system into smaller, more manageable parts.

    • Abstraction provides a level of indirection, allowing changes to be made in one part of the system...

  • Answered by AI
  • Q3. Why is try-catch used in JAVA?
  • Ans. 

    try-catch is used in Java to handle exceptions and prevent program crashes.

    • try-catch blocks are used to catch and handle exceptions that may occur during program execution.

    • It allows the program to gracefully handle errors and prevent the program from crashing.

    • The try block contains the code that may throw an exception, and the catch block handles the exception.

    • Multiple catch blocks can be used to handle different types...

  • Answered by AI
  • Q4. Which statement will we use if we want to select a statement based on integer inputs?
  • Ans. 

    The statement to use for selecting based on integer inputs is the 'switch' statement.

    • The 'switch' statement allows for multiple cases to be evaluated based on the value of an integer input.

    • Each case represents a possible value of the input, and the corresponding code block is executed if the value matches.

    • The 'switch' statement also provides a 'default' case which is executed if none of the cases match the input value.

    • ...

  • Answered by AI
  • Q5. Explain your project.

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick to basic concepts
Prepare a good project

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Tell me about yourself
  • Q2. Why IT
  • Q3. About my project
  • Q4. Few mechanical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - General questions

I applied via Referral and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Related to work profile
  • Q2. Related to interests

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, go well groomed

I appeared for an interview before Jun 2016.

Interview Questionnaire 

1 Question

  • Q1. Java related questions on Oops concept and Multithreading

Interview Preparation Tips

Round: Test
Experience: Simple aptitude and reasoning questions little java based programming
Tips: Basic programming knowledge and good aptitude
Duration: 1 hour
Total Questions: 60

Round: Technical Interview
Experience: Normal questions on Java, basic programming questions like reverse no. , String related and logical coding
Tips: What u mentioned on your resume go through that only, they will not ask apart from your resume

Skills: How Well You Are Able To Communicate What You Wanted To Tell, Programming
College Name: SRCEM

I appeared for an interview before Aug 2016.

Interview Preparation Tips

Round: Resume Shortlist
Experience: I am vinothkumar from Dindugal, I was studied computer engineering in Madurai institute of engineering and technology at sivagangai, I am quality controller in RR DONNELLY at Chennai, my experience 2 years, my family staying in native, my father palanichami he is a former, my mother tamilselvi she is home maker and my one yelder brother Vijayakumar he is driver, I am interested area software engineer, my hobbies are listening music, reading book and news paper, playing and watching cricket
Tips: No comments

Round: Test
Experience: I am vinothkumar from Dindugal, I was studied computer engineering in Madurai institute of engineering and technology at sivagangai, I am quality controller in RR DONNELLY at Chennai, my experience 2 years, my family staying in native, my father palanichami he is a former, my mother tamilselvi she is home maker and my one yelder brother Vijayakumar he is driver, I am interested area software engineer, my hobbies are listening music, reading book and news paper, playing and watching cricket
Tips: No comments
Total Questions: 15

Round: Test
Experience: See my mentality
Tips: No comments
Duration: 45 minutes

Round: Group Discussion
Experience: Communication
Tips: No comments

Skills: Communication And Confidence

Interview Questionnaire 

1 Question

  • Q1. Difference between for and for each
  • Ans. 

    For loop is used for iterating over a range of values while for each loop is used for iterating over elements of an array.

    • For loop is used when the number of iterations is known beforehand.

    • For each loop is used when the number of iterations is not known beforehand.

    • For loop can be used with any iterable object.

    • For each loop can only be used with arrays and other iterable objects.

    • For loop uses an index variable to access...

  • Answered by AI

Interview Questionnaire 

1 Question

  • Q1. SDLC Model

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice interview

I applied via Naukri.com and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. C2H profile basic technology based question s only

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about your answer

Signity Software Solutions Interview FAQs

How many rounds are there in Signity Software Solutions interview?
Signity Software Solutions interview process usually has 4 rounds. The most common rounds in the Signity Software Solutions interview process are Resume Shortlist, Coding Test and Technical.
How to prepare for Signity Software Solutions 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 Signity Software Solutions. The most common topics and skills that interviewers at Signity Software Solutions expect are Javascript, MySQL, Node.Js, MongoDB and Angularjs.
What are the top questions asked in Signity Software Solutions interview?

Some of the top questions asked at the Signity Software Solutions interview -

  1. How you keep user token sec...read more
  2. Little exploratory problem solving questions Oops, optimization technique, perf...read more

Tell us how to improve this page.

Signity Software Solutions Interview Process

based on 3 interviews

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

HCL Infosystems Interview Questions
3.9
 • 142 Interviews
ClaySys Interview Questions
2.9
 • 24 Interviews
DynPro Interview Questions
3.8
 • 20 Interviews
Greytrix Interview Questions
3.7
 • 12 Interviews
BANGMETRIC Interview Questions
3.8
 • 12 Interviews
View all

Signity Software Solutions Reviews and Ratings

based on 25 reviews

3.2/5

Rating in categories

3.3

Skill development

3.4

Work-life balance

3.2

Salary

3.0

Job security

3.3

Company culture

3.3

Promotions

3.5

Work satisfaction

Explore 25 Reviews and Ratings
Software Engineer
32 salaries
unlock blur

₹2.7 L/yr - ₹8.5 L/yr

Software Developer
11 salaries
unlock blur

₹3 L/yr - ₹6.6 L/yr

Senior Software Engineer
9 salaries
unlock blur

₹6.5 L/yr - ₹17.8 L/yr

Project Coordinator
5 salaries
unlock blur

₹3.7 L/yr - ₹6 L/yr

Software Tester
4 salaries
unlock blur

₹5 L/yr - ₹6.1 L/yr

Explore more salaries
Compare Signity Software Solutions with

HCL Infosystems

3.9
Compare

Accel Frontline

4.0
Compare

DynPro

3.8
Compare

Greytrix

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