Upload Button Icon Add office photos

Filter interviews by

Private Eye Interview Questions and Answers

Updated 12 Oct 2023

Private Eye Interview Experiences

2 interviews found

Branch Head Interview Questions & Answers

user image RAVULA SURENDRA REDDY

posted on 12 Oct 2023

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

I applied via Walk-in and was interviewed before Oct 2022. There were 2 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 

(2 Questions)

  • Q1. How loyal up you r to the company.
  • Q2. Its depend on ur strength .

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont seek any advice from anyone show how much you are good enough with your skills. Every employer will listen to you when you put your inner strength infront of them with your esteemed skills.
Dont compromise your self for getting employment.
Get habituated of starving till u get your good enough food to your plate.

Branch Head Interview Questions asked at other Companies

Q1. What is my routine in the bank? How I am working? How I am generating business leads on day by day? What is marketing ? etc...
View answer (2)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Mar 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 - One-on-one 

(1 Question)

  • Q1. Asked about Self introduction?
Round 3 - HR 

(1 Question)

  • Q1. Asked about my past experience?

Interview Preparation Tips

Interview preparation tips for other job seekers - Good Company most trusted company of 35 years. Management is co-operative all the times.More than a family like employees.
Good for young professionals.MD & Directors are likely true leadership qualities.
Am hppy to be a part of organisations once upon a time ..

Branch Head Interview Questions asked at other Companies

Q1. What is my routine in the bank? How I am working? How I am generating business leads on day by day? What is marketing ? etc...
View answer (2)

Interview questions from similar companies

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

I applied via Approached by Company and was interviewed before May 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 - HR 

(3 Questions)

  • Q1. Previous Company position with Salary details
  • Ans. Provided with previous company appointment letter and Salary slips.
  • Answered Anonymously
  • Q2. Qualification details as required for the Branch Head position
  • Ans. Provided with ongoing graduation program with MKU along with my Ex Serviceman equivalent qualification for the position.
  • Answered Anonymously
  • Q3. Asked for immediate joining.
  • Ans. I replied with my previous company policy of 30 days notice that was started once the 1st round was completed and I was selected.
  • Answered Anonymously
Round 3 - Familiarization with other heads 

(1 Question)

  • Q1. No formal questions

Interview Questionnaire 

