Upload Button Icon Add office photos

Filter interviews by

cloudEQ Senior Software Engineer Interview Questions and Answers

Updated 16 Mar 2023

14 Interview questions

A Senior Software Engineer was asked
Q. What is the difference between method overriding and method overloading?
Ans. 

Overriding is when a subclass provides its own implementation of a method from the superclass, while overloading is when a class has multiple methods with the same name but different parameters.

  • Overriding is used to provide a specific implementation of a method in a subclass that is already defined in the superclass.

  • Overloading is used to define multiple methods with the same name but different parameters in a cla...

A Senior Software Engineer was asked
Q. What are delegates and how are they used?
Ans. 

Delegates are a type-safe function pointer used to encapsulate a method.

  • Delegates allow methods to be passed as parameters to other methods.

  • They can be used to implement callbacks and event handlers.

  • Delegates can be chained together to create a pipeline of method calls.

  • They are commonly used in .NET framework for event handling and LINQ queries.

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in DBS Bank
Q2. Tell me about yourself. What technology are you using? What is a ... read more
Q3. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in GlobalLogic
Q4. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
Q5. If you have to prioritize between coding standards and project de ... read more
A Senior Software Engineer was asked
Q. What are the differences between String and StringBuilder?
Ans. 

String is immutable while StringBuilder is mutable.

  • String is a final class and its value cannot be changed once created.

  • StringBuilder is a mutable class and its value can be changed without creating a new object.

  • String concatenation creates a new String object each time, while StringBuilder is more efficient for concatenation.

  • Use String for fixed values and StringBuilder for dynamic values.

A Senior Software Engineer was asked
Q. What are Action Filters? Why are they used?
Ans. 

Action Filters are attributes that can be applied to controller actions to perform pre/post processing.

  • Action Filters are used to modify the behavior of controller actions.

  • They can be used to perform authentication, logging, caching, etc.

  • Action Filters can be applied globally or to specific actions.

  • Examples include [Authorize] for authentication and [OutputCache] for caching.

  • Action Filters can also be created by t...

A Senior Software Engineer was asked
Q. What is the difference between IEnumerable and IQueryable?
Ans. 

IEnumerable is in-memory collection while IQueryable is a queryable data source.

  • IEnumerable is used for querying data from in-memory collections like List, Array, etc.

  • IQueryable is used for querying data from a data source like a database.

  • IEnumerable executes the query on the client-side while IQueryable executes the query on the server-side.

  • IQueryable is more efficient when working with large datasets as it allow...

A Senior Software Engineer was asked
Q. What is a shallow copy in C#?
Ans. 

