Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by CodeClouds Team. If you also belong to the team, you can get access from here

CodeClouds Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

CodeClouds Software Tester Interview Questions and Answers for Experienced

Updated 26 Mar 2023

CodeClouds Software Tester Interview Experiences for Experienced

1 interview found

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

I applied via Company Website and was interviewed in Sep 2022. There were 5 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 - HR 

(2 Questions)

  • Q1. It is mainly telephonic round. The HR will ask you about yourself and your experiences. After that they will brief you about the job profile and all.
  • Q2. Introduce yourself. Do u have hands on into automation? Manual testing? About Test management Tool
Round 3 - Technical 

(2 Questions)

  • Q1. In this you will be provided with login credentials of certification portal. It is totally eliminating round, if you fail you can't proceed further. Here the main problem is this profile is open to fresher...
  • Q2. Regression testing, re testing STLC test management
Round 4 - One-on-one 

(1 Question)

  • Q1. In the you will be interviewed with any one of their technical manager and all questions will be technical only
Round 5 - HR 

(1 Question)

  • Q1. Final round. It is a managerial round technical as well as non technical . But mainly formal questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be technically ready to crack the certification round. Go through the managerial procedures and steps about software development and testing both. Coding related questions will be from java, javascript, php, may vary .

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Mostly on C language especially strings.Implement strcmp,strcat,strrev and structures and unions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush your knowledge on basics of C

Software Engineer Interview Questions & Answers

Chetu user image Nirban Chatterjee

posted on 11 Oct 2020

I applied via Naukri.com and was interviewed before Oct 2019. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Normal php questions like overriding,overloading,traits,interface,abstarct class nothing else.. It was online but in 2016.
  • Q2. Go though those topic as they are very important and asked in most companies.

Interview Preparation Tips

Interview preparation tips for other job seekers - Read those topics and try to understand with example and doing on your own.Before entering Chetu prepare yourself that you may get fire anytime.Because hiring and firing is lot in Chetu but in terms of salary it is good.

Interview Questionnaire 

2 Questions

  • Q1. What's is meaning of success?
  • Ans. 

    Success is achieving one's goals and feeling fulfilled in the process.

    • Success is subjective and varies from person to person.

    • It can be achieving a personal or professional goal.

    • Success can also be measured by the impact one has on others.

    • Feeling fulfilled and content is a key component of success.

    • Success is not always about material possessions or wealth.

  • Answered by AI
  • Q2. Why do we work in corporate office?

Interview Preparation Tips

Interview preparation tips for other job seekers - Find all these kind of of questions and their solutions then you cracked any kind of interviews.

I applied via Naukri.com and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1.  Pointer,string , array ,dynamic memory allocation , static variable, structure union difference,pointer function
  • Q2. They asked all the basic concepts of C and give programming question mostly on array

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good, asked the basic questions but covered all the concepts focused on string and pointer mainly.

Interview Questionnaire 

1 Question

  • Q1. Mostly ask Question from OOP's and SQL

I applied via Company Website and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Difference between Abstract and Interface. Explain any scenario where these concept are used.
  • Ans. 

    Abstract classes are classes that cannot be instantiated and can have both abstract and non-abstract methods. Interfaces are contracts that define methods that must be implemented by a class.

    • Abstract classes can have constructors while interfaces cannot

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

    • Abstract classes can have instance variables while interfaces cannot

    • Interfaces are ...

  • Answered by AI
  • Q2. MVC Routing and Attribute. How can we use two models in a one single view.
  • Ans. 

    To use two models in a single view with MVC Routing and Attribute, we can create a ViewModel.

    • Create a ViewModel that contains the properties of both models

    • Populate the ViewModel with data from both models in the controller

    • Pass the ViewModel to the view

    • Access the properties of both models in the view using the ViewModel

  • Answered by AI
  • Q3. SQL Joins, Stored Procedure, Functions, Display current day, month and year.
  • Q4. What is abstraction, inheritance and polymorphism. Explain each one in detail.
  • Ans. 

    Abstraction, inheritance and polymorphism are three fundamental concepts in object-oriented programming.

    • Abstraction is the process of hiding complex implementation details and providing a simplified interface for the user.

    • Inheritance is the mechanism by which one class acquires the properties and behavior of another class.

    • Polymorphism is the ability of an object to take on many forms. It allows objects of different cla...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for OOP's Concept and SQL.

Skills evaluated in this interview

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

Interview Questionnaire 

4 Questions

  • Q1. Basic in python
  • Q2. Basic in SQL
  • Q3. Basic in django
  • Q4. Basic in machine learning and data science

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics in python programming, SQL, machine learning, data science, django

I appeared for an interview in Sep 2021.

Round 1 - Video Call 

