Upload Button Icon Add office photos

IISC

Compare button icon Compare button icon Compare

Filter interviews by

IISC Project Assistant Interview Questions and Answers

Updated 5 May 2023

IISC Project Assistant Interview Experiences

1 interview found

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

I applied via Job Portal and was interviewed before May 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. *Can you explain technically, the process of writing on black board using chalk piece, being mechanical engineer? *With schematic diagram, can show distribution of stress in the shaft undergoing torque?
  • Ans. 

    Explaining the process of writing on a blackboard using chalk and showing the distribution of stress in a shaft undergoing torque.

    • To write on a blackboard, the chalk is pressed against the surface, leaving a mark due to friction

    • The hardness of the chalk and the roughness of the board surface affect the quality of the writing

    • When a shaft undergoes torque, stress is distributed along its length according to the torque an...

  • Answered by AI
  • Q2. *Can explain different failure theories?
  • Ans. 

    Failure theories explain the reasons for failure of materials under different loading conditions.

    • Maximum shear stress theory

    • Maximum normal stress theory

    • Maximum strain energy theory

    • Distortion energy theory

    • Mohr's theory

    • Coulomb's theory

    • Rankine's theory

    • St. Venant's theory

  • Answered by AI

Interview questions from similar companies

I applied via Company Website and was interviewed in Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is recursion ? what is inheritance? what is heap? write a code to find the largest element in an array?
  • Ans. 

    Recursion is a process in which a function calls itself. Inheritance is a mechanism in OOP where a class inherits properties of another class. Heap is a region of memory used for dynamic memory allocation.

    • Recursion can be used to solve problems that can be broken down into smaller sub-problems.

    • Inheritance allows for code reuse and helps in creating a hierarchy of classes.

    • Heap is used for dynamic memory allocation in la...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not loose your confidence till the end of the interview and be clear with your voice .

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Java c c++

I applied via Company Website and was interviewed before Oct 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about your self

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold, don't hesitate.

I applied via Company Website and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Why infosys?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and energetic.Speak fluently.Thats what they are seeking for

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

Interview Questionnaire 

4 Questions

  • Q1. What Challenges did you faced in Project? And how did you tackled those.
  • Ans. 

    Faced challenges in a project and how tackled them

    • One of the challenges was managing conflicting priorities among stakeholders. I tackled it by setting clear expectations and priorities, and communicating regularly with all parties involved.

    • Another challenge was dealing with unexpected technical issues. I tackled it by conducting thorough research, consulting with experts, and testing different solutions until the issu...

  • Answered by AI
  • Q2. What is Encapsulation?
  • Ans. 

    Encapsulation is the process of hiding implementation details and exposing only necessary information to the user.

    • Encapsulation is a fundamental concept in object-oriented programming.

    • It helps in achieving data abstraction and information hiding.

    • It allows for better control over the data and prevents unauthorized access.

    • Encapsulation is implemented using access modifiers such as public, private, and protected.

    • For examp...

  • Answered by AI
  • Q3. What is Dailect in Hibernate?
  • Ans. 

    Dialect in Hibernate is a configuration setting that defines the type of database used.

    • Dialect is responsible for generating SQL statements specific to the database.

    • It handles the differences in SQL syntax and data types between different databases.

    • Examples of dialects include MySQLDialect, OracleDialect, and PostgreSQLDialect.

  • Answered by AI
  • Q4. Difference between interface and Abstraction.
  • Ans. 

    Interface defines the contract between two entities while Abstraction hides the implementation details.

    • Interface is a blueprint of a class that defines the methods and properties that a class must implement.

    • Abstraction is a way of hiding the implementation details of a class and exposing only the necessary details to the user.

    • Interface is used for achieving multiple inheritance in Java.

    • Abstraction is used for achieving...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just keep the communication good with the Interviewer and listen carefully and you will find 50% of approch in the explanation only.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Explain me about yourself
  • Q2. Just be brief don't bore them

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and confident.

