Upload Button Icon Add office photos

Filter interviews by

Securly Software (India) Interview Questions and Answers

Updated 30 Dec 2024

Securly Software (India) Interview Experiences

Popular Designations

5 interviews found

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

I appeared for an interview in Jun 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic questions on PHP
  • Q2. Some difficult questions and program to write in online editor
Round 2 - Technical 

(2 Questions)

  • Q1. Asked a few Hard questions and project related questions
  • Q2. Program to write on online editor Parenthesis matching and flight ticket booking
  • Ans. 

    Program to write on online editor with parenthesis matching and flight ticket booking functionality.

    • Create a program that allows users to write and edit text online.

    • Implement a feature to match parentheses in the text.

    • Include functionality for users to book flight tickets.

    • Ensure the program is user-friendly and efficient in handling both tasks.

    • Example: Use HTML, CSS, and JavaScript to create the online editor with pare...

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

(1 Question)

  • Q1. Normal managerial round, go through company website before this round

Interview Preparation Tips

Interview preparation tips for other job seekers - You need to run your program in both the rounds to clear the interviews.

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 (210)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic technical question, sql question and snippet

Round 2 - Technical 

(2 Questions)

  • Q1. Write a code for lcm and hcf
  • Ans. 

    Code to find LCM and HCF of two numbers

    • Use Euclidean algorithm to find HCF

    • LCM = (num1 * num2) / HCF

    • Handle edge cases like zero or negative numbers

  • Answered by AI
  • Q2. Explain jwt workfolw in your project
  • Ans. 

    JWT workflow involves generating, signing, and verifying tokens for secure authentication in the project.

    • User logs in with credentials and server generates a JWT token

    • Token is sent to client and stored in local storage

    • Client includes token in headers for subsequent requests

    • Server verifies token signature to authenticate user

  • Answered by AI

Skills evaluated in this interview

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 experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Whats view in database?
  • Ans. 

    A view in a database is a virtual table that is based on the result set of a SELECT query.

    • Views do not store data themselves, but instead display data from one or more tables based on a query.

    • Views can simplify complex queries by pre-defining joins, filters, and calculations.

    • Views can also provide security by restricting access to certain columns or rows of a table.

    • Example: CREATE VIEW my_view AS SELECT column1, column

  • Answered by AI
  • Q2. Unique key based question
Round 2 - Technical 

(2 Questions)

  • Q1. Normalization forms
  • Q2. Explain Singleton class
  • Ans. 

    Singleton class is a design pattern that restricts the instantiation of a class to one object.

    • Singleton class ensures that a class has only one instance and provides a global point of access to it.

    • It typically involves a static member variable that holds the single instance of the class.

    • The constructor of the class is usually made private to prevent external instantiation.

    • Singleton pattern is commonly used in scenarios...

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. Why you want to join us?
  • Ans. 

    I am impressed by your innovative projects and collaborative team culture.

    • I admire your company's commitment to pushing boundaries in technology.

    • I am excited about the opportunity to work with a talented and diverse team.

    • Your focus on continuous learning and growth aligns with my career goals.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do practice programs, if you are able to write the program you will clear the interview mostly.

Skills evaluated in this interview

Backend Developer Interview Questions asked at other Companies

Q1. Vertical Order Traversal of a Binary Tree Given a binary tree, your task is to return the vertical order traversal of its nodes' values. For each node located at a position (X, Y), its left child will be at (X-1, Y-1) and its right child wi... read more
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Apptitude test- Technical mcqs, numeriacl and verbal and reasoning etc

Python Developer Intern Interview Questions asked at other Companies

Q1. what is python? what is a list? what is a tuple? what is set? Difference between list and tuple. Class and object. lambda function. map function filter function inheritance deep copy and shallow copy what is a dictionary? monkey patching. w... read more
View answer (3)

Securly Software (India) interview questions for popular designations

 Software Engineer

 (2)

 Python Developer Intern

 (1)

 Backend Developer

 (1)

 Full Stack Developer

 (1)

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

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

Some scenario based question was asked and logic to implement that

Round 3 - HR 

(1 Question)

  • Q1. Asked about projects

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

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Sep 2022. 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 

Coding on python programming, any language is used in in coding.

Round 3 - Technical 

(2 Questions)

  • Q1. Good ask simple question and simple program
  • Q2. Python programming string reverse the string
  • Ans. 

    Python provides a simple way to reverse a string using slicing.

    • Use slicing to reverse the string: string[::-1]

    • Assign the reversed string to a new variable or print it directly

    • Alternatively, use the reversed() function to create a reversed iterator and join it back into a string

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Study oops concepts, algorithm , logical questions , -----

Skills evaluated in this interview

Interview experience
5
Excellent
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 - Coding Test 

C language basic questions like structure and all
Then linux device driver

Round 3 - HR 

(1 Question)

  • Q1. Normal intro questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Few basic question on python
  • Q2. Some coding questions
Round 2 - Coding Test 

Based on your CV and basic python questions and coding test and few HR questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to work
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
2-4 weeks
Result
No response

I appeared for an interview in Aug 2023.

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 - Aptitude Test 

180 mins test calculatogn

Round 3 - One-on-one 

(2 Questions)

  • Q1. OOPS questions
  • Q2. Design Pattern test
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

MENTAL FAMILIY RELATION

Round 2 - One-on-one 

(1 Question)

  • Q1. Share ur experience

Securly Software (India) Interview FAQs

How many rounds are there in Securly Software (India) interview?
Securly Software (India) interview process usually has 2-3 rounds. The most common rounds in the Securly Software (India) interview process are Technical, Aptitude Test and Resume Shortlist.
How to prepare for Securly Software (India) 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 Securly Software (India) . The most common topics and skills that interviewers at Securly Software (India) expect are Javascript, Front End, HTML, Machine Learning and MySQL.
What are the top questions asked in Securly Software (India) interview?

Some of the top questions asked at the Securly Software (India) interview -

  1. Program to write on online editor Parenthesis matching and flight ticket booki...read more
  2. Whats view in databa...read more
  3. Explain Singleton cl...read more

Tell us how to improve this page.

Securly Software (India) Interview Process

based on 5 interviews

Interview experience

4.2
  
Good
View more

Interview Questions from Similar Companies

McAfee Interview Questions
4.0
 • 30 Interviews
Gen Interview Questions
4.0
 • 17 Interviews
Anywhere Interview Questions
4.5
 • 14 Interviews
Fortinet Interview Questions
4.2
 • 11 Interviews
FireEye Interview Questions
4.3
 • 5 Interviews
Trend Micro Interview Questions
4.3
 • 1 Interview
View all

Securly Software (India) Reviews and Ratings

based on 3 reviews

4.5/5

Rating in categories

3.7

Skill development

5.0

Work-life balance

4.1

Salary

4.1

Job security

4.5

Company culture

3.1

Promotions

4.0

Work satisfaction

Explore 3 Reviews and Ratings
Principal Software Engineer
11 salaries
unlock blur

₹24.8 L/yr - ₹44 L/yr

Software Engineer
10 salaries
unlock blur

₹9 L/yr - ₹14 L/yr

Senior Software Engineer
7 salaries
unlock blur

₹10.6 L/yr - ₹28 L/yr

Senior Devops Engineer
5 salaries
unlock blur

₹15.6 L/yr - ₹35.6 L/yr

Project Manager
4 salaries
unlock blur

₹19.5 L/yr - ₹24 L/yr

Explore more salaries
Compare Securly Software (India) with

HirePro Consulting

3.8
Compare

Prometric Testing

3.5
Compare

Dealsdray Online

3.2
Compare

Nimble Wireless

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