Upload Button Icon Add office photos

Filter interviews by

Bini Laboratories Interview Questions and Answers for Freshers

Updated 3 Jun 2023

Bini Laboratories Interview Experiences for Freshers

1 interview found

Warning: maximum length reached Interview Questions & Answers

user image Anonymous

posted on 3 Jun 2023

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Where did you previously work and all is based on that
  • Q2. What is your expected salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not join directly ask about each and every details

Interview questions from similar companies

I was interviewed in Sep 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Timing -12pm to 1:30pm
Test environment was good and we should keep in our mind about our net speed.

  • Q1. Reverse the array

    Given an array with N elements, the task is to reverse all the array elements and print the reversed array.

    Input Format:

    The first line contains an integer N representing the size of ...
  • Ans. Brute Force approach
    • Initialise start and end indices with start = 0, end = N-1 where N is the total number of elements in array.
    • We then run a loop while start < end and swap arr[start] with arr[end].
    • Finally, we increment start and decrement end variable
    Space Complexity: O(1)Explanation: Time Complexity: O(1)Explanation:
  • Answered by CodingNinjas
  • Q2. Tiling Problem

    You have been given a board where there are '2' rows and 'N' columns. You have an infinite supply of 2x1 tiles, and you can place a tile in the following ways:

    1. Horizontal...
  • Ans. Recursion And Memoization (Runtime error)

    Try to place the tile to fill the unit column and calculate the number of ways from smaller sub-problems. Then use memoization to convert O(2^N) solution to an O(N) solution.

    1. At any point we are at ‘idx’ column then we can place our tile in two ways to fill this column.
      1. Option 1 -  1 Horizontal Tile

    We can place in this way where we have ‘idx-1’ column filled.

        &nb...

  • Answered by CodingNinjas
Round 2 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

Timing was 3pm to 4 pm
environment was easy familier and interviwer was also in good mood ,first he ask me about general things then he come on OS/DBMS .

  • Q1. DBMS Questions

    Normalization forms.
    Entity relational model

Round 3 - HR 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

timing - 10am to 10:30am
environment was very familier and interviewer was with good sence of humor

  • Q1. Basic HR Questions

    Would you prefer work from home or would like to come to office?

    What is your biggest achievement.

    Are you a team player?

  • Ans. 

    Tip 1 : do what you are real and don't try to be fake 
    Tip 2 : be confident and try to explain in simple way

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in NoidaEligibility criteriaCGPA 7Global Logic interview preparation:Topics to prepare for the interview - Data Structure, OOPS,MERN STACK, DBMS,OSTime required to prepare for the interview - 12 MonthsInterview preparation tips for other job seekers

Tip 1 : Don't depend on video only , practice is must and assignments provided by coding ninja's are best.
Tip 2 : Note all important point in note book so that you can easy revise.
Tip 3 : Make at least 3-4 projects on your on

Application resume tips for other job seekers