I applied via Campus Placement and was interviewed before Sep 2019. There were 5 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. 1.What is Opps concepts in Java.
  • Ans. 

    OOPs concepts in Java are the fundamental principles of object-oriented programming.

    • Encapsulation: wrapping data and code into a single unit

    • Inheritance: creating new classes from existing ones

    • Polymorphism: using a single interface to represent multiple types

    • Abstraction: hiding implementation details from the user

    • Examples: class, object, inheritance, polymorphism, encapsulation

  • Answered by AI
  • Q2. 2.What is difference between stack and queue?
  • Ans. 

    Stack is a LIFO data structure while Queue is a FIFO data structure.

    • Stack follows Last In First Out (LIFO) principle while Queue follows First In First Out (FIFO) principle.

    • Stack has two main operations: push and pop while Queue has two main operations: enqueue and dequeue.

    • Stack is used in recursive function calls, undo/redo operations, and backtracking while Queue is used in breadth-first search, printing tasks in ord...

  • Answered by AI
  • Q3. 3.Write SQL query to find second highest salary in database?
  • Ans. 

    SQL query to find second highest salary in database

    • Use ORDER BY and LIMIT to get the second highest salary

    • Assume ties are allowed and use DISTINCT

  • Answered by AI
  • Q4. 4. Difference Between method overloading and method overriding?
  • Ans. 

    Method overloading is having multiple methods with the same name but different parameters. Method overriding is having a method in a subclass with the same name and parameters as a method in its superclass.

    • Method overloading is done within the same class while method overriding is done in different classes (subclass and superclass).

    • Method overloading is achieved by changing the number of parameters or the data type of ...

  • Answered by AI
  • Q5. 5.which is the parent class of all classes in Java?
  • Ans. 

    The parent class of all classes in Java is the Object class.

    • All classes in Java implicitly extend the Object class.

    • The Object class provides basic methods such as toString(), equals(), and hashCode().

    • Any class can override these methods to provide custom implementations.

    • Example: public class MyClass extends Object { ... }

    • Example: Object obj = new MyClass();

  • Answered by AI
  • Q6. Explain your final year project?
  • Q7. Difference between SQL and NoSql database?
  • Ans. 

    SQL databases are relational and use structured query language, while NoSQL databases are non-relational and use various data models.

    • SQL databases are based on a fixed schema, while NoSQL databases are schema-less.

    • SQL databases use tables to store data, while NoSQL databases use various data models like key-value, document, columnar, or graph.

    • SQL databases are better suited for complex queries and structured data, whil...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - All interview process are easy. Intervier just ask basic concept of related to your stream.

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. What is tcs
  • Ans. 

    TCS stands for Tata Consultancy Services, a multinational IT services company based in India.

    • TCS is one of the largest IT services companies in the world.

    • It provides a wide range of services including consulting, software development, and business process outsourcing.

    • TCS has clients in various industries such as banking, healthcare, and retail.

    • The company has a strong focus on innovation and has several research and de...

  • Answered by AI

I applied via Campus Placement and was interviewed before Oct 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 

English, mathematics, reasoning

Round 3 - Coding Test 

MCQ question asked in c and java

Interview Preparation Tips

Topics to prepare for Infosys System Engineer interview:
  • C
  • Java
Interview preparation tips for other job seekers - Good experience and be positive during the interview

IISC Interview FAQs

How many rounds are there in IISC Project Assistant interview?
IISC interview process usually has 2 rounds. The most common rounds in the IISC interview process are Resume Shortlist and Technical.
What are the top questions asked in IISC Project Assistant interview?

Some of the top questions asked at the IISC Project Assistant interview -

  1. *Can you explain technically, the process of writing on black board using chalk...read more
  2. *Can explain different failure theori...read more

Tell us how to improve this page.

IISC Project Assistant Interview Process

based on 1 interview

Interview experience

4
  
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
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
IISC Project Assistant Salary
based on 14 salaries
₹1.8 L/yr - ₹4 L/yr
20% less than the average Project Assistant Salary in India
View more details

IISC Project Assistant Reviews and Ratings

based on 7 reviews

3.8/5

Rating in categories

4.7

Skill development

4.2

Work-life balance

2.6

Salary

2.8

Job security

4.4

Company culture

4.4

Promotions

3.2

Work satisfaction

Explore 7 Reviews and Ratings
Project Assistant
14 salaries
unlock blur

₹1.8 L/yr - ₹4 L/yr

Research Assistant
12 salaries
unlock blur

₹1.5 L/yr - ₹7.8 L/yr

Research Associate
12 salaries
unlock blur

₹2 L/yr - ₹10 L/yr

Post Doctoral Fellow
10 salaries
unlock blur

₹5 L/yr - ₹8.2 L/yr

Secretarial Assistant
7 salaries
unlock blur

₹2.3 L/yr - ₹3.7 L/yr

Explore more salaries
Compare IISC with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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