Upload Button Icon Add office photos

Filter interviews by

Sureify Labs Technology Interview Questions, Process, and Tips

Updated 20 Jan 2024

Top Sureify Labs Technology Interview Questions and Answers

Sureify Labs Technology Interview Experiences

Popular Designations

6 interviews found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
No response

I applied via Naukri.com and was interviewed in Oct 2023. There were 6 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 - HR 

(1 Question)

  • Q1. Had the discussion with the hr regarding the salary expectation and stuff
Round 3 - One-on-one 

(1 Question)

  • Q1. Had one on one work experience discussion with the design head
Round 4 - Case Study 

Had case study discussion round with the senior product designer

Round 5 - Case Study 

Had group discussion with the entire design team

Round 6 - One-on-one 

(1 Question)

  • Q1. Work exp and case study discussion with the founders

Interview Preparation Tips

Interview preparation tips for other job seekers - It's better you don't apply here. There hiring process is way too long takes upto two months and after all that effort interviewing for 5-6 rounds, they won't even respond to you. Won't even let you know if you got in or not. They won't even convey any updates. The Hr doesn't reply nor does the any other people involved be it the design head or any other management folks. Total waste of time for the candidate. Its better to utilise that time elsewhere. Wasted my 6 weeks on this company.

Product Designer Interview Questions asked at other Companies

Q1. What are other things you do apart from designing?
View answer (1)

Sde1 Interview Questions & Answers

user image Anonymous

posted on 20 Jan 2024

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

I applied via Referral and was interviewed before Jan 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Implement merge sort
  • Ans. 

    Merge sort is a divide-and-conquer algorithm that recursively divides an array into two halves, sorts them, and then merges them.

    • Divide the array into two halves

    • Recursively sort each half

    • Merge the sorted halves

  • Answered by AI
  • Q2. Find the product of all elements in the array except that element in linear time
  • Ans. 

    Find the product of all elements in the array except that element in linear time.

    • Initialize a result array with the same length as the input array

    • Calculate the product of all elements to the left of each element and store it in the result array

    • Calculate the product of all elements to the right of each element and multiply it with the corresponding element in the result array

    • Return the result array

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. OOPS concepts, time complexities and behavioural based questions
Round 3 - HR 

(1 Question)

  • Q1. Basic questions about yourself

Interview Preparation Tips

Topics to prepare for Sureify Labs Technology Sde1 interview:
  • Arrays
  • OOPS
  • Time complexities

Skills evaluated in this interview

Sde1 Interview Questions asked at other Companies

Q1. DSA and Language Questions: 1. Difference between Arrays and ArrayList in Java. 2. Queue Implementation using Linked List. 3. BST- How would you fill a BST with a sorted array. 4. Random pointer linked-list clone. 5. Fibonacci number genera... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Oct 2022. There were 4 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 - Coding Test 

Basic algorithm coding test to check your coding skills

Round 3 - Technical 

(1 Question)

  • Q1. Technical Discussion, Real-time question will asked in technical discussion
Round 4 - HR 

(1 Question)

  • Q1. HR Round - For final discussion

Applications Engineer Interview Questions asked at other Companies

Q1. Missing NumberYou are given an array/list ‘BINARYNUMS’ that consists of ‘N’ distinct strings which represent all integers from 0 to N in binary representation except one integer. This integer between 0 to ‘N’ whose binary representation is ... read more
View answer (4)

I applied via LinkedIn and was interviewed in Apr 2021. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. 1st You need to qualify hacker rank coding test?
  • Q2. Next will be technical round? Where they will ask Data Structures and Algorithm, Solid principles, Object oriented concepts, MySQL query and concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - They will conduct 3 technical round including coding test, once you qualify this last round will be salary discussion.

Applications Engineer Interview Questions asked at other Companies

Q1. Missing NumberYou are given an array/list ‘BINARYNUMS’ that consists of ‘N’ distinct strings which represent all integers from 0 to N in binary representation except one integer. This integer between 0 to ‘N’ whose binary representation is ... read more
View answer (4)

Sureify Labs Technology interview questions for popular designations

 Applications Engineer

 (2)

 Software Engineer

 (2)

 Product Designer

 (1)

 Sde1

 (1)

I applied via Company Website and was interviewed in Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What are SQL Injections
  • Ans. 

    SQL Injections are a type of cyber attack where malicious SQL statements are inserted into an entry field to manipulate the database.

    • SQL Injections occur when an attacker inserts malicious SQL statements into an entry field

    • This can manipulate the database and give the attacker access to sensitive information

    • Prevention methods include using parameterized queries and input validation

  • Answered by AI
  • Q2. Topological Sorting of a tree
  • Ans. 

    Topological sorting of a tree is a linear ordering of its nodes such that for every directed edge (u, v), node u comes before node v.

    • Topological sorting is used in scheduling jobs with dependencies.

    • It can be implemented using Depth First Search (DFS) algorithm.

    • Kahn's algorithm is another popular algorithm for topological sorting.

    • Topological sorting is not possible if the graph contains a cycle.

  • Answered by AI
  • Q3. Previous working experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep calm and believe the god

Skills evaluated in this interview

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 (169)