(5 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round had 2 coding questions where in I was first asked to explain my approach and then code the solution . After that , I was asked some more questions on OOPS and Java.

  • Q1. 

    Find All Pairs Adding Up to Target

    Given an array of integers ARR of length N and an integer Target, your task is to return all pairs of elements such that they add up to the Target.

    Input:

    The first line ...
  • Ans. 

    The task is to find all pairs of elements in an array that add up to a given target.

    • Iterate through the array and for each element, check if the complement (target - current element) exists in a hash set.

    • If the complement exists, add the pair to the result. If not, add the current element to the hash set.

    • Handle edge cases like duplicates and ensuring each pair is unique.

    • Return (-1, -1) if no pair is found for a test ca

  • Answered by AI
  • Q2. 

    Intersection of Linked List Problem

    You are provided with two singly linked lists containing integers, where both lists converge at some node belonging to a third linked list.

    Your task is to determine t...

  • Ans. 

    Find the node where two linked lists merge, return -1 if no merging occurs.

    • Traverse both lists to find the lengths and the difference in lengths

    • Adjust the starting point of the longer list to match the length of the shorter list

    • Traverse both lists in parallel until the nodes match, return the data of the matching node

  • Answered by AI
  • Q3. When can you use the 'super' keyword in object-oriented programming?
  • Ans. 

    The 'super' keyword is used in object-oriented programming to access and call methods or constructors of a parent class.

    • Used to call a method from the parent class that has been overridden in the child class

    • Used to call the constructor of the parent class from the child class constructor

    • Helps in achieving method overriding and constructor chaining

  • Answered by AI
  • Q4. What do you mean by data encapsulation?
  • Ans. 

    Data encapsulation is the concept of bundling data and methods that operate on the data into a single unit or class.

    • Data encapsulation helps in hiding the internal state of an object and restricting access to it.

    • It allows for better control over the data by preventing outside interference.

    • Encapsulation also helps in achieving data abstraction, where the internal details of an object are hidden and only the necessary in...

  • Answered by AI
  • Q5. What do you know about the JIT compiler?
  • Ans. 

    JIT compiler stands for Just-In-Time compiler, which compiles code during runtime instead of ahead of time.

    • JIT compiler improves performance by compiling code on-the-fly as it is needed

    • It can optimize code based on runtime conditions

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

  • Answered by AI
Round 2 - Video Call 

(4 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round had 1 coding question related to Backtracking followed by some more questions from DBMS and SQL.

  • Q1. 

    Rat in a Maze Problem Statement

    You need to determine all possible paths for a rat starting at position (0, 0) in a square maze to reach its destination at (N-1, N-1). The maze is represented as an N*N ma...

  • Ans. 

    Find all possible paths for a rat in a maze from source to destination.

    • Use backtracking to explore all possible paths in the maze.

    • Keep track of visited cells to avoid revisiting them.

    • Recursively try moving in all directions (up, down, left, right) until reaching the destination.

    • Return a list of strings representing valid paths sorted in alphabetical order.

  • Answered by AI
  • Q2. Can you explain the concept of ACID properties in DBMS?
  • Ans. 

    ACID properties in DBMS ensure data integrity and consistency in transactions.

    • ACID stands for Atomicity, Consistency, Isolation, and Durability.

    • Atomicity ensures that either all operations in a transaction are completed or none are.

    • Consistency ensures that the database remains in a valid state before and after the transaction.

    • Isolation ensures that multiple transactions can occur concurrently without affecting each oth...

  • Answered by AI
  • Q3. What are the different types of joins in SQL?
  • Ans. 

    Different types of joins in SQL include inner join, outer join, left join, right join, and full join.

    • Inner join: Returns rows when there is a match in both tables

    • Outer join: Returns all rows when there is a match in one of the tables

    • Left join: Returns all rows from the left table and the matched rows from the right table

    • Right join: Returns all rows from the right table and the matched rows from the left table

    • Full join:...

  • Answered by AI
  • Q4. What are constraints in SQL?
  • Ans. 

    Constraints in SQL are rules and restrictions applied to columns in a table to enforce data integrity.

    • Constraints ensure data accuracy and consistency in a database.

    • Common constraints include NOT NULL, UNIQUE, PRIMARY KEY, FOREIGN KEY, and CHECK constraints.

    • NOT NULL constraint ensures a column cannot have a NULL value.

    • UNIQUE constraint ensures all values in a column are unique.

    • PRIMARY KEY constraint uniquely identifies...

  • Answered by AI
Round 3 - HR 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Easy

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

  • Q1. Can you tell me something about yourself?
  • Q2. Why should we hire you?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAChetu interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OOPS, SQL, JavaTime 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

Round 1 - Aptitude Test 
Round 2 - Technical 

(1 Question)

  • Q1. Let, var, const, asynchronous, callbacks
Round 3 - Coding Test 
Round 4 - HR 

(1 Question)

  • Q1. Salary discussed, discussed about company policy

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep learning, keep coding. Learn new things

CodeClouds Interview FAQs

How many rounds are there in CodeClouds Software Tester interview for experienced candidates?
CodeClouds interview process for experienced candidates usually has 5 rounds. The most common rounds in the CodeClouds interview process for experienced candidates are HR, Resume Shortlist and Technical.
What are the top questions asked in CodeClouds Software Tester interview for experienced candidates?

Some of the top questions asked at the CodeClouds Software Tester interview for experienced candidates -

  1. In this you will be provided with login credentials of certification portal. It...read more
  2. In the you will be interviewed with any one of their technical manager and all ...read more
  3. Final round. It is a managerial round technical as well as non technical . But ...read more

Tell us how to improve this page.

CodeClouds Software Tester Interview Process for Experienced

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Chetu Interview Questions
3.3
 • 176 Interviews
Grey Orange Interview Questions
3.2
 • 38 Interviews
Mobileum Interview Questions
3.3
 • 37 Interviews
SirionLabs Interview Questions
3.8
 • 24 Interviews
SOTI Interview Questions
3.3
 • 23 Interviews
Replicon Interview Questions
3.8
 • 21 Interviews
View all
Web Developer
215 salaries
unlock blur

₹2.2 L/yr - ₹8.5 L/yr

Senior Web Developer
65 salaries
unlock blur

₹4.2 L/yr - ₹10.5 L/yr

Html Developer
54 salaries
unlock blur

₹2.7 L/yr - ₹7.5 L/yr

Quality Analyst
44 salaries
unlock blur

₹2.7 L/yr - ₹8.4 L/yr

Front end Developer
38 salaries
unlock blur

₹3.1 L/yr - ₹9 L/yr

Explore more salaries
Compare CodeClouds with

Thomson Reuters

4.1
Compare

Duck Creek Technologies

4.4
Compare

FinThrive

3.7
Compare

Grey Orange

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