Upload Button Icon Add office photos

Filter interviews by

LOCUS Interview Questions and Answers

Updated 4 Jan 2025

LOCUS Interview Experiences

Popular Designations

5 interviews found

QA Engineer Interview Questions & Answers

user image Sandeep Sugumaran

posted on 14 Oct 2024

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

(1 Question)

  • Q1. Questions around testing and automations

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (7)
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jan 2023. There were 4 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 - One-on-one 

(1 Question)

  • Q1. Basic discussion on what is in the resume paper and the previous experience
Round 3 - Assignment 

This would be bases on the routing or the general query

Round 4 - One-on-one 

(1 Question)

  • Q1. Assignment discussion along with some strategy questions

Customer Success Engineer Interview Questions asked at other Companies

Q1. Working of a chilled water system?
View answer (1)

Software Developer Interview Questions & Answers

user image Divyansh Goyal

posted on 4 Jan 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Jan 2024. There were 2 interview rounds.

Round 1 - Coding Test 

1 DSA and some simple programming questions asked.

Round 2 - Technical 

(2 Questions)

  • Q1. Question related to MERN
  • Q2. Question Realed to mongo DB

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

3d Visualisation Interview Questions & Answers

user image Anonymous

posted on 9 Oct 2023

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

(1 Question)

  • Q1. Casula Question
Round 3 - Technical 

(1 Question)

  • Q1. Technical Test of 3d

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not joined this firm

LOCUS interview questions for popular designations

 Customer Success Engineer

 (1)

 Implementation Consultant

 (1)

 QA Engineer

 (1)

 Software Developer

 (1)

I applied via Naukri.com and was interviewed before Oct 2021. There were 2 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 - HR 

(2 Questions)

  • Q1. They will go to ask some common questions about your future purpose and all.
  • Q2. And also ask about you dedication towards the organization

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare for the interview about all the technologies which you have mentioned into your resume

Implementation Consultant Interview Questions asked at other Companies

Q1. In a factory as per govt rule how much leave is applicable
View answer (1)

Interview questions from similar companies

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

I applied via Walk-in and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. About yourself, last company
  • Q2. How you will add value to our company
Round 2 - One-on-one 

(3 Questions)

  • Q1. About yourself, about last company profile
  • Q2. What you know about our company, process and value to our company
  • Q3. In how many days you will join the company.

Software Technologies Interview Questions & Answers

Signzy Technologies user image Anonymous

posted on 3 Jan 2025

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. ACID Properties
  • Ans. 

    ACID properties are a set of properties that guarantee reliable and consistent transactions in a database system.

    • Atomicity ensures that either all operations in a transaction are completed successfully or none at all.

    • Consistency ensures that the database remains in a valid state before and after the transaction.

    • Isolation ensures that the concurrent execution of transactions results in a system state that would be obtai...

  • Answered by AI
  • Q2. What are Idempotent HTTP Requests?
  • Ans. 

    Idempotent HTTP requests are requests that can be repeated multiple times without changing the result beyond the initial request.

    • Idempotent requests have the same outcome no matter how many times they are executed.

    • GET, PUT, and DELETE HTTP methods are typically idempotent.

    • POST requests are not idempotent as they can create new resources with each execution.

  • Answered by AI
  • Q3. Questions regarding your project, and how did you learn from the projects and tasks assigned to you?
  • Q4. System Design

Interview Preparation Tips

Topics to prepare for Signzy Technologies Software Technologies interview:
  • System DEsign
  • DSa
  • Algo
  • DBMS
  • Operating System
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Government College of Engineering, Aurangabad and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Mostly questions on logical aptitude

Round 2 - Technical 

