Upload Button Icon Add office photos

Filter interviews by

Shri Chhatrapati Shivaji Maharaj College of Engineering Interview Questions and Answers

Updated 14 Aug 2021

6 Interview questions

A Computer Engineer was asked
Q. Can you provide examples of union and intersection operations?
Ans. 

Union and intersection are set operations used in mathematics and computer science.

  • Union combines two sets and removes duplicates

  • Intersection returns the common elements between two sets

  • Example of union: {1,2,3} union {3,4,5} = {1,2,3,4,5}

  • Example of intersection: {1,2,3} intersection {3,4,5} = {3}

View all Computer Engineer interview questions
A Computer Engineer was asked
Q. What is your understanding of objects and classes?
Ans. 

Object is an instance of a class that has its own set of properties and methods. A class is a blueprint for creating objects.

  • An object is a real-world entity with its own set of attributes and behaviors.

  • A class is a template or blueprint for creating objects.

  • Objects are created from classes using the 'new' keyword.

  • Classes can have properties (variables) and methods (functions).

  • Inheritance allows classes to inherit...

View all Computer Engineer interview questions
A Computer Engineer was asked
Q. What is inheritance?
Ans. 

Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

  • Inheritance allows for code reuse and promotes code organization.

  • The existing class is called the parent or superclass, while the new class is called the child or subclass.

  • The child class inherits all the properties and methods of the parent class, and can also add its own unique pro...

View all Computer Engineer interview questions
A Computer Engineer was asked
Q. What is the difference between overloading and overriding?
Ans. 

Overloading is having multiple methods with the same name but different parameters. Overriding is having a method in child class with the same name and signature as in parent class.

  • Overloading is compile-time polymorphism while overriding is runtime polymorphism.

  • Overloading is done in the same class while overriding is done in different classes.

  • Overloading is used to provide different implementations of the same m...

View all Computer Engineer interview questions
A Computer Engineer was asked
Q. Can you provide an example of encapsulation?
Ans. 

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

  • Encapsulation helps in achieving data abstraction and information hiding.

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

  • An example of encapsulation is a class in object-oriented programming, where the data members are private and can only be accessed through public methods.

View all Computer Engineer interview questions
A Computer Engineer was asked
Q. What is trigger, Cursor?
Ans. 

Trigger is a database object that executes automatically in response to certain events. Cursor is a database object used to manipulate data.

  • Triggers are used to maintain data integrity and consistency.

  • Triggers can be used to audit changes made to the database.

  • Cursors are used to iterate through a set of rows returned by a query.

  • Cursors can be used to update or delete rows in a table.

  • Triggers and cursors are common...

View all Computer Engineer interview questions

Shri Chhatrapati Shivaji Maharaj College of Engineering Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Jul 2021. There were 3 interview rounds.

Interview Questionnaire 

9 Questions

  • Q1. Tell me about yourself ?.
  • Q2. What are your biggest strength and weakness ?
  • Q3. What do you understand by object and class ?
  • Ans. 

    Object is an instance of a class that has its own set of properties and methods. A class is a blueprint for creating objects.

    • An object is a real-world entity with its own set of attributes and behaviors.

    • A class is a template or blueprint for creating objects.

    • Objects are created from classes using the 'new' keyword.

    • Classes can have properties (variables) and methods (functions).

    • Inheritance allows classes to inherit prop...

  • Answered by AI
  • Q4. What is difference between overloading and overriding ?
  • Q5. What is inheritance?
  • Q6. What is trigger, Cursor?
  • Ans. 

    Trigger is a database object that executes automatically in response to certain events. Cursor is a database object used to manipulate data.

    • Triggers are used to maintain data integrity and consistency.

    • Triggers can be used to audit changes made to the database.

    • Cursors are used to iterate through a set of rows returned by a query.

    • Cursors can be used to update or delete rows in a table.

    • Triggers and cursors are commonly us...

  • Answered by AI
  • Q7. Queries of select, insert ,delete?
  • Q8. Write the examples of union, intersection?
  • Ans. 

    Union and intersection are set operations used in mathematics and computer science.

    • Union combines two sets and removes duplicates

    • Intersection returns the common elements between two sets

    • Example of union: {1,2,3} union {3,4,5} = {1,2,3,4,5}

    • Example of intersection: {1,2,3} intersection {3,4,5} = {3}

  • Answered by AI
  • Q9. Write the example of encapsulation?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be punctual at your interview it is mandatory to be on time at a job interview