13 Questions

  • Q1. Difference between java and c?
  • Ans. 

    Java is an object-oriented language while C is a procedural language.

    • Java is platform-independent while C is platform-dependent.

    • Java has automatic garbage collection while C requires manual memory management.

    • Java has built-in support for multithreading while C requires external libraries.

    • Java has a larger standard library compared to C.

    • Java is more secure than C due to its strong type checking and exception handling.

    • C ...

  • Answered by AI
  • Q2. Aggregation functions in DBMS?
  • Ans. 

    Aggregation functions are used to perform calculations on groups of data in a database.

    • Aggregation functions include COUNT, SUM, AVG, MAX, and MIN.

    • They are used with the GROUP BY clause to group data based on a specific column.

    • COUNT function returns the number of rows in a table or the number of non-null values in a column.

    • SUM function returns the sum of values in a column.

    • AVG function returns the average of values in ...

  • Answered by AI
  • Q3. How to write any sentence (given to u ) in mirror image form in java?(ans :by 2 ways 1. reverse string function in string object 2 .by aaray conversion )
  • Ans. 

    Two ways to write a sentence in mirror image form in Java: reverse string function and array conversion.

    • Use the reverse() method of the String class to reverse the sentence

    • Convert the sentence to a character array, then swap the first and last characters, second and second-to-last characters, and so on until the middle is reached

    • Example: 'Hello World' becomes 'dlroW olleH'

  • Answered by AI
  • Q4. Why static is used in "public static void main"?
  • Ans. 

    Static is used in public static void main to allow the method to be called without creating an instance of the class.

    • Static methods belong to the class and not to any instance of the class.

    • The main method is the entry point of a Java program and needs to be called without creating an object of the class.

    • The static keyword allows the main method to be called directly from the class, without creating an instance of the c...

  • Answered by AI
  • Q5. Why there is abstract ,interface and enum class in java?
  • Ans. 

    Abstract classes, interfaces, and enums provide abstraction and modularity in Java.

    • Abstract classes provide a partial implementation of a class and cannot be instantiated.

    • Interfaces define a set of methods that a class must implement and can be used for multiple inheritance.

    • Enums provide a set of named constants.

    • All three are used for abstraction and modularity in Java.

    • Abstract classes and interfaces are used for polym...

  • Answered by AI
  • Q6. Object oriented software engg definition(definition contains word"framwork") ?and definitionof framwork
  • Ans. 

    Object-oriented software engineering is a framework for designing and developing software using objects.

    • Object-oriented software engineering is a methodology for designing and developing software using objects.

    • It involves creating classes and objects that encapsulate data and behavior.

    • Frameworks are pre-built structures that provide a foundation for building software applications.

    • Frameworks can include libraries, APIs,...

  • Answered by AI
  • Q7. Properties of java(object oriented languages)
  • Ans. 

    Java is an object-oriented language with features like inheritance, encapsulation, and polymorphism.

    • Inheritance allows classes to inherit properties and methods from other classes.

    • Encapsulation hides the implementation details of a class from other classes.

    • Polymorphism allows objects to take on multiple forms or behaviors.

    • Java also supports abstraction, interfaces, and exception handling.

    • Example: class Car extends Vehi...

  • Answered by AI
  • Q8. Normalization in DBMS (in detail with eg.)
  • Ans. 

    Normalization is a process of organizing data in a database to reduce redundancy and dependency.

    • Normalization is used to eliminate data redundancy and improve data integrity.

    • It involves dividing a database into two or more tables and defining relationships between them.

    • There are different levels of normalization, such as first normal form (1NF), second normal form (2NF), and so on.

    • Normalization helps in efficient data ...

  • Answered by AI
  • Q9. What is difference between ADBMS and DBMS?
  • Ans. 

    ADBMS stands for Advanced Database Management System which is an extension of DBMS with additional features.

    • ADBMS has advanced features like data mining, data warehousing, and online analytical processing.

    • ADBMS is used for handling large and complex data sets.

    • DBMS is a basic system for managing data and is used for small and simple data sets.

    • DBMS does not have advanced features like ADBMS.

    • Examples of ADBMS are Oracle, ...

  • Answered by AI
  • Q10. Your Introduction
  • Ans. 

    I am a software engineer with 5 years of experience in developing web applications.

    • Proficient in programming languages such as Java, Python, and JavaScript

    • Experience in developing RESTful APIs and microservices

    • Familiarity with front-end technologies such as HTML, CSS, and React

    • Strong understanding of database management systems like MySQL and MongoDB

    • Experience in Agile development methodologies

  • Answered by AI
  • Q11. Why u want do job?(why ur not doing post graduation?)
  • Ans. 

    I want to gain practical experience and contribute to the industry while also learning on the job.

    • I believe that hands-on experience is invaluable in the software engineering field

    • I am eager to apply my skills and knowledge to real-world projects

    • I am excited to work with a team and learn from experienced professionals

    • I am not currently pursuing post-graduation as I feel that gaining industry experience is more importan

  • Answered by AI
  • Q12. What will u do if ur from java background and company requires .NET peoples,not java peoples
  • Q13. Why this Company ?and some information about company( like achivements)

Interview Preparation Tips

Round: Test
Experience: Test contains 45 question having Maths(approx. 30 questions) , verbal & non-verbal , logical reasoning Qustions. 
1 hr to solve it.  And no negative marking .Easy aptitude test for me cause i hav given almost 8 apti tests before it. Most of the questions from R.S. Agarwal (Quantitative Aptitude)Book. we total 40 to 50 peoples given the test(All branch students eligibal for test above 60 % aggregate)
Duration: 60 minutes
Total Questions: 45

Round: Technical Interview
Experience: Out of 40-50 peoples appeared for aptitude test 12 students were eligibal for technical interview. Interview was in the Company . The interviewer ask the questions from the answers i am giving to his previous question .And trying to confuse me.
but after understanding my programming to his question and some logical answers to his qusetions he stops confusing  me. And go on saying 'You r correct or you r near to answer,think little bit more about it'.
Tips: Be confident , If u don't  know answer say that "i didn't brush up that topic". Don't go on interviwer's expression, they(expressions) always distract u.

Round: HR Interview
Experience: After 50-55 minutes of technical interview , we had HR interview.It was easy Interview,  all the 5 candidates have these same set of questions ,so we prepared the answers and all 5 got selected in company.

