Upload Button Icon Add office photos

Filter interviews by

Bharathidasan University Interview Questions and Answers

Updated 16 May 2023

Bharathidasan University Interview Experiences

Popular Designations

3 interviews found

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

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

(5 Questions)

  • Q1. On Block Chain Managment, National Education Policy 2020, Higher Education System
  • Q2. What kind of changes and academic reforms would you bring as Vice-Chancellor of a University if appointed Interdisciplinary research and teaching, revisit curriculum with the gender lens, introduce adminis...
  • Q3. What are the merits and demerits of National Education Policy 2023
  • Ans. 

    The National Education Policy 2023 has both merits and demerits.

    • Merits: Emphasis on vocational education, flexibility in choosing subjects, integration of technology, focus on early childhood education

    • Demerits: Lack of clarity on implementation, potential for commercialization of education, inadequate funding for implementation

    • Example: Merit - The policy aims to provide vocational education to students from class 6 onw...

  • Answered by AI
  • Q4. How will you justify for the position you applied for
  • Q5. Should Education be State or concurrent list
  • Ans. 

    Education should be on concurrent list for better coordination and implementation.

    • Concurrent list allows for better coordination between state and central government.

    • It also ensures uniformity in education policies across the country.

    • Examples include RTE Act, NEP 2020 which are on concurrent list.

    • State list can lead to disparities in education policies and standards.

    • Concurrent list allows for flexibility in implementat

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear and answer only to those questions to which you are thorough with answer. Do not show your ignorance.

Director Professor Interview Questions asked at other Companies

Q1. What are the merits and demerits of National Education Policy 2023
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

(2 Questions)

  • Q1. What is your field of interest
  • Q2. What is the selective media for actinomycetes
  • Ans. 

    The selective media for actinomycetes is called Actinomycete Isolation Agar (AIA).

    • Actinomycete Isolation Agar (AIA) is a commonly used selective media for actinomycetes.

    • AIA contains specific nutrients and inhibitors that promote the growth of actinomycetes while inhibiting the growth of other microorganisms.

    • Examples of inhibitors used in AIA include cycloheximide and nalidixic acid.

    • AIA is often supplemented with indica...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Bharathidasan University Project Fellow interview:
  • Microbiology Techniques
  • Actinomycetes
  • Plating
Interview preparation tips for other job seekers - Do the work by our own interest with good mind and hard work for good results

Project Fellow Interview Questions asked at other Companies

Q1. What is the selective media for actinomycetes
View answer (2)

PHD Scholar Interview Questions & Answers

user image Anonymous

posted on 18 Jun 2021

I applied via Company Website and was interviewed before Jun 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. What is the main area of research
  • Ans. 

    My main area of research is in the field of artificial intelligence and machine learning.

    • Developing algorithms for natural language processing

    • Creating predictive models for healthcare data

    • Exploring deep learning techniques for image recognition

    • Investigating the ethical implications of AI

    • Collaborating with industry partners to apply research in real-world settings

  • Answered by AI
  • Q2. Can you publish in good reputed journals
  • Ans. 

    Yes, I have published in good reputed journals.

    • I have published multiple research papers in top-tier journals in my field.

    • My publications have been cited by other researchers in their work.

    • I have also presented my research at various conferences and symposiums.

    • Some of the journals I have published in include Nature, Science, and The Lancet.

  • Answered by AI
  • Q3. Can you clear entrance exam

Interview Preparation Tips

Interview preparation tips for other job seekers - Good University to carry out your research

PHD Scholar Interview Questions asked at other Companies

Q1. What will be the voltage across the capacitor? Why it is so? You are drawing based on memory tell me some logic behind this. What will be the ripple in this and the amplitude of this curve?
View answer (1)

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Mar 2023. There were 3 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 - Technical 

(3 Questions)

  • Q1. What is method overloading?
  • Ans. 

    Method overloading is when multiple methods in a class have the same name but different parameters.

    • Allows multiple methods with the same name but different parameters to be defined in a class

    • Parameters can differ in number, type, or order

    • Example: void print(int num) and void print(String text) are overloaded methods

  • Answered by AI
  • Q2. What is method overiding ?
  • Ans. 

    Method overriding is a feature in object-oriented programming that allows a subclass to provide a specific implementation of a method that is already provided by its superclass.

    • Method overriding is done when a subclass provides a specific implementation for a method that is already defined in its superclass.

    • The method in the subclass must have the same name, return type, and parameters as the method in the superclass.

    • M...

  • Answered by AI
  • Q3. What is sigleton class ?
  • Ans. 

    A singleton class is a class that can only have one instance created and provides a global point of access to that instance.

    • Singleton classes are often used for logging, caching, database connections, and thread pools.

    • They typically have a private constructor to prevent instantiation from outside the class.

    • The class itself usually provides a static method to access the single instance.

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. What are Oops Pillars?
  • Ans. 

    Oops Pillars are the four main concepts of Object-Oriented Programming: Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundles data and methods into a single unit, protecting data from outside interference.

    • Polymorphism: Allows objects to be treated as instances of their parent class, enabling flexibility in code.

    • ...

  • Answered by AI
  • Q2. What is Dependency injection?
  • Ans. 

    Dependency injection is a design pattern in which components are given their dependencies rather than creating them internally.

    • Allows for easier testing by mocking dependencies

    • Promotes loose coupling between components

    • Improves code reusability and maintainability

    • Examples: Constructor injection, Setter injection, Interface injection

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
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. About past experiences About koenig solutions
Round 3 - One-on-one 