Do your research on the company Don't forget about nonverbal communication
Be polite with everyone
Be prepared for your interview

Skills evaluated in this interview

Are these interview questions helpful?

Top trending discussions

View All
Interview Tips & Stories
1w (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 Shri Chhatrapati Shivaji Maharaj College of Engineering?
Ask anonymously on communities.

Interview questions from similar companies

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

HR told about the company on the first day, how it works, told the rules, showed the management and a lot

Interview Preparation Tips

Topics to prepare for Amazon Associate interview:
  • Safery
  • Environment
  • Cleaning
Interview preparation tips for other job seekers - There is nothing to worry, if you have the desire to work and have passion, then you can work anywhere.

I applied via Campus Placement and was interviewed before Feb 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. What are the differences between C and C++?
  • Q2. Explain the scenarios where If and Switch Case statements are used.
  • Q3. Do you think algorithms and pseudocodes still play a role in the world of IT Services?
  • Ans. 

    Yes, algorithms and pseudocodes are still important in IT Services.

    • Algorithms are used in various fields of IT such as machine learning, data analysis, and cryptography.

    • Pseudocodes are used to plan and design algorithms before coding them.

    • Understanding algorithms and pseudocodes is essential for software engineers to write efficient and optimized code.

    • Examples of algorithms include sorting algorithms, search algorithms...

  • Answered by AI
  • Q4. Are you comfortable using Command Line Interfaces (CLIs) or Integrated Development Environments (IDEs) as part of your daily tasks?
  • Q5. Are you okay to learn front end and back end technologies to ensure you are a complete developer in the longer run? Would you be able to learn the concepts if a timeline is given?? If yes, explain your lea...

Interview Preparation Tips

Interview preparation tips for other job seekers - The hiring team expects a structured response in your answers. Be it a fresher or an experienced professional, the answers must be represented with examples to ensure you display your expertise with an application in your mind.

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. Mathematical ,verbal, logical, puzzles, pseudo code
  • Q2. Verbal
  • Q3. Logical

Interview Preparation Tips

Interview preparation tips for other job seekers - Help me for infosys apptitude test interview

I applied via Referral and was interviewed in Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About skills.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be cool always and focus towards your goal set.

Interview Questionnaire 

1 Question

  • Q1. Basic questions on programing language

Interview Questionnaire 

2 Questions

  • Q1. Worklife balance
  • Q2. Work culture

Interview Preparation Tips

Interview preparation tips for other job seekers - ok

Interview Questionnaire 

1 Question

  • Q1. Based on programming

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

Interview Questionnaire 

1 Question

  • Q1. Its from Java, Springboot, Microservices.. and touchbase of UI technologies such as Angular.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be well prepared for evry topic.. ask yourself what, when, why, how.
Thats how you can think logically.

then only you will be able to crack.

Interview Questionnaire 

1 Question

  • Q1. Why looking for a job change

Shri Chhatrapati Shivaji Maharaj College of Engineering Interview FAQs

What are the top questions asked in Shri Chhatrapati Shivaji Maharaj College of Engineering interview?

Some of the top questions asked at the Shri Chhatrapati Shivaji Maharaj College of Engineering interview -

  1. what is difference between overloading and overridin...read more
  2. what do you understand by object and clas...read more
  3. Write the examples of union, intersecti...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.7
 • 8.7k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Amazon Interview Questions
4.0
 • 5.4k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.7
 • 3.4k Interviews
View all
Compare Shri Chhatrapati Shivaji Maharaj College of Engineering with

TCS

3.6
Compare

Accenture

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview