Premium Employer

i

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

Calsoft Verified Tick

Compare button icon Compare button icon Compare
3.1

based on 337 Reviews

Filter interviews by

Calsoft Senior Sdet Engineer Interview Questions, Process, and Tips

Updated 6 Aug 2024

Calsoft Senior Sdet Engineer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Python code for string reversal
  • Ans. 

    Python code to reverse an array of strings

    • Use the built-in function 'reverse()' to reverse the array of strings

    • Alternatively, you can use slicing to reverse each individual string in the array

  • Answered by AI
  • Q2. Automation framework explanation
  • Ans. 

    An automation framework is a set of guidelines, rules, and tools that help in creating automated tests for software applications.

    • Automation frameworks provide structure and organization for automated testing

    • They help in reducing the effort required to maintain and update automated tests

    • Frameworks can include libraries, coding standards, and best practices for test automation

    • Examples of automation frameworks include Sel

  • Answered by AI
  • Q3. How to create CI/CD job
  • Ans. 

    To create a CI/CD job, you need to define the steps for building, testing, and deploying code automatically.

    • Define the source code repository to pull code from

    • Set up build steps to compile code and run tests

    • Configure deployment steps to deploy code to target environments

    • Integrate with version control system for triggering builds on code changes

    • Use CI/CD tools like Jenkins, GitLab CI, or CircleCI

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. About projects in previous projects
  • Q2. How to handle bugs
  • Ans. 

    Handle bugs by identifying, prioritizing, fixing, and testing them to ensure quality software.

    • Identify bugs by reproducing them and analyzing logs

    • Prioritize bugs based on impact and severity

    • Fix bugs by writing code changes and performing code reviews

    • Test fixes to ensure they resolve the issue without introducing new bugs

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Reasoning techinical and coding based ques

Round 2 - Technical 

(2 Questions)

  • Q1. Asked about exceptions
  • Q2. Asked about api chaining

Sdet Interview Questions & Answers

Altimetrik user image Varsha Jyotiana

posted on 13 Jan 2025

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(1 Question)

  • Q1. Questions based on java collections
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Campus Placement and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Coding Test 

There were questions from medium to hard level

Round 2 - Technical 

(1 Question)

  • Q1. Questions related to SQL basic programming and DSA were asked
Round 3 - HR 

(1 Question)

  • Q1. It was basically a personality test round

Sdet Interview Questions & Answers

Incedo user image Vijay Prakash MJ

posted on 26 Apr 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Fair and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Simple xpath without using Index reverse strings with words separately
  • Ans. 

    Reverse strings with words separately using simple xpath without using index

    • Use XPath function to split the string into words

    • Reverse each word individually using XPath function

    • Concatenate the reversed words back together

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Programming language well

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Django in depth questions
  • Q2. Django ORM related questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Coding Test 

Recerse string using java

Round 3 - Technical 

(1 Question)

  • Q1. Tell me all oops features
  • Ans. 

    Object-oriented programming features include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

    • Inheritance: Ability for a class to inherit properties and behavior from another class.

    • Polymorphism: Ability for objects of different classes to respond to the same message in different ways.

    • Abstraction: Hiding the complex imp...

  • Answered by AI

I was interviewed in Feb 2022.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 Minutes
Round difficulty - Easy

In this round, there are a total of 16 questions and the time given was 90 mins.

