Upload Button Icon Add office photos

Filter interviews by

SVKM's NMIMS Assistant Professor Interview Questions and Answers

Updated 23 Apr 2024

SVKM's NMIMS Assistant Professor Interview Experiences

2 interviews found

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

I applied via Company Website and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. I was asked to introduce myself. (Though the first session was supposed to be a lecture of 8 minutes , they continued in the interview mode)
  • Q2. Why did I want to switch my area of work?
  • Q3. How does my previous area of work would contribute toward my desired job?
Round 2 - HR 

(1 Question)

  • Q1. Expected Salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be very clear about your salary expectations
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. General questions based on your dissertation and paper publications
Round 2 - HR 

(1 Question)

  • Q1. Salary Negotiation, etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident.

Assistant Professor Interview Questions Asked at Other Companies

Q1. Can you assist pg students project and puplish research article i ... read more
Q2. Tell us about the publications you have published in sci-indexed ... read more
Q3. If You are from IIT, IISC or NIT and with Interdisciplinary field ... read more
Q4. What are the methods i can use innovations in the field of educat ... read more
Q5. What happens if the freewheeling diode is removed in a convention ... read more

Interview questions from similar companies

I appeared for an interview before Aug 2020.

Interview Questionnaire 

1 Question

  • Q1. 1. DBMS basics 2. Algorithms and Data structures

Interview Preparation Tips

Interview preparation tips for other job seekers - Very simple questions asked, answered everything correctly. They will hire you as they are having lack of employees

Interview Questionnaire 

2 Questions

  • Q1. Machine learning related questions
  • Q2. Artificial intelligence related questions

I applied via Company Website and was interviewed in Dec 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. Share details of your previous job.

Interview Preparation Tips

Topics to prepare for K L University Assistant Professor interview:
  • About yourself
  • Specialist Activities
  • User Experience
  • Interpersonal Skills
Interview preparation tips for other job seekers - Always trust on you and your employer
Think very sharp and trust on your skills and experience
Your CV must contain all the information very clear
Write all the keywords in your CV which are best match to employer job title
You customize your CV as per the employer requirements
Always be ready to accept any challenge
Be very punctual

I applied via Naukri.com and was interviewed in Apr 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Questions were based on your research ppt.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be ready with your ppt. Questions will be asked based on it. Few basics also

I applied via Naukri.com and was interviewed in Jan 2022. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Modarate Questions from Ur Respective Subjects
Round 2 - Technical 

(1 Question)

  • Q1. Modarate to Tough Questions apart feom Ur Specialization Courses..3-5 Subjects
Round 3 - HR 

(1 Question)

  • Q1. Expected Salary and Prasent Salary Discussions, Expected Time to join in Organization.
Round 4 - HR 

(1 Question)

  • Q1. This is Final round Salary Package Discussion Round

Interview Preparation Tips

Topics to prepare for K L University Assistant Professor interview:
  • Data Structures
  • C Programming
  • Java Programming
  • Operating Systems
  • Machine Learning