Shallow copy creates a new object with same values as original, but references the same memory locations.

  • Shallow copy only copies the top-level object, not the nested objects.

  • Changes made to the original object will reflect in the copied object.

  • Use MemberwiseClone() method to create shallow copy of an object.

  • Example: int[] arr1 = {1, 2, 3}; int[] arr2 = arr1.Clone() as int[]; arr2[0] = 4; Console.WriteLine(arr1[0]...

A Senior Software Engineer was asked
Q. What is the difference between Interfaces and Abstract classes?
Ans. 

Interfaces define contracts for behavior while abstract classes provide partial implementation.

  • Interfaces cannot have implementation while abstract classes can have partial implementation.

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

  • Interfaces are used for loose coupling while abstract classes are used for code reuse.

  • Example: An interface 'Drawable' can define a method 'dr...

Are these interview questions helpful?
A Senior Software Engineer was asked
Q. Is authentication implemented in the project, and if so, how?
Ans. 

Yes, authentication is implemented using OAuth 2.0 protocol.

  • OAuth 2.0 protocol is used for authentication.

  • Access tokens are issued to authorized clients.

  • Refresh tokens are used to obtain new access tokens.

  • Authentication is required for all API endpoints.

A Senior Software Engineer was asked
Q. What is Normalization in SQL Server?
Ans. 

Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity.

  • Normalization involves breaking down a table into smaller tables and defining relationships between them.

  • There are different levels of normalization, with each level reducing redundancy and improving data integrity further.

  • Normalization helps to prevent data inconsistencies and anomalies, and makes it easi...

A Senior Software Engineer was asked
Q. Diifference in Value Type and Refence Type? Is String is Value Type or Reference Type?
Ans. 

Value types hold the data directly, while reference types hold a reference to the data.

  • Value types are stored on the stack, while reference types are stored on the heap.

  • String is a reference type in .NET.

  • Value types include int, float, and bool.

  • Reference types include arrays, classes, and interfaces.

cloudEQ Senior Software Engineer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Indeed and was interviewed in Feb 2023. There were 2 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 

(16 Questions)

  • Q1. Tell me about yousrself
  • Ans. 

    I am a highly experienced Senior Software Engineer with a strong background in developing scalable and efficient software solutions.

    • Over 10 years of experience in software development

    • Expertise in multiple programming languages such as Java, C++, and Python

    • Proficient in designing and implementing complex systems

    • Strong problem-solving and analytical skills

    • Proven track record of delivering high-quality software on time an...

  • Answered by AI
  • Q2. What is current project and what is tech stack used in it?
  • Ans. 

    I am currently working on a web application for a retail company using React, Node.js, and MongoDB.

    • Developing a responsive UI using React and Redux

    • Implementing server-side logic using Node.js and Express

    • Storing and retrieving data using MongoDB

    • Integrating third-party APIs for payment processing and shipping

    • Writing automated tests using Jest and Enzyme

  • Answered by AI
  • Q3. Is Authentication implemented in project and if yes How?
  • Ans. 

    Yes, authentication is implemented using OAuth 2.0 protocol.

    • OAuth 2.0 protocol is used for authentication.

    • Access tokens are issued to authorized clients.

    • Refresh tokens are used to obtain new access tokens.

    • Authentication is required for all API endpoints.

  • Answered by AI
  • Q4. What is Dependency Injection and Is is implemented in project and How?
  • Ans. 

    Dependency Injection is a design pattern used to remove hard-coded dependencies and make code more flexible and testable.

    • Dependency Injection is implemented by injecting the required dependencies into a class rather than creating them within the class.

    • This can be achieved through constructor injection, setter injection, or interface injection.

    • For example, in Java, Spring Framework provides a powerful dependency injecti...

  • Answered by AI
  • Q5. What are Action Filters? Why these are used?
  • Ans. 

    Action Filters are attributes that can be applied to controller actions to perform pre/post processing.

    • Action Filters are used to modify the behavior of controller actions.

    • They can be used to perform authentication, logging, caching, etc.

    • Action Filters can be applied globally or to specific actions.

    • Examples include [Authorize] for authentication and [OutputCache] for caching.

    • Action Filters can also be created by the de...

  • Answered by AI
  • Q6. What is Interfaces? and Why these are used?
  • Ans. 

    Interfaces are a way to define a contract between two objects, specifying the methods and properties that one object must implement.

    • Interfaces allow for loose coupling between objects, making it easier to change the implementation of one object without affecting others.

    • They promote code reusability by allowing multiple objects to implement the same interface.

    • Interfaces can be used to create mock objects for testing pur...

  • Answered by AI
  • Q7. What is the difference in Interfaces and Abstract classes?
  • Ans. 

    Interfaces define contracts for behavior while abstract classes provide partial implementation.

    • Interfaces cannot have implementation while abstract classes can have partial implementation.

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

    • Interfaces are used for loose coupling while abstract classes are used for code reuse.

    • Example: An interface 'Drawable' can define a method 'draw' w...

  • Answered by AI
  • Q8. What is shallow copy in C#?
  • Ans. 

    Shallow copy creates a new object with same values as original, but references the same memory locations.

    • Shallow copy only copies the top-level object, not the nested objects.

    • Changes made to the original object will reflect in the copied object.

    • Use MemberwiseClone() method to create shallow copy of an object.

    • Example: int[] arr1 = {1, 2, 3}; int[] arr2 = arr1.Clone() as int[]; arr2[0] = 4; Console.WriteLine(arr1[0]); //...

  • Answered by AI
  • Q9. What are ref and out keywords? and What is the difference in them?
  • Ans. 

    Ref and out are keywords used in C# to pass arguments by reference instead of value.

    • Ref and out are used to pass arguments by reference instead of value

    • Ref keyword is used to pass a reference of the variable to the method

    • Out keyword is used to pass a reference of the variable to the method and requires the variable to be initialized before use

    • Ref keyword can be used to modify the value of the variable passed as an argu...

  • Answered by AI
  • Q10. Difference in String and String Builder?
  • Ans. 

    String is immutable while StringBuilder is mutable.

    • String is a final class and its value cannot be changed once created.

    • StringBuilder is a mutable class and its value can be changed without creating a new object.

    • String concatenation creates a new String object each time, while StringBuilder is more efficient for concatenation.

    • Use String for fixed values and StringBuilder for dynamic values.

  • Answered by AI
  • Q11. What is Self Join in SQL Server? Give example
  • Ans. 

    Self Join is a way to join a table with itself using aliases.

    • It is useful when we need to compare records within the same table.

    • It requires the use of aliases to differentiate between the two instances of the same table.

    • Example: SELECT a.name, b.name FROM employees a, employees b WHERE a.manager_id = b.employee_id;

  • Answered by AI
  • Q12. What are delegate and how they are used?
  • Ans. 

    Delegates are a type-safe function pointer used to encapsulate a method.

    • Delegates allow methods to be passed as parameters to other methods.

    • They can be used to implement callbacks and event handlers.

    • Delegates can be chained together to create a pipeline of method calls.

    • They are commonly used in .NET framework for event handling and LINQ queries.

  • Answered by AI
  • Q13. What is Normalization in sql server?
  • Ans. 

    Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization involves breaking down a table into smaller tables and defining relationships between them.

    • There are different levels of normalization, with each level reducing redundancy and improving data integrity further.

    • Normalization helps to prevent data inconsistencies and anomalies, and makes it easier to...

  • Answered by AI
  • Q14. Difference in Overriding and Overloading?
  • Ans. 

    Overriding is when a subclass provides its own implementation of a method from the superclass, while overloading is when a class has multiple methods with the same name but different parameters.

    • Overriding is used to provide a specific implementation of a method in a subclass that is already defined in the superclass.

    • Overloading is used to define multiple methods with the same name but different parameters in a class.

    • Ov...

  • Answered by AI
  • Q15. Difference in IEnumerable and IQueryable?
  • Ans. 

    IEnumerable is in-memory collection while IQueryable is a queryable data source.

    • IEnumerable is used for querying data from in-memory collections like List, Array, etc.

    • IQueryable is used for querying data from a data source like a database.

    • IEnumerable executes the query on the client-side while IQueryable executes the query on the server-side.

    • IQueryable is more efficient when working with large datasets as it allows for...

  • Answered by AI
  • Q16. Diifference in Value Type and Refence Type? Is String is Value Type or Reference Type?
  • Ans. 

    Value types hold the data directly, while reference types hold a reference to the data.

    • Value types are stored on the stack, while reference types are stored on the heap.

    • String is a reference type in .NET.

    • Value types include int, float, and bool.

    • Reference types include arrays, classes, and interfaces.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for cloudEQ Senior Software Engineer interview:
  • C#
  • SQL Server
  • OOPS
  • ASP.Net
  • .Net Core
Interview preparation tips for other job seekers - Be prepared with basic concepts and confidence is neccessary. Good luck.

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about cloudEQ?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Nov 2019. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Why are you looking for the job change?
  • Ans. 

    I'm seeking new challenges and opportunities for growth that align with my career goals and aspirations.

    • Desire for professional growth: I'm looking to expand my skill set and take on more leadership responsibilities.

    • Seeking a better cultural fit: My current company has a different work culture than what I thrive in; I value collaboration and innovation.

    • Interest in new technologies: I'm excited about working with cuttin...

  • Answered by AI
  • Q2. Relevant technical questions, as per my current technology

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep it simple and be yourself. That's what the interviewers looked into. Also a thorough understanding of the technology is a must and that is what will help you in cracking the interview. You don't have to go in-depth, just the overview and what happens when is what they look for. Good communication skills is also an added incentive, something I always try to work on. All the best

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in DBS Bank
Q2. Tell me about yourself. What technology are you using? What is a ... read more
Q3. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in GlobalLogic
Q4. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
Q5. If you have to prioritize between coding standards and project de ... read more

Interview Questionnaire 

5 Questions

  • Q1. Basic telephone round probably around 3 times
  • Q2. About ourself and past experience
  • Q3. And they really see if we are interested or not, nothing technical
  • Q4. Telephone technical interview
  • Q5. My role is pega developer so questions are on pega

Interview Preparation Tips

Round: Face to face technical
Experience: Asked each and every aspect in pega

I applied via Walk-in and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What is C++
  • Ans. 

    C++ is a high-level programming language used for developing system software, application software, device drivers, and video games.

    • C++ is an extension of the C programming language.

    • It supports object-oriented programming concepts like classes, inheritance, polymorphism, and encapsulation.

    • C++ is used in developing operating systems, browsers, databases, and other software applications.

    • It is known for its performance an...

  • Answered by AI
  • Q2. What is Link List
  • Ans. 

    A data structure that stores a sequence of elements in a linear order.

    • Consists of nodes that contain data and a pointer to the next node.

    • Can be singly linked or doubly linked.

    • Used for implementing stacks, queues, and hash tables.

    • Example: Singly linked list - 1 -> 2 -> 3 -> null

    • Example: Doubly linked list - null <- 1 <-> 2 <-> 3 -> null

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't go

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About the project

Interview Preparation Tips

Interview preparation tips for other job seekers - I think being honest about every question asked in the interview is the best practice the crack any interview.

I applied via Other and was interviewed in Nov 2017. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Brief Role on job and tools and technology I worked with day to day activity
  • Ans. 

    As a Senior Software Engineer, I worked with various tools and technologies to develop and maintain software applications.

    • Developed and maintained software applications using Java, Python, and C++ programming languages

    • Used Agile methodology for software development and collaborated with cross-functional teams

    • Worked with various tools such as Git, JIRA, Jenkins, and Docker for version control, issue tracking, continuous...

  • Answered by AI
  • Q2. In-depth technical interview which went around 40 min. since i had 8 years of experience
  • Q3. Fully technical
  • Q4. Salary discussion and Document verification.

Interview Preparation Tips

Round: Resume Shortlist
Experience: Keywords that I put in of the technology, tools , experience.. (I guess )

General Tips: Just stay calm. Do not show fake experience, Speak genuinely, Answer to the point and explain if you have to add on more depending on your experience. Do not be over confident. Speak start to the eyes
Skills: Communication, Problem Solving, Analytical Skills, Leadership, Presentation Skills, Decision Making Skills
Duration: 1-3 Months

I appeared for an interview before Aug 2016.

Interview Preparation Tips

Round: Test
Experience: It was good
Total Questions: 20

Round: Technical Interview
Experience: It was good

Are these interview questions helpful?

Interview Questionnaire 

2 Questions

  • Q1. Simple programming and questions related to the subject in B Tech
  • Q2. Testing communication

Interview Preparation Tips

Round: Test
Experience: Aptitude , Reasoning

I appeared for an interview in Nov 2016.

Interview Questionnaire 

6 Questions

  • Q1. Explain Btech Project
  • Ans. 

    Developed a Btech project on automated attendance system using facial recognition.

    • Developed a software application to automate the attendance process in educational institutions.

    • Implemented facial recognition technology to identify and mark attendance of students.

    • Used machine learning algorithms to train the system for accurate recognition.

    • Integrated the application with a database to store attendance records.

    • Provided ...

  • Answered by AI
  • Q2. Code Pascal's Traingle
  • Ans. 

    Code Pascal's Triangle

    • Pascal's Triangle is a triangular array of binomial coefficients

    • Each number is the sum of the two numbers above it

    • The first and last numbers in each row are 1

    • Can be implemented using nested loops or recursion

  • Answered by AI
  • Q3. What is abstract function
  • Q4. Difference between abstract and normal function
  • Ans. 

    Abstract functions cannot be instantiated and must be implemented by child classes, while normal functions can be directly called.

    • Abstract functions have no implementation in the parent class, while normal functions do.

    • Abstract functions are declared with the 'abstract' keyword, while normal functions are not.

    • Normal functions can be called directly, while abstract functions must be implemented by child classes.

    • An examp...

  • Answered by AI
  • Q5. Your 2 weakness
  • Ans. 

    Perfectionism and public speaking anxiety

    • I tend to be a perfectionist, which can sometimes lead to spending too much time on a task

    • I struggle with public speaking anxiety, but I have been working on improving my communication skills through practice and training

  • Answered by AI
  • Q6. Why Capgemini
  • Ans. 

    Capgemini is a global leader in consulting, technology services, and digital transformation.

    • Capgemini has a strong reputation in the industry for delivering high-quality software solutions.

    • The company offers a wide range of opportunities for career growth and development.

    • Capgemini has a collaborative and inclusive work culture that fosters innovation and teamwork.

    • The company has a global presence, providing exposure to...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: General Aptitude and English

Round: Technical Interview
Experience: 10 minutes approx. Questions were repetitive for candidates. i.e. for 13 candidates interviewed most of those were similar.

Round: HR Interview
Experience: Other normal stuff about family.
Tips: HR might try to get under your skin so prepare for general hr questions.

College Name: IIT Patna

Skills evaluated in this interview

Interview Preparation Tips

Round: Technical Interview
Experience: Has a 1 hr interview. He asked the Qs on my experience, what I have put in my resume. Its good conversation with interviewer.

Round: HR Interview
Experience: In HR interview he asked about my salary and what he is going to offer me. I left for the day. There is no response for 5 days from the HR. After a week I got the call my HR and discussion was happened about the salary again and said to upload some documents. I did it. There is no response for 4 days again. I got call again after 4 days and this time she said there is no suitable position for my experience so she is going to reject my application. Its very painful to listen like this.

cloudEQ Interview FAQs

How many rounds are there in cloudEQ Senior Software Engineer interview?
cloudEQ interview process usually has 2 rounds. The most common rounds in the cloudEQ interview process are Technical and Resume Shortlist.
What are the top questions asked in cloudEQ Senior Software Engineer interview?

Some of the top questions asked at the cloudEQ Senior Software Engineer interview -

  1. What is current project and what is tech stack used in ...read more
  2. What is Dependency Injection and Is is implemented in project and H...read more
  3. Is Authentication implemented in project and if yes H...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
cloudEQ Senior Software Engineer Salary
based on 6 salaries
₹11.8 L/yr - ₹21 L/yr
At par with the average Senior Software Engineer Salary in India
View more details

cloudEQ Senior Software Engineer Reviews and Ratings

based on 4 reviews

2.1/5

Rating in categories

1.4

Skill development

2.5

Work-life balance

3.2

Salary

1.5

Job security

2.1

Company culture

1.4

Promotions

1.9

Work satisfaction

Explore 4 Reviews and Ratings
Devops Engineer
55 salaries
unlock blur

₹4.5 L/yr - ₹8.9 L/yr

Software Engineer
24 salaries
unlock blur

₹3 L/yr - ₹7.2 L/yr

Project Manager
11 salaries
unlock blur

₹9.7 L/yr - ₹17 L/yr

Cloud Security Engineer
9 salaries
unlock blur

₹4.5 L/yr - ₹7.5 L/yr

SCCM System Administrator
8 salaries
unlock blur

₹9 L/yr - ₹11 L/yr

Explore more salaries
Compare cloudEQ with

TCS

3.6
Compare

Accenture

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview