Upload Button Icon Add office photos

Filter interviews by

Probitas Insurance Brokers Interview Questions and Answers

Updated 7 Jun 2024

Probitas Insurance Brokers Interview Experiences

2 interviews found

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is inheritance?
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a class inherits properties and behaviors from another class.

    • Inheritance allows for code reuse and promotes the concept of hierarchy.

    • The class that is being inherited from is called the base class or superclass.

    • The class that inherits from the base class is called the derived class or subclass.

    • The derived class can access the public and protected members o...

  • Answered by AI
  • Q2. What is a cors?
  • Ans. 

    CORS (Cross-Origin Resource Sharing) is a mechanism that allows resources on a web page to be requested from another domain.

    • CORS is used to overcome the same-origin policy enforced by web browsers.

    • It allows a web page to make XMLHttpRequests to another domain, different from the domain that served the web page.

    • CORS involves the browser and the server communicating and agreeing on whether the request should be allowed o...

  • Answered by AI

Skills evaluated in this interview

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

(3 Questions)

  • Q1. Ado.net connections
  • Q2. Basic oops concepts
  • Ans. 

    OOPs concepts include encapsulation, inheritance, polymorphism, and abstraction, essential for structured programming.

    • Encapsulation: Bundling data and methods that operate on the data within one unit (class). Example: A class 'Car' with properties like 'speed' and methods like 'accelerate()'.

    • Inheritance: Mechanism where one class inherits properties and methods from another. Example: 'ElectricCar' inherits from 'Car'.

    • P...

  • Answered by AI
  • Q3. Mysql questions basics
  • Ans. 

    MySQL is a popular relational database management system used for storing and retrieving data efficiently.

    • MySQL uses SQL (Structured Query Language) for database operations.

    • Common data types include INT, VARCHAR, DATE, and TEXT.

    • Basic operations: SELECT, INSERT, UPDATE, DELETE.

    • Example of a SELECT query: SELECT * FROM users WHERE age > 30;

    • MySQL supports indexing to improve query performance.

  • Answered by AI

Top trending discussions

View All
Interview Tips & Stories
6d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Probitas Insurance Brokers?
Ask anonymously on communities.

Interview questions from similar companies

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

(11 Questions)

  • Q1. MVC vs .NET lifecycle
  • Ans. 

    MVC is a design pattern used in .NET development, while .NET lifecycle refers to the stages of a .NET application's execution.

    • MVC is a design pattern that separates an application into three main components: Model, View, and Controller.

    • .NET lifecycle refers to the stages of a .NET application's execution, including initialization, execution, and termination.

    • MVC helps in achieving separation of concerns and making the c...

  • Answered by AI
  • Q2. Dispose vs Finalize
  • Ans. 

    Dispose is used to release unmanaged resources immediately, while Finalize is used for cleanup operations before an object is destroyed by the garbage collector.

    • Dispose is called explicitly by the developer, while Finalize is called by the garbage collector.

    • Dispose should be implemented in classes that directly interact with unmanaged resources.

    • Finalize should be implemented in classes that need to release resources be...

  • Answered by AI
  • Q3. Liscov Substitution
  • Ans. 

    Liskov Substitution Principle ensures that objects of a superclass can be replaced with objects of a subclass without affecting functionality.

    • Substitutability: A subclass should be substitutable for its superclass.

    • Behavior Preservation: Subclasses must maintain the behavior expected from the superclass.

    • Example: If a function uses a class type, it should work with any subclass without modification.

    • Violation: If a subcla...

  • Answered by AI
  • Q4. Dom Sanitizer in Angular
  • Ans. 

    DOM sanitizer in Angular is used to sanitize untrusted HTML to prevent XSS attacks.

    • DOM sanitizer is used to sanitize HTML content before rendering it in Angular templates.

    • It helps prevent Cross-Site Scripting (XSS) attacks by removing potentially harmful content.

    • Angular provides a built-in DomSanitizer service for sanitizing HTML content.

    • Example: Using DomSanitizer in Angular template to sanitize a URL before rendering...

  • Answered by AI
  • Q5. Ngrx state management, how do you manage state in your current project?
  • Ans. 

    I use Ngrx for state management in my current project by defining actions, reducers, effects, and selectors.

    • Define actions to describe user events or interactions

    • Create reducers to specify how state should change in response to actions

    • Implement effects to manage side effects like API calls

    • Use selectors to retrieve specific pieces of state for components

  • Answered by AI
  • Q6. Stored procedure vs Functions
  • Ans. 

    Stored procedures are precompiled SQL queries stored in the database, while functions are reusable code blocks that return a value.

    • Stored procedures are used for performing specific tasks or operations on the database.

    • Functions are used to encapsulate logic and can be called within SQL queries or other functions.

    • Stored procedures can have input and output parameters, while functions always return a value.

    • Stored procedu...

  • Answered by AI
  • Q7. Model binder in MVC
  • Ans. 

    Model binder in MVC is used to map data from HTTP requests to action method parameters in controllers.

    • Model binder maps form data, query string parameters, and route data to action method parameters in MVC controllers.

    • It helps in simplifying the process of extracting data from HTTP requests.

    • Model binder can be customized by creating custom model binders to handle complex data binding scenarios.

  • Answered by AI
  • Q8. Would transaction be rolled back if innermost stored procedure throws an error ?
  • Ans. 

    Yes, the transaction will be rolled back if the innermost stored procedure throws an error.

    • If an error occurs in the innermost stored procedure, it will cause the entire transaction to be rolled back.

    • This ensures that the database remains in a consistent state.

    • Rolling back the transaction means that any changes made by the stored procedures within the transaction will be undone.

  • Answered by AI
  • Q9. NgOninit vs Constructor
  • Ans. 

    NgOnInit is a lifecycle hook in Angular that is called after the component has been initialized, while the constructor is a TypeScript feature used to initialize class properties.

    • NgOnInit is specific to Angular components, while constructor is a general TypeScript feature.

    • NgOnInit is used for initialization logic that relies on Angular's view and input bindings being initialized, while constructor is used for basic ini...

  • Answered by AI
  • Q10. Use of zone.js file
  • Ans. 

    zone.js is a library for managing asynchronous operations in Angular applications.

    • zone.js helps in tracking asynchronous operations and their execution context in Angular applications.

    • It provides hooks for intercepting asynchronous tasks like setTimeout, setInterval, and promises.

    • zone.js can be used for profiling, debugging, and error handling in Angular applications.

  • Answered by AI
  • Q11. Write a query to identify and remove duplicated from a table.
  • Ans. 

    Use a query with GROUP BY and HAVING clause to identify and remove duplicates from a table.

    • Use GROUP BY to group rows with the same values

    • Use HAVING COUNT(*) > 1 to identify duplicates

    • Use DELETE statement to remove duplicates

  • Answered by AI

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was difficult aptitude test. One need to be well versed in aptitude and coding ( any programming language).