Interview preparation tips for other job seekers - It was Tough But need to be Confident and U have to be Esteemed on Ur Research Area
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Sep 2022. 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. I have been asked my favourite subject then they asked few basic technical questions from that. 1. What is locality of reference. 2. What is spatial and temporal locality. 3. What is page fault? 4. What is...
  • Q2. What is page fault?
  • Ans. 

    A page fault is an exception that occurs when a program tries to access a page of memory that is not currently in physical memory.

    • Occurs when a program tries to access a page of memory that is not in physical memory

    • Causes the operating system to bring the required page into memory from disk

    • Can be classified as major or minor depending on whether the page is already in memory but marked as invalid

    • Example: When a program...

  • Answered by AI
  • Q3. What are different page replacement techniques?
  • Ans. 

    Page replacement techniques are algorithms used in operating systems to manage memory efficiently.

    • FIFO (First In, First Out)

    • LRU (Least Recently Used)

    • LFU (Least Frequently Used)

    • Optimal Page Replacement

    • Clock Page Replacement

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Basically it was salary negotiation.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare basics from 2-3 subjects that's enough.

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. What is a view in dbms?
  • Ans. 

    A view in DBMS is a virtual table created by a query that can be used like a regular table.

    • Views are used to simplify complex queries by storing them as a virtual table.

    • They can also be used to restrict access to certain columns or rows of a table.

    • Views do not store data themselves, but instead display data from the underlying tables.

    • Changes made to the data in a view will affect the underlying tables.

    • Example: CREATE V...

  • Answered by AI
  • Q2. Difference between primary key and foreign key?
  • Ans. 

    Primary key uniquely identifies a record in a table, while foreign key establishes a link between two tables.

    • Primary key ensures uniqueness of each record in a table

    • Foreign key establishes a relationship between two tables

    • Primary key can't have null values, while foreign key can have null values

    • Example: In a 'students' table, 'student_id' can be a primary key, while in a 'courses' table, 'student_id' can be a foreign k

  • Answered by AI
  • Q3. What are the acid properties of a transaction?
  • Ans. 

    The acid properties of a transaction refer to its key characteristics for ensuring reliability and consistency in database systems.

    • Atomicity: A transaction is considered atomic if it is treated as a single unit of work that either completes in its entirety or is fully rolled back.

    • Consistency: This property ensures that a transaction transforms the database from one consistent state to another consistent state.

    • Isolation...

  • Answered by AI
  • Q4. Difference between ddl and dml commands?
  • Ans. 

    DDL commands are used to define the structure of database objects, while DML commands are used to manipulate data within those objects.

    • DDL commands include CREATE, ALTER, DROP, TRUNCATE, etc.

    • DML commands include INSERT, UPDATE, DELETE, SELECT, etc.

    • DDL commands are used to create or modify the structure of database objects like tables, indexes, etc.

    • DML commands are used to insert, update, delete, or retrieve data from t

  • Answered by AI
  • Q5. What is the difference between 2nf and 3nf?
  • Ans. 

    2NF and 3NF are both normal forms in database normalization, with 3NF being a stricter form of normalization than 2NF.

    • 2NF eliminates partial dependencies, while 3NF eliminates transitive dependencies.

    • In 2NF, every non-prime attribute is fully functionally dependent on the primary key, while in 3NF, every non-prime attribute is non-transitively dependent on the primary key.

    • Example: If a table is in 2NF but not in 3NF, i...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a dedicated and passionate individual with a strong background in research and teaching.

    • PhD in [specific field] from [University]

    • Research experience in [specific area]

    • Teaching experience at [University/Institution]

    • Published papers in [specific journals/conferences]

  • Answered by AI
  • Q2. Project details

SVKM's NMIMS Interview FAQs

How many rounds are there in SVKM's NMIMS Assistant Professor interview?
SVKM's NMIMS interview process usually has 2 rounds. The most common rounds in the SVKM's NMIMS interview process are Technical and HR.

Tell us how to improve this page.

SVKM's NMIMS Assistant Professor Interview Process

based on 3 interviews

Interview experience

5
  
Excellent
View more
SVKM's NMIMS Assistant Professor Salary
based on 23 salaries
₹8.4 L/yr - ₹15.4 L/yr
125% more than the average Assistant Professor Salary in India
View more details

SVKM's NMIMS Assistant Professor Reviews and Ratings

based on 4 reviews

3.4/5

Rating in categories

3.7

Skill development

2.5

Work-life balance

3.1

Salary

2.7

Job security

2.6

Company culture

2.1

Promotions

2.4

Work satisfaction

Explore 4 Reviews and Ratings
Assistant Professor
23 salaries
unlock blur

₹8.4 L/yr - ₹15.4 L/yr

Desktop Support Engineer
8 salaries
unlock blur

₹2 L/yr - ₹4.2 L/yr

Deputy Director
7 salaries
unlock blur

₹19 L/yr - ₹28 L/yr

Security Officer
6 salaries
unlock blur

₹5 L/yr - ₹6.6 L/yr

Visiting Faculty
5 salaries
unlock blur

₹4.6 L/yr - ₹26.4 L/yr

Explore more salaries
Compare SVKM's NMIMS with

ExcelR

3.5
Compare

Aptech

3.5
Compare

GD Goenka Public School

3.3
Compare

Pearson Education India

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