Upload Button Icon Add office photos

Filter interviews by

Shri Chhatrapati Shivaji Maharaj College of Engineering Computer Engineer Interview Questions, Process, and Tips

Updated 14 Aug 2021

Shri Chhatrapati Shivaji Maharaj College of Engineering Computer Engineer 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 ?
  • 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 method...

  • Answered by AI
  • Q5. 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 properti...

  • Answered by AI
  • 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?
  • 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.

  • Answered by AI

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

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Swap two number with and without temporary variable
  • Ans. 

    Swap two numbers with and without temporary variable

    • Without temporary variable: Use addition and subtraction

    • With temporary variable: Use a third variable to store the value of one of the numbers

    • Example without temporary variable: a=5, b=7; a=a+b; b=a-b; a=a-b;

    • Example with temporary variable: a=5, b=7; temp=a; a=b; b=temp;

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't be afraid. It companies take interview to select you. And if you are selected in this company you are not lucky enough so try hard.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. What is second level cache?How to implement second level cache?How to optimize sql query?what are solid principles?
  • Ans. 

    Second level cache is a caching mechanism used to improve performance by storing frequently accessed data in memory.

    • Second level cache is implemented at the application level and can be configured using frameworks like Hibernate.

    • To optimize SQL queries, one can use indexes, avoid using SELECT *, and use JOINs instead of subqueries.

    • SOLID principles are a set of design principles for writing maintainable and scalable cod...

  • Answered by AI
  • Q2. Mostly FAQ but somewhat in depth?
  • Q3. How to deploy application in aws?
  • Ans. 

    To deploy an application in AWS, you need to create an EC2 instance, configure security groups, install necessary software, and upload your application code.

    • Create an EC2 instance in the desired region and select the appropriate instance type

    • Configure security groups to allow traffic to and from the instance

    • Install necessary software and dependencies on the instance

    • Upload your application code to the instance

    • Start the ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic faq but in depth,Interview level is easy to medium.They will ask only theory .No practical algorithm test.

Skills evaluated in this interview

I applied via Company Website and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is my longterm and short-term goals.
  • Ans. My short-term is to become an expert in solving queries And long term is to become valuable employee in an organisation and managing a team, also helping new recruits to learn the work.
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Excellent and friendly-nature interview

Interview Questionnaire 

2 Questions

  • Q1. Interview
  • Q2. Major difference c&c++
  • Ans. 

    C++ is an extension of C with object-oriented programming features.

    • C++ supports classes and objects while C does not.

    • C++ has better support for function overloading and templates.

    • C++ has a more complex syntax compared to C.

    • C++ is used for developing complex applications like games and operating systems.

    • C is used for developing system-level software like operating systems and device drivers.

  • Answered by AI

Skills evaluated in this interview

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

Interview Questionnaire 

2 Questions

  • Q1. THERE WERE 4 ROUNDS.1-APTITUDE 2-PSEUDO TEST 2-TECHNICAL INTERVIEW 4-HR ROUND
  • Q2. 1ST ROUND WAS VERY SIMPLE 2ND WAS LITTLE COMPLEX 3RD&4TH ROUND WAS VERY SIMPLE

Interview Preparation Tips

Interview preparation tips for other job seekers - PREPARE BASIC PROGRAMMING CONCEPTS AND APTITUDE

I applied via Recruitment Consulltant and was interviewed before Jun 2021. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Where do we use BigInteger in java ?
  • Ans. 

    BigInteger is used for mathematical operations involving very large integers in Java.

    • BigInteger is used when the range of values supported by primitive data types like int and long is not sufficient.

    • It is commonly used in cryptography and security applications.

    • It provides methods for arithmetic, bitwise, and logical operations on large integers.

    • Example: calculating factorial of a large number, generating large prime nu

  • Answered by AI
  • Q2. Merge Sort Algo code in java
  • Ans. 

    Merge Sort Algo code in java

    • Divide the array into two halves

    • Recursively sort the two halves

    • Merge the sorted halves

    • Time complexity: O(n log n)

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Genpact Software Engineer interview:
  • Core Java
  • DSA
Interview preparation tips for other job seekers - Not a very good interview experience. I was asked 2-3 questions only. Not satisfied with interview process.

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Java collection

Interview Preparation Tips

Interview preparation tips for other job seekers - In hackathon , there is no interview round.

Interview Questionnaire 

1 Question

  • Q1. Indexes, union and union all, data warehousing questions

I applied via Naukri.com and was interviewed in Aug 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Interfaces
  • Q2. Oop concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - I interviewed for software engineer profile. Interview process were easy 1st apti round 2nd pseudo code round 3rd technical and HR. It was quite easy.

Shri Chhatrapati Shivaji Maharaj College of Engineering Interview FAQs

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

Some of the top questions asked at the Shri Chhatrapati Shivaji Maharaj College of Engineering Computer Engineer 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.

Compare Shri Chhatrapati Shivaji Maharaj College of Engineering with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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