Tip 1 : Be real don't go for fake and write what you are.
Tip 2 : Mention all your project and explain them in good way

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via campus placement at Don Bosco Institute of Technology, Bangalore and was interviewed in Dec 2020. There were 5 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Give a real time example of Inheritance, Polymorphism, Abstraction and Encapsulation.
  • Ans. 

    Real-time examples of OOP concepts

    • Inheritance: A car is a vehicle, inheriting properties of a vehicle

    • Polymorphism: A shape can be a square or a circle, both implementing the same area method

    • Abstraction: A TV remote has buttons to perform actions, but the user doesn't need to know how it works internally

    • Encapsulation: A bank account has private data like balance, which can only be accessed through public methods

  • Answered by AI
  • Q2. Write a SQL query to to print all the rows in a table that has no match in a second table.
  • Ans. 

    SQL query to print rows with no match in a second table

    • Use LEFT JOIN to join the two tables

    • Filter the rows where the second table's primary key is NULL

    • SELECT the columns from the first table

  • Answered by AI
  • Q3. What is a HashMap?
  • Ans. 

    HashMap is a data structure that stores key-value pairs and allows fast retrieval of values based on keys.

    • HashMap is part of the Java Collections Framework.

    • It uses hashing to store and retrieve elements.

    • It allows null values and null keys.

    • It is not synchronized by default, but can be made synchronized using Collections.synchronizedMap() method.

    • Example: HashMap map = new HashMap<>(); map.put("apple", 1)

  • Answered by AI
  • Q4. What is the difference between final, finally and finalise?
  • Ans. 

    Final, finally and finalise are related to completion or conclusion, but have different meanings and usage.

    • Final is an adjective used to describe the last or ultimate stage of something.

    • Finally is an adverb used to indicate the end of a process or event after a long wait or delay.

    • Finalise is a verb used to complete or finish something, often with a formal or official process.

    • Examples: The final exam, finally finished t

  • Answered by AI
  • Q5. What are the different types of Database management systems. What are the Database languages ? What is the difference between drop, delete and truncate?
  • Ans. 

    Different types of DBMS, DB languages & difference between drop, delete & truncate.

    • Types of DBMS: Relational, NoSQL, Object-oriented, Hierarchical, Network, etc.

    • Database languages: SQL, PL/SQL, T-SQL, etc.

    • DROP: Deletes a table and its data, cannot be rolled back.

    • DELETE: Deletes rows from a table, can be rolled back.

    • TRUNCATE: Deletes all rows from a table, cannot be rolled back.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I am currently been recruited as a fresher, so my experience is based on my campus placement. So the process begins with a written test. The written test has general aptitude questions, Logical reasoning, Pseudo codes and hands on coding. The second round was a group discussion round wherein, I was grouped with 9-10 other members. Our topic was a bit on the easier side- Our lockdown experience. But the other batches were given quite debatable and controversial topics like whether sports and extra curricular activities be introduced in corporate industries? After this round we had technical round wherein I was tested on some basic skills like DBMS, OOPS and one programming language. The final round was the HR round. For me, this went for a little long. I was mainly asked my project and my part and contribution in it. Expect a few behavioral questions as well. Do not stress. Always remember to answer all behavioral questions in a polite and positive tone. And most importantly avoid using negative terms.

Skills evaluated in this interview

I applied via Naukri.com

Interview Questionnaire 

5 Questions

  • Q1. Can I attend the interview
  • Q2. I received mail for schudul 31.03.2020 March
  • Q3. You already scheduled the interview
  • Q4. I don't see any time,venue in your mail
  • Q5. So please response my mail

Interview Preparation Tips

Interview preparation tips for other job seekers - I completed my graduation with 78.9%

Interview Questionnaire 

2 Questions

  • Q1. Why should we hire you
  • Q2. Tell me something about you

Interview Preparation Tips

Interview preparation tips for other job seekers - Especially for the freshers who have no interview experience,,,, just relax there is no lion or tiger you find inside the cabin, those are normal human being who by their wisdom and knowledge reach the other side of the table and are there to test you on the basis of some parameter, two most important query you come across are already said above and to tackle that let me give you some hint

First answer should go like this dear sir/madam as I am a fresher I.e, I am a learner and I am enthusiastic to explore the new horizon which will help me building my experience and will definitely bring confidence in me which I can optimise to bring the good repo to the organization as well for my professional development, and with the help of my leader I can learn new concept of the market

Second answer should be like
Don't start with whatever is put on the resume tell them what is not there, I know the question might arise what is there to tell them apart from resume but wait there are lot you can speak out, tell them any situation which you come accross in your life where you lead anything which has a deep impact in your life but don't be childish be very pin pinpoint and accurate don't make the panel a bored

I applied via Recruitment Consultant and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Total 4 rounds excluding 1 assessment which is easy. 3 technical rounds and 1 HR round
  • Q2. Asked about Terraform, Docker, Kubernetes and Jenkins

Interview Preparation Tips