(3 Questions)

  • Q1. DSA questions. Reverse word of string, bubble sort, swap two variables without use of third variable
  • Q2. OOPs concepts also some questions on project
  • Q3. 1 puzzle (refer gfg)
Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to work at our company?
  • Q2. What was the toughest challenge you have ever faced?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Let var const difference
  • Ans. 

    var, let, and const are all used to declare variables in JavaScript, but they have different scopes and mutability.

    • var is function-scoped and can be redeclared and reassigned

    • let is block-scoped and can be reassigned but not redeclared

    • const is block-scoped and cannot be reassigned or redeclared

  • Answered by AI
  • Q2. Polyfills of bind method
  • Ans. 

    Polyfills of bind method provide a way to use the bind method in older browsers that do not support it natively.

    • Polyfill code typically checks if the bind method is available and if not, it creates a new function that mimics the behavior of bind.

    • One common polyfill for the bind method is the following: Function.prototype.bind = Function.prototype.bind || function() { // polyfill code here };

    • Polyfills are often used to ...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Make a search bar in React
  • Ans. 

    Create a search bar component in React for filtering data

    • Create a functional component for the search bar

    • Use state to store the search query

    • Implement a onChange event handler to update the search query

    • Filter the data based on the search query

  • Answered by AI
  • Q2. React js core concepts
Round 3 - HR 

(2 Questions)

  • Q1. How you structure your work
  • Ans. 

    I structure my work by breaking down tasks, setting priorities, creating timelines, and regularly reviewing progress.

    • Break down tasks into smaller, manageable chunks

    • Set priorities based on deadlines and importance

    • Create timelines to track progress and ensure timely completion

    • Regularly review progress and adjust plans as needed

  • Answered by AI
  • Q2. How you make a project from scratch
  • Ans. 

    To make a project from scratch, start by defining requirements, creating a plan, designing the architecture, implementing the code, testing, and deploying.

    • Define project requirements and goals

    • Create a project plan with timelines and milestones

    • Design the architecture of the project, including database schema and system components

    • Implement the code following best practices and coding standards

    • Test the project thoroughly ...

  • Answered by AI

Skills evaluated in this interview

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 Sep 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Find element whose count is more than n/2
  • Ans. 

    Use Boyer-Moore Majority Vote Algorithm to find element with count more than n/2.

    • Initialize candidate element and count

    • Iterate through array, updating count if same as candidate or decrementing if different

    • If count becomes 0, update candidate element

    • Iterate again to confirm candidate element count is more than n/2

  • Answered by AI
  • Q2. One puzzle based on distance and banana

Skills evaluated in this interview

LOCUS Interview FAQs

How many rounds are there in LOCUS interview?
LOCUS interview process usually has 2-3 rounds. The most common rounds in the LOCUS interview process are One-on-one Round, Resume Shortlist and Technical.
How to prepare for LOCUS 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 LOCUS. The most common topics and skills that interviewers at LOCUS expect are Photoshop, AutoCAD, Coordination, Sketching and Architectural Design.
What are the top questions asked in LOCUS interview?

Some of the top questions asked at the LOCUS interview -

  1. Assignment discussion along with some strategy questi...read more
  2. They will go to ask some common questions about your future purpose and a...read more
  3. Questions around testing and automati...read more

Tell us how to improve this page.

LOCUS Interview Process

based on 5 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Paytm Interview Questions
3.3
 • 761 Interviews
Swiggy Interview Questions
3.8
 • 425 Interviews
BigBasket Interview Questions
3.9
 • 346 Interviews
Zomato Interview Questions
3.7
 • 315 Interviews
Uber Interview Questions
4.2
 • 161 Interviews
Ola Cabs Interview Questions
3.4
 • 141 Interviews
MakeMyTrip Interview Questions
3.7
 • 121 Interviews
BookMyShow Interview Questions
3.9
 • 23 Interviews
View all

LOCUS Reviews and Ratings

based on 42 reviews

3.0/5

Rating in categories

2.6

Skill development

3.1

Work-life balance

3.3

Salary

2.5

Job security

2.9

Company culture

2.7

Promotions

2.8

Work satisfaction

Explore 42 Reviews and Ratings
Technical Account Manager
10 salaries
unlock blur

₹9.3 L/yr - ₹20 L/yr

Integration Engineer
9 salaries
unlock blur

₹11 L/yr - ₹18 L/yr

Software Engineer
7 salaries
unlock blur

₹15 L/yr - ₹22.2 L/yr

Customer Success Engineer
6 salaries
unlock blur

₹8 L/yr - ₹8.1 L/yr

Product Manager
6 salaries
unlock blur

₹25 L/yr - ₹30 L/yr

Explore more salaries
Compare LOCUS with

Zomato

3.7
Compare

Swiggy

3.8
Compare

Ola Cabs

3.4
Compare

Uber

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