Round 2 - Technical 

(1 Question)

  • Q1. I don't know i didn't pass aptitude test

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well as the test is hard to crack.

I applied via Referral and was interviewed before Aug 2021. 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 - Aptitude Test 

Reasoning questions and General Awareness

Round 3 - HR 

(1 Question)

  • Q1. About ME Strengths Weaknesses Selling skills

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Confident
Upto the point to point discussion

I applied via Walk-in and was interviewed before Apr 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 

(6 Questions)

  • Q1. Why should we hire you?
  • Q2. What is your family background?
  • Q3. Share details of your previous job.
  • Q4. What are your salary expectations?
  • Q5. Why are you looking for a change?
  • Q6. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - If you want to grow in your life I don't recommend you AU Small finance bank

I applied via Referral and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What is sales

Interview Preparation Tips

Interview preparation tips for other job seekers - To conveyance coustomer to buy product.
Are these interview questions helpful?

Interview Questionnaire 

1 Question

  • Q1. What is the work in sales?

I applied via Referral and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is trigger
  • Ans. 

    A trigger is a database object that automatically executes a response to certain events.

    • Triggers are used to maintain data integrity and consistency.

    • They can be used to enforce business rules and perform complex calculations.

    • Examples include triggering an email notification when a new record is inserted, or updating a related record when a primary record is modified.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Sep 2019. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. How to increase business?
  • Ans. 

    To increase business, focus on customer satisfaction, expand marketing efforts, and offer promotions.

    • Improve customer service to increase customer satisfaction and loyalty

    • Expand marketing efforts through social media, email marketing, and targeted advertising

    • Offer promotions such as discounts, referral programs, and loyalty rewards

    • Analyze market trends and adjust business strategies accordingly

    • Collaborate with other bu...

  • Answered by AI
  • Q2. Case study and solutions to business problem
  • Q3. Experience

Interview Preparation Tips

Interview preparation tips for other job seekers - There were 40 candidates and 2 posts were there,
The interview was ,
Written test,
Group discussion,
Interview with Manager.

You need to be prepared for ground level questions.

Probitas Insurance Brokers Interview FAQs

How many rounds are there in Probitas Insurance Brokers interview?
Probitas Insurance Brokers interview process usually has 1 rounds. The most common rounds in the Probitas Insurance Brokers interview process are One-on-one Round.
How to prepare for Probitas Insurance Brokers 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 Probitas Insurance Brokers. The most common topics and skills that interviewers at Probitas Insurance Brokers expect are Excel, Accounts Payable, Accounts Receivable, Accounts Reconciliation and Advanced Excel.
What are the top questions asked in Probitas Insurance Brokers interview?

Some of the top questions asked at the Probitas Insurance Brokers interview -

  1. what is a co...read more
  2. what is inheritan...read more
  3. mysql questions bas...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 2 interview experiences

Difficulty level

Easy 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Goldman Sachs Interview Questions
3.5
 • 392 Interviews
Deutsche Bank Interview Questions
3.9
 • 390 Interviews
Synechron Interview Questions
3.5
 • 379 Interviews
Bajaj Finance Interview Questions
4.0
 • 357 Interviews
Udaan Interview Questions
3.9
 • 347 Interviews
PhonePe Interview Questions
4.0
 • 347 Interviews
View all

Probitas Insurance Brokers Reviews and Ratings

based on 3 reviews

1.4/5

Rating in categories

1.4

Skill development

1.4

Work-life balance

1.4

Salary

1.4

Job security

1.4

Company culture

1.4

Promotions

1.5

Work satisfaction

Explore 3 Reviews and Ratings
Back Office Executive

Mumbai

0-4 Yrs

₹ 1.5-3.5 LPA

Explore more jobs
Back Office Executive
4 salaries
unlock blur

₹1 L/yr - ₹1.7 L/yr

Insurance Operations Executive
4 salaries
unlock blur

₹2.1 L/yr - ₹4.5 L/yr

Manager
3 salaries
unlock blur

₹4.2 L/yr - ₹8 L/yr

Branch Manager
3 salaries
unlock blur

₹3 L/yr - ₹7 L/yr

Software Team Lead
3 salaries
unlock blur

₹5.2 L/yr - ₹9.9 L/yr

Explore more salaries
Compare Probitas Insurance Brokers with

HDB Financial Services

3.9
Compare

AU Small Finance Bank

4.2
Compare

Bajaj Finance

4.0
Compare

Equitas Small Finance Bank

4.4
Compare
write
Share an Interview