3 Coding questions – Easy, Medium, and Hard.
13 MCQs based on outputs, Computer fundamentals, Aptitude.

  • Q1. 

    N Queens Problem Statement

    You are provided with an integer 'N'. For an 'N' x 'N' chessboard, determine how to position 'N' queens such that no queen can attack another queen on the chessboard.

    Explanati...

  • Ans. Backtracking
    1. Instead of checking all the places on the chessboard, we can use backtracking and place queen row-wise or column-wise.
    2. Suppose we place queens row-wise, and we start with the very first row. Place the queen and move to the next row until either there is a solution or there are no viable cells left.
    3. As we backtrack, check to place the queen in the different columns of the same row.
    4. When we can place a queen at ...
  • Answered Anonymously
  • Q2. 

    Pair Sum Problem Statement

    Given an integer array ARR of size N and an integer S, your goal is to return a list of all pairs of elements such that the sum of elements of each pair equals S.

    Example:

    Inp...
  • Ans. Brute Force
    • Initialize a list to store our results.
    • For each element in the array 'ARR[i]', check if ('ARR[i]' + ‘ARR[j]’), equals to given sum or not, where ‘i’ < ‘j’ < ‘N’.
    • If the condition matches, add the pair('ARR[i]', ‘ARR[j]’) to the list. Sort the list of pairs as per the given output format and return this list.
    Space Complexity: O(1)Explanation:

    O(1).

     

    Constant extra space is required.

    Time Complexity: O...
  • Answered Anonymously
  • Q3. 

    Minimum Number of Platforms Needed Problem Statement

    You are given the arrival and departure times of N trains at a railway station for a particular day. Your task is to determine the minimum number of pl...

  • Ans. Space Complexity: O(1)Explanation: Time Complexity: O(1)Explanation:
  • Answered Anonymously
Round 2 - Coding Test 

Round duration - 120 minutes
Round difficulty - Easy

This round is an interesting experience to brainstorm, problem-solve and pair alongside a ThoughtWorks Developer that allows you to demonstrate hands-on coding, design, OOP, and solution skills on the code which you have submitted.The problem statement will be shared with you 20 minutes before the start time of the interview

Interview Preparation Tips

Eligibility criteriaNAThought Works interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare system design
Tip 2 : Practice coding questions
Tip 3 : Prepare and search previous interviews

Application resume tips for other job seekers

Tip 1 : Have atleast 3 great project
Tip 2 : Write only what you know and prepare well

Final outcome of the interviewRejected

Skills evaluated in this interview

Round 1 - Aptitude Test 

2 coding questions, and other quantitative, logical and verbal

Round 2 - Group Discussion 

A group of 7 and topic was "local for vocal"

Interview Preparation Tips

Interview preparation tips for other job seekers - confidence and knowledge and nlfnai nfia fawni fwia vaib afw v viviwn
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Reasoning techinical and coding based ques

Round 2 - Technical 

(2 Questions)

  • Q1. Asked about exceptions
  • Q2. Asked about api chaining

Calsoft Interview FAQs

How many rounds are there in Calsoft Senior Sdet Engineer interview?
Calsoft interview process usually has 2 rounds. The most common rounds in the Calsoft interview process are Technical and One-on-one Round.
What are the top questions asked in Calsoft Senior Sdet Engineer interview?

Some of the top questions asked at the Calsoft Senior Sdet Engineer interview -

  1. How to create CI/CD ...read more
  2. Python code for string rever...read more
  3. Automation framework explanat...read more

Tell us how to improve this page.

Calsoft Senior Sdet Engineer Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more
Join Calsoft Technology-First

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 793 Interviews
CitiusTech Interview Questions
3.4
 • 265 Interviews
View all
Calsoft Senior Sdet Engineer Salary
based on 5 salaries
₹11 L/yr - ₹16 L/yr
52% less than the average Senior Sdet Engineer Salary in India
View more details

Calsoft Senior Sdet Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

5.0

Skill development

4.0

Work-life balance

2.0

Salary

3.0

Job security

3.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Development Engineer
326 salaries
unlock blur

₹3 L/yr - ₹10.5 L/yr

Senior Development Engineer
221 salaries
unlock blur

₹5.2 L/yr - ₹20 L/yr

Softwaretest Engineer
127 salaries
unlock blur

₹3 L/yr - ₹7 L/yr

Principal Development Engineer
123 salaries
unlock blur

₹10 L/yr - ₹35 L/yr

Senior Software Engineer
95 salaries
unlock blur

₹6 L/yr - ₹24.2 L/yr

Explore more salaries
Compare Calsoft with

Persistent Systems

3.5
Compare

LTIMindtree

3.8
Compare

Mphasis

3.4
Compare

TCS

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