Upload Button Icon Add office photos
Engaged Employer

i

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

REALTIME BIOMETRICS Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

REALTIME BIOMETRICS Interview Questions and Answers

Updated 4 May 2019

REALTIME BIOMETRICS Interview Experiences

1 interview found

I applied via Approached by Company and was interviewed in Dec 2018. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. How To get 2 nd highest Salary From a Employee Table. Delete Duplicate Records With CTE Expressions.
  • Ans. 

    Get 2nd highest salary from employee table and delete duplicate records with CTE expressions.

    • Use a subquery to get the highest salary

    • Use another subquery to get the 2nd highest salary

    • Use CTE to delete duplicate records

    • Example: WITH CTE AS (SELECT ROW_NUMBER() OVER(PARTITION BY salary ORDER BY id) AS RowNumber FROM employee) DELETE FROM CTE WHERE RowNumber > 1;

  • Answered by AI
  • Q2. Swapping without using 3rd Variable
  • Ans. 

    Swapping two variables without using a third variable in programming.

    • Use arithmetic operators to swap values

    • Use XOR operator to swap values

    • Use tuple unpacking to swap values

    • Use pointers to swap values

  • Answered by AI
  • Q3. Datatable, Datetime Conversions, MVC Architecture e.t.c
  • Q4. Salary Discussion, Academics Score

Interview Preparation Tips

Round: Resume Shortlist
Experience: Candidate Should be MCA/ B.tech/Bca
Experience must be min 1 year

General Tips: You Should be Well Prepared for your interview. You need to stay Calm during interview.
Skills: Asp.net, Mvc, sql, Jquery, Communication
Duration: <1 week

Skills evaluated in this interview

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

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Assignment 

Page development using a framework you are familiar with.

Round 2 - Coding Test 

All the languages you have mentioned.

Round 3 - HR 

(1 Question)

  • Q1. Compensation and other details

Interview Preparation Tips

Interview preparation tips for other job seekers - Are you familiar with recent technology?
Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. What do you know about brd, srs
  • Ans. 

    BRD stands for Business Requirements Document and SRS stands for Software Requirements Specification.

    • BRD outlines the business objectives and requirements for a project.

    • SRS details the software requirements needed to meet the business objectives.

    • BRD is more high-level and focuses on business needs, while SRS is more detailed and technical.

    • BRD is typically created by business analysts, while SRS is created by software d...

  • Answered by AI
  • Q2. What is the flow chart, process,
  • Ans. 

    A flow chart is a visual representation of a process or workflow, showing the steps and decisions involved.

    • Flow charts use different shapes to represent different actions or steps in a process.

    • Arrows indicate the flow of the process from one step to another.

    • Decision points are represented by diamonds, with different paths depending on the outcome.

    • Examples: process of ordering a product online, steps in a software devel

  • Answered by AI
  • Q3. What is wireframe
  • Ans. 

    A wireframe is a visual representation of a website or app layout that shows the basic structure and functionality without design elements.

    • Wireframes are used to plan and communicate the layout and functionality of a digital product.

    • They are typically created using simple shapes and placeholders for content.

    • Wireframes help stakeholders visualize the structure and flow of a project before investing in design and develop...

  • Answered by AI
  • Q4. What tools you are use
  • Ans. 

    I use a variety of tools such as Microsoft Excel, SQL, Tableau, Jira, and Visio to analyze data and create visualizations for stakeholders.

    • Microsoft Excel for data analysis and manipulation

    • SQL for querying databases

    • Tableau for creating visualizations

    • Jira for project management

    • Visio for creating process flow diagrams

  • Answered by AI
  • Q5. Schenerio based questions

Skills evaluated in this interview

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

(1 Question)

  • Q1. Tel about yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Proficient in Java, Python, and web development technologies such as HTML, CSS, and JavaScript

    • Experience working on various projects including a web-based inventory management system using Django framework

    • Strong problem-solving skills and ability to work well in a team environment

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

White board coding test

Round 2 - HR 

(2 Questions)

  • Q1. Any other offers in hand?
  • Ans. 

    Yes, I have received offers from two other companies.

    • Received offers from Company A and Company B

    • Currently evaluating all offers before making a decision

  • Answered by AI
  • Q2. Situation based question
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Mar 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. NodeJS event loop
  • Q2. What isClosure explain with example
  • Ans. 

    A closure is a function that has access to its own scope, as well as the outer function's scope.

    • Closure allows a function to access variables from its outer function even after the outer function has finished executing.

    • Example: function outerFunction() { let outerVar = 'I am outer'; return function innerFunction() { console.log(outerVar); }; }

    • When innerFunction is called, it can still access outerVar even though outerF

  • Answered by AI