Interview preparation tips for other job seekers - For good results, kindly sharpen the basics of the tools used in the project.
Also, try to explain in a proper way how you contributed in present organization.

I applied via Internshala

Interview Questionnaire 

6 Questions

  • Q1. Introduce yourself.
  • Q2. Sales scenarios are given to the client to check his/her convincing skills.
  • Q3. Sell me a shirt which I already have.
  • Ans. 

    This shirt is more than just a piece of clothing, it's a statement of style and comfort.

    • This shirt is made of high-quality fabric that feels great against your skin.

    • The design is timeless and versatile, making it perfect for any occasion.

    • You already know how great this shirt looks on you, so why not get another one in a different color?

    • Wearing this shirt will make you feel confident and stylish, no matter where you go.

  • Answered by AI
  • Q4. How will you manage life and work?
  • Q5. Its a 10-12 hour job, will you be able to handle it?
  • Q6. Sometimes you're asked to work on holidays too, will you be able to do it?

Interview Preparation Tips

Interview preparation tips for other job seekers - Confidence is the main ingredient to any interview. And domain knowledge is must, because on your field knowledge you'll be judges. Do well research about the company you're interviewing for. Try to answer all questions, don't sit blank if you don't know the answer.

I applied via campus placement at MLR Institute of Technology, Hyderabad and was interviewed in Jul 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is Java OOP's concept
  • Ans. 

    Java OOP's concept is a programming paradigm that uses objects to design applications and programs.

    • Java OOP's concept is based on four main principles: encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation is the process of hiding the implementation details of an object from the outside world.

    • Inheritance allows a class to inherit properties and methods from another class.

    • Polymorphism allows objects to...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was very interactive and I learnt many new things.

Skills evaluated in this interview

Associate Interview Questions & Answers

WNS user image Anonymous

posted on 29 Apr 2021

I applied via Company Website and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What are the Top skills needed?

Interview Preparation Tips

Interview preparation tips for other job seekers - This Interview was technical one but was mejorly a stress test. The Inreviewer wanted to test both my knowledge and communication skills. i was able to answer most of the questions correctly. it was my first offcamous intetrview, and i think i did pretty well for a fresher.

Interview Questionnaire 

1 Question

  • Q1. Basic coding questions and logical questions

Bini Laboratories Interview FAQs

How many rounds are there in Bini Laboratories interview for freshers?
Bini Laboratories interview process for freshers usually has 2 rounds. The most common rounds in the Bini Laboratories interview process for freshers are Resume Shortlist and One-on-one Round.

Tell us how to improve this page.

Interview Questions from Similar Companies

Cognizant Interview Questions
3.8
 • 5.4k Interviews
Cipla Interview Questions
4.1
 • 464 Interviews
Lupin Interview Questions
4.2
 • 327 Interviews
Aurobindo Pharma Interview Questions
4.0
 • 227 Interviews
Biocon Limited Interview Questions
3.9
 • 144 Interviews
View all

Bini Laboratories Reviews and Ratings

based on 8 reviews

3.9/5

Rating in categories

2.8

Skill development

3.4

Work-Life balance

2.8

Salary & Benefits

3.6

Job Security

2.4

Company culture

2.8

Promotions/Appraisal

3.1

Work Satisfaction

Explore 8 Reviews and Ratings
QC Officer
5 salaries
unlock blur

₹1.2 L/yr - ₹2.4 L/yr

QC Chemist
4 salaries
unlock blur

₹1 L/yr - ₹1.8 L/yr

Production Supervisor
3 salaries
unlock blur

₹1 L/yr - ₹2 L/yr

QA Officer
3 salaries
unlock blur

₹1.5 L/yr - ₹3 L/yr

Production Officer
3 salaries
unlock blur

₹1.8 L/yr - ₹1.8 L/yr

Explore more salaries
Compare Bini Laboratories with

Cipla

4.1
Compare

Sun Pharmaceutical Industries

4.1
Compare

DRJ & CO

5.0
Compare

Biocon Limited

3.9
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview