Upload Button Icon Add office photos

Filter interviews by

cloudEQ Senior Software Engineer Interview Questions, Process, and Tips

Updated 16 Mar 2023

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:
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 

(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

Interview questions from similar companies

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

Interview Questionnaire 

1 Question

  • Q1. Basic concept question.

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics should be clear. Some scenario based questions based on business rules and FDMEE data load

I applied via Recruitment Consulltant and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Cocubes Test Task 1 is of Aptitude questions needs to be completed in Specific time interval and Task 2 is Essay Writing to be finished in Given interval

Round 2 - HR 

(1 Question)

  • Q1. Are you ready to Relocate
  • Ans. Yes I am relocate and flexible with any location
  • Answered Anonymously
Round 3 - Coding Test 

L1 Exam should be cleared L 1 exam is of multiple choice questions and completely related to Java J2Ee Spring

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for co cubes Aptitude and All the best

I applied via Naukri.com and was interviewed before Jan 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. They asked me to build a shopping cart web application using vanilla js and gave two days time , that was the only round they had!

Interview Preparation Tips

Interview preparation tips for other job seekers - I built the app according to wireframe and they evaluated it and selected me directly!

I applied via Naukri.com and was interviewed before May 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Discuss 4 case study related to supply chain management.

Interview Preparation Tips

Topics to prepare for Tech Mahindra Senior Software Engineer interview:
  • Supply Chain Management
Interview preparation tips for other job seekers - Develop some case study of your own and also deep analysis for each.

I applied via Recruitment Consulltant and was interviewed before Sep 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 - One-on-one 

(1 Question)

  • Q1. Java basics, core java , polymorphism, inheritance , Collections, Exception Handling,

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare core java sql , basic db querry

I appeared for an interview before Dec 2020.

Round 1 - Face to Face 

(5 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round had 1 question of Basic Programming and Maths and then I was asked some questions related to DBMS and basic C++ concepts.

  • Q1. 

    Find Terms of Series Problem

    Ayush is tasked with determining the first 'X' terms of the series defined by 3 * N + 2, ensuring that no term is a multiple of 4.

    Input:

    The first line contains a single in...
  • Ans. 

    Generate the first 'X' terms of a series 3 * N + 2, excluding multiples of 4.

    • Iterate through numbers starting from 1 and check if 3 * N + 2 is not a multiple of 4.

    • Keep track of the count of terms generated and stop when 'X' terms are found.

    • Return the list of terms that meet the criteria for each test case.

  • Answered by AI
  • Q2. Why is normalization needed in a database?
  • Ans. 

    Normalization is needed in a database to reduce redundancy, improve data integrity, and optimize database performance.

    • Eliminates data redundancy by breaking down data into smaller, more manageable tables

    • Prevents update anomalies by ensuring data consistency

    • Improves data integrity by enforcing relationships between tables

    • Optimizes database performance by reducing storage space and improving query efficiency

  • Answered by AI
  • Q3. Explain the difference between intension and extension in a database.
  • Ans. 

    Intension refers to the attributes or properties of a concept, while extension refers to the instances or examples of that concept in a database.

    • Intension describes the characteristics or properties of a concept.

    • Extension refers to the actual instances or examples of that concept.

    • For example, in a database of fruits, intension would include attributes like color, taste, and size, while extension would list specific fru

  • Answered by AI
  • Q4. What is the difference between new() and malloc() in C++?
  • Ans. 

    new() is used to allocate memory for an object and call its constructor, while malloc() is used to allocate memory without calling any constructor.

    • new() is a C++ operator, while malloc() is a function in C.

    • new() returns a pointer to the allocated memory, while malloc() returns a void pointer.

    • new() automatically calls the constructor of the object, while malloc() does not initialize the allocated memory.

    • Example: int* ...

  • Answered by AI
  • Q5. What distinguishes a structure from a class in C++?
  • Ans. 

    In C++, a structure is a user-defined data type that can hold both data and functions, while a class can also have access specifiers and inheritance.

    • Structures in C++ are primarily used for grouping data members together, while classes can have additional features like access specifiers (public, private, protected) and inheritance.

    • Structures default to public access for their members, while classes default to private a...

  • Answered by AI
Round 2 - Face to Face 

(7 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round was preety much mixed and contained questions from Operating Systems, Unix, Java and more importantly Selenium.

  • Q1. Can you explain piping in Unix/Linux?
  • Ans. 

    Piping in Unix/Linux allows the output of one command to be used as the input for another command.

    • Piping is done using the '|' symbol.

    • It helps in connecting multiple commands together to perform complex operations.

    • Example: ls -l | grep 'txt' - This command lists all files in long format and then filters for files with 'txt' in their name.

  • Answered by AI
  • Q2. What is memory protection in operating systems?
  • Ans. 

    Memory protection in operating systems is a feature that prevents a process from accessing memory that has not been allocated to it.

    • Memory protection helps prevent one process from interfering with the memory of another process.

    • It ensures that each process can only access memory that has been allocated to it.

    • Examples of memory protection mechanisms include read-only memory segments and memory segmentation.

    • Memory protec...

  • Answered by AI
  • Q3. What happens if the static modifier is not included in the main method signature in Java?
  • Ans. 

    The main method in Java must include the static modifier to be able to run the program.

    • Without the static modifier, the main method cannot be called by the Java Virtual Machine (JVM).

    • The program will not be able to start and will throw a NoSuchMethodError.

    • Adding the static modifier allows the main method to be called without creating an instance of the class.

  • Answered by AI
  • Q4. Can you tell us something about the JIT compiler?
  • Ans. 

    JIT compiler stands for Just-In-Time compiler, which compiles code during runtime for improved performance.

    • JIT compiler translates bytecode into machine code on-the-fly

    • It helps in optimizing performance by compiling frequently executed code paths

    • Examples include Java HotSpot VM's JIT compiler and .NET's JIT compiler

  • Answered by AI
  • Q5. What is XPath?
  • Ans. 

    XPath is a query language used for selecting nodes from an XML document.

    • XPath stands for XML Path Language

    • It is used to navigate through elements and attributes in an XML document

    • XPath uses path expressions to select nodes or content in an XML document

    • Example: //book[@category='fiction'] selects all book elements with category attribute equal to 'fiction'

  • Answered by AI
  • Q6. Can you explain the pause feature in Selenium IDE?
  • Ans. 

    The pause feature in Selenium IDE allows users to pause the execution of a test case for a specified amount of time.

    • The pause command is used to introduce a delay in the test execution.

    • It takes a parameter specifying the time to pause in milliseconds.

    • For example, 'pause 3000' will pause the test execution for 3 seconds.

  • Answered by AI
  • Q7. What are the four parameters that you need to pass in Selenium?
  • Ans. 

    The four parameters needed to pass in Selenium are URL, Port Number, Browser Driver, and Desired Capabilities.

    • URL: The URL of the website you want to automate testing on.

    • Port Number: The port number where the Selenium server is running.

    • Browser Driver: The specific browser driver (e.g. ChromeDriver, GeckoDriver) to use for testing.

    • Desired Capabilities: Additional settings and preferences for the browser driver.

  • Answered by AI
Round 3 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

This was a typical HR round with some standard Behavioral questions.

Interview Preparation Tips

Eligibility criteriaAbove 2 years of experienceCapgemini interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Java , Selenium , OS , OOPSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Sep 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. They asked on java and spring boot related questions then hr round after that got the offer

Interview Preparation Tips

Interview preparation tips for other job seekers - It is good company to work and it is depend on project, if you get good project then u may learn new technology

I applied via Recruitment Consultant and was interviewed before Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions on string manipulation

Interview Preparation Tips

Interview preparation tips for other job seekers - Infosys conducts easy interview and most of the questions are straight forward

I applied via Walk-in and was interviewed in Jul 2019. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Main focous on java and selenium.if you have devops knowledge then good to have..
  • Q2. Framework design,oops concept, challange you face,roles and responsibilities,agile concept etc...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, focous on core Java,do good practice to identify elements, analyse the things before you respond,be more practical,raise the concern once you stuck,try to find the solution from your end before you ask for Help,...

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 Resume Shortlist and Technical.
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.

cloudEQ Senior Software Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
cloudEQ Senior Software Engineer Salary
based on 6 salaries
₹7.2 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 2 reviews

2.3/5

Rating in categories

1.0

Skill development

2.9

Work-life balance

2.9

Salary

1.6

Job security

2.3

Company culture

1.6

Promotions

2.3

Work satisfaction

Explore 2 Reviews and Ratings
Devops Engineer
55 salaries
unlock blur

₹4 L/yr - ₹11.4 L/yr

Software Engineer
22 salaries
unlock blur

₹4 L/yr - ₹7.2 L/yr

Project Manager
11 salaries
unlock blur

₹7 L/yr - ₹17 L/yr

Cloud Security Engineer
7 salaries
unlock blur

₹4.5 L/yr - ₹6 L/yr

Cloud Operations Manager
6 salaries
unlock blur

₹18.7 L/yr - ₹24 L/yr

Explore more salaries
Compare cloudEQ with

TCS

3.7
Compare

Accenture

3.8
Compare

Cognizant

3.7
Compare

Infosys

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