Upload Button Icon Add office photos

Filter interviews by

Securiti Senior Software Engineer Interview Questions and Answers

Updated 16 Jun 2024

Securiti Senior Software Engineer Interview Experiences

2 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

First round was coding test on Hacker rank. There were 3 question one was about apis, 2nd one was array based medium level question, 3rd one was about SQL.

Round 2 - Technical 

(4 Questions)

  • Q1. Write a program to identify prime factors of a number.
  • Ans. 

    Program to identify prime factors of a number

    • Create a function that takes a number as input

    • Iterate through numbers starting from 2 up to the square root of the input number

    • Check if the number is a factor and if it is prime

    • If prime, add it to the list of prime factors

  • Answered by AI
  • Q2. Convert given number to readable string
  • Ans. 

    Convert a given number to a readable string

    • Use a switch statement to handle different cases for each digit

    • Consider special cases like teens (11-19) and tens (20, 30, etc.)

    • Handle thousands, millions, etc. by recursively calling the function

  • Answered by AI
  • Q3. SQL based questions
  • Q4. Explain the recent functionality that I have worked on with a flow diagram.
  • Ans. 

    I recently worked on implementing a new search functionality for our e-commerce platform.

    • Designed a search algorithm to improve search accuracy and speed

    • Implemented filters for users to refine search results

    • Created a user-friendly interface for displaying search results

    • Integrated the search functionality with the backend database

    • Tested the functionality to ensure it met performance requirements

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Coding Test 

-> Explain about current project architecture.
-> Write a custom LRU cache class.
-> Given a number print the value in words(Rupees).

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nt ... read more
asked in Capgemini
Q2. Pascal's TriangleYou are given an integer N. Your task is to retu ... read more
Q3. K Largest Elements You are given with an integer k and an array o ... read more
asked in Info Edge
Q4. Buy and Sell StockYou are Harshad Mehta’s friend. He told you the ... read more
asked in DBS Bank
Q5. Tell me about yourself. What technology are you using? What is a ... read more

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Basic all type questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Project related and technology se related
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Feb 2024. There were 5 interview rounds.

Round 1 - Coding Test 

Coding assessment in Code signal which is vedio proctored

Round 2 - Technical 

(1 Question)

  • Q1. Design a loan application system
  • Ans. 

    Design a loan application system

    • Collect applicant information such as personal details, employment history, and financial information

    • Include a credit check process to assess applicant's creditworthiness

    • Implement a system for loan approval/rejection based on set criteria

    • Provide options for different types of loans and repayment plans

    • Ensure security measures are in place to protect applicant's sensitive information

  • Answered by AI
Round 3 - Coding Test 

Bank account creation, deposit money, withdraw money

Round 4 - HR 

(1 Question)

  • Q1. Question around work experience and how a particular scenario or situation is handled
Round 5 - Case Study 

Suggest system cost optimization based on given data set

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
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 - Assignment 

Given an simple gaming questions to be developed in JS

Round 3 - Coding Test 

Given another UI design in image to be developed

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

I applied via Referral and was interviewed before Oct 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 

50 questions in 12mins

Round 3 - Technical 

(1 Question)

  • Q1. Basic DSA question in binary search and memoization

Interview Preparation Tips

Interview preparation tips for other job seekers - basic DSA question on binary search and basic memoization was asked
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. 2,3 Round technical
  • Q2. Basic .net ,MVC framework concepts,SQL logical questions
Interview experience
3
Average
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral

Round 1 - Coding Test 

70 mins 4 topics, 1/2 easy, 3 would be easy+, need detail orientation, 4 would be medium,

Round 2 - Case Study 

Easy case study, code review and find the bug

Interview Preparation Tips

Interview preparation tips for other job seekers - System Design.

I applied via Company Website and was interviewed in Dec 2021. 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 - Technical 

(2 Questions)

  • Q1. 1. Questions around projects : JWT, UserAuthentication etc
  • Q2. 2. Write a code to find frequency of characters in a given string?
  • Ans. 

    Code to find frequency of characters in a given string

    • Use a hash table to store character frequencies

    • Iterate through the string and update the hash table accordingly

    • Print the hash table to display the character frequencies

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. 1. Write a code to reverse a linked list?
  • Ans. 

    Code to reverse a linked list

    • Create three pointers: prev, curr, and next

    • Initialize prev to null and curr to head

    • Loop through the list and set next to curr's next node

    • Set curr's next node to prev

    • Move prev and curr one node ahead

    • Return prev as the new head

  • Answered by AI
  • Q2. 2. Write a code to reverse linked list in size of K?
  • Ans. 

    Code to reverse linked list in size of K

    • Create a function that takes head of linked list and size K as input

    • Traverse the linked list in groups of K nodes

    • Reverse each group of K nodes using iterative or recursive approach

    • Connect the reversed groups to form the final linked list

    • Return the new head of the reversed linked list

  • Answered by AI
  • Q3. 3. Questions around project and design a database structure for comments system of quora?
Round 4 - HR 

(1 Question)

  • Q1. Basic HR round questions

Interview Preparation Tips

Topics to prepare for AmbitionBox Senior Software Engineer interview:
  • Data Structures
  • Algorithms
  • Web Development
Interview preparation tips for other job seekers - Interview is almost easy, just be confident and think out of the box.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Coding Test 

DSA coding round.
Graph based question, dp question.

Round 3 - Technical 

(1 Question)

  • Q1. 1. design service to download big file
  • Ans. 

    Design a service to download large files.

    • Use a scalable architecture to handle large file downloads.

    • Implement resumable downloads to handle network interruptions.

    • Use parallel downloading to speed up the download process.

    • Implement authentication and authorization to ensure security.

    • Provide progress updates to the user during the download process.

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Java based questions Spring beans

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on your coding skills + system design + Java spring

Skills evaluated in this interview

Securiti Interview FAQs

How many rounds are there in Securiti Senior Software Engineer interview?
Securiti interview process usually has 1-2 rounds. The most common rounds in the Securiti interview process are Coding Test and Technical.
What are the top questions asked in Securiti Senior Software Engineer interview?

Some of the top questions asked at the Securiti Senior Software Engineer interview -

  1. Explain the recent functionality that I have worked on with a flow diagr...read more
  2. Write a program to identify prime factors of a numb...read more
  3. Convert given number to readable str...read more

Tell us how to improve this page.

Securiti Senior Software Engineer Salary
based on 9 salaries
₹30 L/yr - ₹40 L/yr
129% more than the average Senior Software Engineer Salary in India
View more details
Software Engineer
12 salaries
unlock blur

₹9 L/yr - ₹20.5 L/yr

Senior Software Engineer
9 salaries
unlock blur

₹30 L/yr - ₹40 L/yr

Software Developer
5 salaries
unlock blur

₹10 L/yr - ₹14 L/yr

Software Development Engineer
4 salaries
unlock blur

₹12 L/yr - ₹18 L/yr

SDE
4 salaries
unlock blur

₹14 L/yr - ₹22.5 L/yr

Explore more salaries
Compare Securiti with

Zoho

4.3
Compare

Freshworks

3.5
Compare

TCS

3.7
Compare

Wipro

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