Upload Button Icon Add office photos
Premium Employer

i

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

Securin Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Securin Interview Questions and Answers

Updated 3 Jul 2024

Securin Interview Experiences

Popular Designations

3 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via campus placement at RMK Engineering College, Thiruvallur and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Telephonic Call 

(1 Question)

  • Q1. Have you done any projects using Python Frameworks
  • Ans. 

    Yes, I have worked on projects using Django and Flask frameworks.

    • Developed a web application using Django framework for a school management system

    • Built a RESTful API using Flask framework for a mobile application

    • Implemented authentication and authorization using Django's built-in features

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Securin Python Developer Intern interview:
  • Frameworks in python

Skills evaluated in this interview

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)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via campus placement at Vel Technology, Chennai and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude round + coding round

Round 2 - Assignment 

They called for in person assisment round. They gave on task to complete, you have to show them final output then they will check your algorithm.

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... read more
View answer (4)

Software Developer Interview Questions & Answers

user image gokul nambiar

posted on 21 Jun 2024

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

I applied via Recruitment Consulltant and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Coding Test 

It was easy. About arrays

Round 2 - Assignment 

It was hard . About oops

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (38)

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. They ask generally about yourself and your experience background
Round 2 - Technical 

(3 Questions)

  • Q1. Most of the question related to NLP.
  • Q2. What is the order of efficiency among MobileNet, DenseNet, and EfficientNet?
  • Ans. 

    EfficientNet is the most efficient, followed by MobileNet and then DenseNet.

    • EfficientNet is the most efficient among the three models due to its use of compound scaling and efficient building blocks.

    • MobileNet is less efficient than EfficientNet but more efficient than DenseNet, as it uses depthwise separable convolutions to reduce computational cost.

    • DenseNet is the least efficient among the three models, as it has a hi...

  • Answered by AI
  • Q3. Did they request me to write a lambda function in python? How handle the files using pandas
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Instahyre and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Coalesce, SQL Order of Execution
  • Q2. Given a table with fields(id, name, salary, managerId) find out the managers who have atleast 5 reportees under him/her.
  • Ans. 

    Use SQL query to count number of reportees for each manager and filter out those with atleast 5 reportees.

    • Write a SQL query to count number of reportees for each manager using GROUP BY clause

    • Add HAVING clause to filter out managers with atleast 5 reportees

    • Example: SELECT managerId, COUNT(id) AS num_reportees FROM table_name GROUP BY managerId HAVING num_reportees >= 5

  • Answered by AI
  • Q3. How to manage large datasets in python
  • Ans. 

    Use libraries like pandas and dask to efficiently manage large datasets in Python.

    • Use pandas library for data manipulation and analysis.

    • Use dask library for parallel computing and out-of-core processing.

    • Optimize memory usage by loading data in chunks or using data types efficiently.

    • Consider using cloud services like AWS S3 or Google BigQuery for storing and processing large datasets.

  • Answered by AI
  • Q4. Name few of the commonly used python libraries used by DA
  • Ans. 

    Some commonly used Python libraries for Data Analysts are Pandas, NumPy, Matplotlib, and Scikit-learn.

    • Pandas - used for data manipulation and analysis

    • NumPy - used for numerical computing and working with arrays

    • Matplotlib - used for data visualization

    • Scikit-learn - used for machine learning and data mining

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Nineleaps Technology Solutions Data Analyst interview:
  • SQL
  • Python
Interview preparation tips for other job seekers - Focus on basics of SQL, Python and practice tricky SQL interview questions.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. What is the concept of a session in PHP?
  • Ans. 

    A session in PHP is a way to store information (variables) to be used across multiple pages.

    • Sessions are used to store user data on the server for later use

    • Sessions are identified by a unique session ID, usually stored in a cookie

    • Session data is stored on the server side, making it more secure than using cookies alone

  • Answered by AI
  • Q2. What is the difference between variables and constants in PHP?
  • Ans. 

    Variables can be changed during the execution of a script, while constants cannot be changed once they are defined.

    • Variables can be reassigned with new values, while constants cannot be changed once defined

    • Constants are defined using the define() function, while variables are assigned using the $ symbol

    • Constants are case-sensitive by default, while variables are case-insensitive

  • Answered by AI
  • Q3. What will be the output of the code below and why?
  • Ans. 

    The code will output 'Hello World!' because the variable $x is set to true.

    • The code will check if $x is true, which it is, so it will output 'Hello World!'

    • The if statement will only execute if the condition is true, in this case $x is true.

  • Answered by AI
Round 2 - Coding Test 

What are the differences between echo and print in PHP?

Interview Preparation Tips

Interview preparation tips for other job seekers - As mentioned, please prepare all questions and be ready for the live coding session.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Questions were based QMS & ISMS and past experience
Round 2 - One-on-one 

(1 Question)

  • Q1. Discussed about past experience
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Behavior, worst personality, useless manager
  • Q2. Always keeping eyes on girls one of the worst manager

Interview Preparation Tips

Interview preparation tips for other job seekers - One of the most concerning behaviors was exhibited by an HR manager named Shoeb Ahmed. Despite having ten years of experience, he struggled to collaborate effectively with coworkers and demonstrated inappropriate conduct towards female employees. Unfortunately, no action was taken against him, leading to our eventual departure from the company
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 Dec 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Easy you will have enough time to solve the questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Why you want to join our company
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Scenario of microservice saga pattern
  • Q2. Given an integer array segregate odd and even numbers without using another array
  • Ans. 

    Segregate odd and even numbers in an integer array without using another array

    • Iterate through the array and maintain two pointers, one for odd numbers and one for even numbers

    • Swap elements at the odd and even pointers until all odd numbers are on one side and even numbers on the other

    • Example: Input array [3, 6, 8, 5, 4], Output array [6, 8, 4, 5, 3]

  • Answered by AI

Securin Interview FAQs

How many rounds are there in Securin interview?
Securin interview process usually has 1-2 rounds. The most common rounds in the Securin interview process are Assignment, Coding Test and Telephonic Call.
How to prepare for Securin 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 Securin. The most common topics and skills that interviewers at Securin expect are Labour Laws, MongoDB, Python, SQL and Data Validation.

Tell us how to improve this page.

Securin Interview Process

based on 4 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

Quess Interview Questions
3.9
 • 400 Interviews
G4S Interview Questions
4.0
 • 95 Interviews
Knight Frank Interview Questions
4.1
 • 44 Interviews
Junglee Games Interview Questions
3.2
 • 32 Interviews
NexTurn Interview Questions
4.2
 • 26 Interviews
Tops Security Interview Questions
4.1
 • 2 Interviews
View all

Securin Reviews and Ratings

based on 21 reviews

3.9/5

Rating in categories

4.1

Skill development

3.5

Work-life balance

4.3

Salary

3.8

Job security

3.6

Company culture

3.8

Promotions

4.0

Work satisfaction

Explore 21 Reviews and Ratings
Security Analyst
27 salaries
unlock blur

₹3.5 L/yr - ₹14.5 L/yr

Software Engineer
11 salaries
unlock blur

₹8 L/yr - ₹22.8 L/yr

Senior Software Engineer
8 salaries
unlock blur

₹13.5 L/yr - ₹36 L/yr

Business Development Executive
5 salaries
unlock blur

₹7.2 L/yr - ₹10 L/yr

Engineering Manager
5 salaries
unlock blur

₹36 L/yr - ₹65 L/yr

Explore more salaries
Compare Securin with

G4S

4.0
Compare

Security and Intelligence Services (India)

4.2
Compare

Tops Security

4.1
Compare

Force 1 Guarding Services

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