General Tips: Do aptitude test practice online more
Don't add things that u dont know in resume
(for freshers :keep resume exactly of 2 pages and simple,don't use different font  styles and size much)
Skills: Java programming, c++, sql(DBMS), Html
College Name: TERNA ENGINEERING COLLEGE
Motivation: It is college campus placement only, But The Representator of company(each) gives the motivation to all candiates mostly

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before May 2018. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Questions are related to your past working experience and the position that you applied for Microwave Transmission related questions: What is Microwave and types What is fadind and it's resolution steps D...
  • Q2. PDH-SDH related questions- Difference between PDH and sdh Frame structure of sdh High order and low order bytes and alarms related to bytes Alarms in sdh Ethernet over sdh What is GFP, ENCAPSULATION, VCAT,...
  • Q3. Generally your current work related questions Why you want to change your job What is your expectations from new job Where you seeing your self after 5 year's Current salary and expectations

Interview Preparation Tips

Round: HR Round
Experience: Related to offer they are giving and related cross questions

General Tips: I had been interviewed with Huawei in 2016 and total 2 rounds was there for me. Questions I already had shared, go through it.

I got my offer letter after 1 month after HR discussion but please follow up with HR team once you get call for your selection
Skills: Ethernet over SDH, SDH, Microwave, Technical Knowledge(ML, Microwave, Communication, Presentation Skills
Duration: 1-3 Months

I applied via Walk-in and was interviewed before May 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How you can do sales
  • Ans. 

    To do sales effectively, you need to understand your product, build relationships, communicate persuasively, and follow up consistently.

    • Understand your product: Know the features, benefits, and unique selling points of what you're selling.

    • Build relationships: Establish trust and rapport with potential customers by listening, empathizing, and addressing their needs.

    • Communicate persuasively: Clearly articulate how your p...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview wanted to test both my knowledge and communication skill

I applied via Referral and was interviewed before Feb 2021. There were 2 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. Do u have eny experience

Interview Preparation Tips

Interview preparation tips for other job seekers - It was nice working with Quess corp Ltd nice experience and employees are working with friendly

I applied via Referral and was interviewed before Aug 2021. There were 2 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 - Group Discussion 

About Your Experience and Personal Skills , Behaviour, Communication skills, Hygiene

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't lose Opportunity For Your Life Ensure chance

I applied via Walk-in and was interviewed in Jul 2019. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What do you know about our company?

Interview Preparation Tips

Interview preparation tips for other job seekers - Speak clearly,use good eye contact and be confident.

I applied via Referral and was interviewed in Aug 2019. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Multiple MME can configure in single eNodeB...??
  • Ans. 

    Yes, multiple MMEs can be configured in a single eNodeB.

    • Multiple MMEs (Mobility Management Entities) can be configured in a single eNodeB (Evolved Node B) in LTE networks.

    • This configuration allows for load balancing and redundancy.

    • Each MME can handle control plane signaling for a subset of connected UEs (User Equipment).

    • The eNodeB distributes the UEs among the available MMEs based on various factors like load and capac...

  • Answered by AI
  • Q2. What troubleshoot you can do if MME Communication fail Alarm will appear....??
  • Ans. 

    Check network connectivity, restart MME, check configuration settings.

    • Check if there is any issue with the network connectivity

    • Restart the MME and check if the alarm disappears

    • Verify the configuration settings of the MME

    • Check if there is any hardware failure

    • Contact the vendor for further assistance

  • Answered by AI
  • Q3. Explain Integration process....??
  • Ans. 

    Integration process refers to the process of combining different systems or components into a single unified system.

    • Integration involves connecting different systems or components to work together seamlessly

    • It can involve data integration, application integration, or system integration

    • Integration can be achieved through APIs, middleware, or custom code

    • Examples of integration include integrating a CRM system with a mark...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, if you have talent, definitely you can face any interview. But in telecom sector 90% jugad is applicable....🤔😙

Private Eye Interview FAQs

How many rounds are there in Private Eye interview?
Private Eye interview process usually has 2-3 rounds. The most common rounds in the Private Eye interview process are Resume Shortlist, One-on-one Round and HR.
How to prepare for Private Eye 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 Private Eye. The most common topics and skills that interviewers at Private Eye expect are Branch Handling, Branch Management, Branch Operations, Interpersonal Skills and Operations Management.

Tell us how to improve this page.

Private Eye Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Quess Interview Questions
3.9
 • 410 Interviews
Iris Software Interview Questions
4.0
 • 142 Interviews
G4S Interview Questions
4.0
 • 96 Interviews
Knight Frank Interview Questions
4.0
 • 44 Interviews
Securitas Interview Questions
3.8
 • 30 Interviews
Control Risks Interview Questions
3.7
 • 3 Interviews
Tops Security Interview Questions
4.0
 • 2 Interviews
View all

Private Eye Reviews and Ratings

based on 19 reviews

4.6/5

Rating in categories

4.6

Skill development

4.6

Work-life balance

4.6

Salary

4.6

Job security

4.6

Company culture

4.5

Promotions

4.6

Work satisfaction

Explore 19 Reviews and Ratings
Security Officer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Security Supervisor
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Security Guard
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Branch Manager
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Development Manager
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Private Eye with

Security and Intelligence Services (India)

4.2
Compare

G4S

4.0
Compare

Securitas

3.8
Compare

Tops Security

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