(1 Question)

  • Q1. About past experiences
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Mar 2024.

Round 1 - Assignment 

Mcq test on c#, sql, Mvc

Round 2 - Technical 

(5 Questions)

  • Q1. Introduce your self?
  • Q2. What is pipeline? Explained in brif?
  • Ans. 

    A pipeline is a series of interconnected steps or stages in a process, where output of one step is input to the next step.

    • Pipeline is commonly used in software development for continuous integration and continuous delivery processes.

    • Each step in the pipeline performs a specific task, such as building, testing, and deploying code.

    • Pipeline automation tools like Jenkins, GitLab CI/CD, and Azure DevOps help in managing and

  • Answered by AI
  • Q3. Explained the dot net framework
  • Ans. 

    The .NET Framework is a software framework developed by Microsoft that provides a large library of pre-coded solutions to common programming problems.

    • Developed by Microsoft

    • Provides a large library of pre-coded solutions

    • Supports multiple programming languages like C#, VB.NET, F#

    • Consists of Common Language Runtime (CLR) and Framework Class Library (FCL)

  • Answered by AI
  • Q4. What Are The Different Components Of DOT-NET?
  • Ans. 

    The different components of DOT-NET include Common Language Runtime (CLR), Framework Class Library (FCL), and ASP.NET.

    • Common Language Runtime (CLR) - provides various services such as memory management, exception handling, and security.

    • Framework Class Library (FCL) - a collection of reusable classes, interfaces, and value types that provide access to system functionality.

    • ASP.NET - a web application framework for buildi...

  • Answered by AI
  • Q5. What Is The Difference Between Abstract Classes And Interfaces In C#?
  • Ans. 

    Abstract classes can have implementation details while interfaces cannot.

    • Abstract classes can have method implementations while interfaces cannot.

    • A class can inherit only one abstract class but can implement multiple interfaces.

    • Abstract classes can have access modifiers on their members while interfaces cannot.

    • Interfaces are used to define a contract for classes to implement.

    • Abstract classes are used to provide a commo

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - After 1 hour interview they rejected you. Slow process.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Feb 2023. 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 

(2 Questions)

  • Q1. Who’s is in your family ? What your father does?
  • Q2. What’s your salary expectation? Why do you want to join this company?

Interview Preparation Tips

Interview preparation tips for other job seekers - Gud
Great
Done
Beautiful
Great
Amazing
Marvellous
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 before Jun 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 - Coding Test 

Coding round with 3 problem statements

Round 3 - Technical 

(5 Questions)

  • Q1. Questions related to project you have mentioned on resume
  • Q2. Questions related to technologies you have mentioned
  • Q3. Questions related to the coding test
  • Q4. Nothing discussed everything as I know
  • Q5. All the best those who are trying their best
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected
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 

Common Aptitude along with HTML5, CSS

Round 3 - Technical 

(1 Question)

  • Q1. Mostly questions were on HTML5,CSS and web development related questions.

Intern Interview Questions & Answers

NIIT user image Anonymous

posted on 15 Nov 2024

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - HR 

(2 Questions)

  • Q1. Tell me somethig your self?
  • Q2. What are you hobbies?

Bharathidasan University Interview FAQs

How many rounds are there in Bharathidasan University interview?
Bharathidasan University interview process usually has 2 rounds. The most common rounds in the Bharathidasan University interview process are Resume Shortlist, Technical and One-on-one Round.
What are the top questions asked in Bharathidasan University interview?

Some of the top questions asked at the Bharathidasan University interview -

  1. What are the merits and demerits of National Education Policy 2...read more
  2. What is the selective media for actinomyce...read more
  3. What is the main area of resear...read more

Tell us how to improve this page.

Bharathidasan University Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Anna University Interview Questions
4.0
 • 10 Interviews
View all

Bharathidasan University Reviews and Ratings

based on 25 reviews

4.6/5

Rating in categories

4.2

Skill development

4.1

Work-life balance

4.2

Salary

3.6

Job security

4.1

Company culture

3.7

Promotions

4.2

Work satisfaction

Explore 25 Reviews and Ratings
Project Fellow
10 salaries
unlock blur

₹1.6 L/yr - ₹2.3 L/yr

Research Associate
5 salaries
unlock blur

₹0.4 L/yr - ₹5.6 L/yr

Assistant Professor
5 salaries
unlock blur

₹0.8 L/yr - ₹3 L/yr

Post Doctoral Fellow
4 salaries
unlock blur

₹6 L/yr - ₹9 L/yr

Senior Research Fellow
4 salaries
unlock blur

₹2.5 L/yr - ₹4 L/yr

Explore more salaries
Compare Bharathidasan University with

NIIT

3.6
Compare

Indian Institute of Technology Gandhinagar

4.1
Compare

IIT Bombay

4.5
Compare

Narayana e-Techno School

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