I applied via Walk-in and was interviewed in Feb 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What is sql injection
  • Ans. 

    SQL injection is a type of cyber attack where malicious SQL statements are inserted into an entry field to manipulate a database.

    • SQL injection attacks exploit vulnerabilities in web applications that do not properly validate user input.

    • Attackers can use SQL injection to steal sensitive data, modify or delete data, or even take control of the entire database.

    • Preventing SQL injection involves using parameterized queries,...

  • Answered by AI
  • Q2. How will you improve your productivity

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep calm

Skills evaluated in this interview

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 (169)

Jobs at Sureify Labs Technology

View all

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(3 Questions)

  • Q1. Not related to job questions
  • Q2. Not satisfied questions
  • Q3. I beaver of seniors very bad

Interview Preparation Tips

Interview preparation tips for other job seekers - Please never join this co
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Introducing family background
  • Q2. My speciality and my daily responsibilities
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Feb 2024.

Round 1 - Assignment 

Interview are Good & all task done

Round 2 - One-on-one 

(4 Questions)

  • Q1. What abouth yourself
  • Q2. What about you job role
  • Q3. How many years work
  • Q4. Work related questions
Round 3 - CFO 

(3 Questions)

  • Q1. Current company job role & responsibility
  • Q2. What about your self
  • Q3. MIS regarding new dashboard & how much better in excel
  • Ans. 

    The new dashboard in MIS is significantly better than Excel for data visualization and analysis.

    • The new dashboard in MIS allows for real-time data updates and interactive visualizations.

    • Excel is limited in terms of data handling capacity and lacks advanced visualization features.

    • The new dashboard in MIS can easily integrate data from multiple sources for comprehensive analysis.

    • Excel requires manual data entry and manip...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Difference between cash book and BRS
  • Ans. 

    Cash book records all cash transactions, while BRS reconciles bank statement with cash book.

    • Cash book records all cash receipts and payments made by the company.

    • BRS (Bank Reconciliation Statement) is prepared to reconcile the bank statement with the cash book.

    • Discrepancies between the cash book and bank statement are identified and resolved through BRS.

    • Cash book is maintained by the company, while BRS is prepared by th...

  • Answered by AI
  • Q2. Rules of accountant
  • Ans. 

    Rules of accounting are principles and guidelines that companies must follow when preparing financial statements.

    • Accounting equation must always be in balance: Assets = Liabilities + Equity

    • Revenue recognition principle: Revenue should be recorded when it is earned, not when cash is received

    • Matching principle: Expenses should be recorded in the same period as the revenue they helped generate

    • Conservatism principle: When ...

  • Answered by AI
  • Q3. About day to day work in previous organization
  • Ans. Briefly explained purchase entry and reconciliation and TDS working GST reconciliation
  • Answered Anonymously

Sureify Labs Technology Interview FAQs

How many rounds are there in Sureify Labs Technology interview?
Sureify Labs Technology interview process usually has 4-5 rounds. The most common rounds in the Sureify Labs Technology interview process are One-on-one Round, HR and Case Study.
How to prepare for Sureify Labs Technology 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 Sureify Labs Technology. The most common topics and skills that interviewers at Sureify Labs Technology expect are PHP, SQL, Python, MySQL and React.Js.
What are the top questions asked in Sureify Labs Technology interview?

Some of the top questions asked at the Sureify Labs Technology interview -

  1. Find the product of all elements in the array except that element in linear t...read more
  2. what is sql inject...read more
  3. What are SQL Injecti...read more

Tell us how to improve this page.

Sureify Labs Technology Interview Process

based on 4 interviews

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

PolicyBazaar Interview Questions
3.6
 • 322 Interviews
Square Yards Interview Questions
4.1
 • 196 Interviews
Digit Insurance Interview Questions
4.0
 • 137 Interviews
BankBazaar Interview Questions
3.4
 • 49 Interviews
ACKO Interview Questions
3.8
 • 48 Interviews
Turtlemint Interview Questions
3.6
 • 39 Interviews
RenewBuy Interview Questions
3.4
 • 39 Interviews
InsuranceDekho Interview Questions
3.6
 • 37 Interviews
Easypolicy.com Interview Questions
3.4
 • 6 Interviews
Coverfox Interview Questions
4.3
 • 3 Interviews
View all

Sureify Labs Technology Reviews and Ratings

based on 35 reviews

3.9/5

Rating in categories

3.4

Skill development

4.0

Work-life balance

3.5

Salary

3.2

Job security

4.0

Company culture

3.2

Promotions

3.5

Work satisfaction

Explore 35 Reviews and Ratings
Staff Software Engineer

Hyderabad / Secunderabad

10-20 Yrs

Not Disclosed

Explore more jobs
Software Engineer
30 salaries
unlock blur

₹6.4 L/yr - ₹17 L/yr

QA Engineer
19 salaries
unlock blur

₹3.8 L/yr - ₹9.1 L/yr

Senior Software Engineer
11 salaries
unlock blur

₹12.5 L/yr - ₹26 L/yr

Product Support Engineer
9 salaries
unlock blur

₹5.1 L/yr - ₹6.5 L/yr

Software Developer
8 salaries
unlock blur

₹9 L/yr - ₹14.5 L/yr

Explore more salaries
Compare Sureify Labs Technology with

PolicyBazaar

3.6
Compare

Coverfox

4.3
Compare

ACKO

3.8
Compare

Digit Insurance

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