I applied via Naukri.com and was interviewed in Mar 2022. 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 - Group Discussion 

Last work experience and

Round 3 - Technical 

(1 Question)

  • Q1. Electrical system , senior type connection
Round 4 - HR 

(1 Question)

  • Q1. Working time , pay scale

Interview Preparation Tips

Interview preparation tips for other job seekers - sensor, relay, plc ,vfd, starter etc electronic equipment Question
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Threads vs process
  • Ans. 

    Threads are lightweight processes within a single process, sharing memory space, while processes are independent instances of a program with their own memory space.

    • Threads share memory space within a process, allowing for efficient communication and data sharing.

    • Processes have their own memory space, making them more isolated and secure.

    • Threads are faster to create and switch between compared to processes.

    • Processes are...

  • Answered by AI
  • Q2. Thread synchronization program using semaphore/mutex
  • Ans. 

    Thread synchronization using semaphore/mutex in programming

    • Use semaphores to control access to shared resources among multiple threads

    • Mutex can be used to ensure only one thread can access a resource at a time

    • Implement a program where threads wait for a semaphore signal before accessing a shared resource

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Aptitude followed by core C++ questions.

Round 2 - One-on-one 

(2 Questions)

  • Q1. What are the expectations
  • Ans. 

    Expectations for a Senior Software Engineer

    • Strong technical skills and expertise in relevant programming languages and technologies

    • Ability to lead and mentor junior team members

    • Experience in designing and implementing complex software systems

    • Excellent problem-solving and analytical skills

    • Strong communication and collaboration skills

  • Answered by AI
  • Q2. Why you want to join
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 - Aptitude Test 

Aptitude test covering all technical questions

Round 3 - Technical 

(1 Question)

  • Q1. Profile related technical
Round 4 - Behavioral 

(2 Questions)

  • Q1. Salary negotiation and policy brief
  • Q2. Salary negotiation and policy brief given

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best. Do not panic. Give calmly your hundred percent.

REALTIME BIOMETRICS Interview FAQs

How to prepare for REALTIME BIOMETRICS 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 REALTIME BIOMETRICS. The most common topics and skills that interviewers at REALTIME BIOMETRICS expect are ASP.Net, C#, Sales Coordination, Client Relationship Management and Devops.
What are the top questions asked in REALTIME BIOMETRICS interview?

Some of the top questions asked at the REALTIME BIOMETRICS interview -

  1. How To get 2 nd highest Salary From a Employee Table. Delete Duplicate Records ...read more
  2. Swapping without using 3rd Varia...read more
  3. Datatable, Datetime Conversions, MVC Architecture e....read more

Tell us how to improve this page.

REALTIME BIOMETRICS Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

HOLITECH INDIA Interview Questions
4.0
 • 25 Interviews
JBS Enterprises Interview Questions
3.2
 • 25 Interviews
Matrix ComSec Interview Questions
3.6
 • 17 Interviews
CP Plus Interview Questions
4.1
 • 12 Interviews
Mantra Softech Interview Questions
3.9
 • 12 Interviews
HID Global Interview Questions
4.3
 • 6 Interviews
SecurEyes Interview Questions
3.4
 • 4 Interviews
Essl Security Interview Questions
2.0
 • 2 Interviews
View all

REALTIME BIOMETRICS Reviews and Ratings

based on 37 reviews

3.1/5

Rating in categories

3.5

Skill development

3.0

Work-life balance

2.8

Salary

2.7

Job security

2.9

Company culture

2.7

Promotions

3.1

Work satisfaction

Explore 37 Reviews and Ratings
Technical Support Engineer
18 salaries
unlock blur

₹1.8 L/yr - ₹3.5 L/yr

Area Sales Manager
7 salaries
unlock blur

₹2.4 L/yr - ₹5.5 L/yr

Desktop Support Engineer
5 salaries
unlock blur

₹2 L/yr - ₹3 L/yr

Business Development Manager
4 salaries
unlock blur

₹4.5 L/yr - ₹12 L/yr

Android Developer
4 salaries
unlock blur

₹1.8 L/yr - ₹3 L/yr

Explore more salaries
Compare REALTIME BIOMETRICS with

Zicom Electronic Security Systems

3.1
Compare

Matrix ComSec

3.6
Compare

HID Global

4.3
Compare

Essl Security

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