Upload Button Icon Add office photos

Filter interviews by

Channel Soft Software QA Engineer Interview Questions and Answers

Updated 16 Oct 2024

Channel Soft Software QA Engineer Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Can we automate webpage prallelly?
  • Ans. 

    Yes, we can automate webpages parallelly using tools like Selenium Grid or TestNG.

    • Use Selenium Grid to run tests in parallel on multiple machines or browsers

    • Utilize TestNG to execute tests in parallel across different test classes or methods

    • Implement parallel testing frameworks like TestNG's parallel attribute or Maven Surefire plugin

  • Answered by AI
Round 2 - Coding Test 

Write test case on the given topic

Round 3 - Manger 

(1 Question)

  • Q1. Regarding project

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Oct 2024.

Round 1 - Coding Test 

First round was coding test on Coderbyte it was good.

Round 2 - Technical 

(2 Questions)

  • Q1. This round is video technical interview on flowcareer platform
  • Q2. Coding DSA question was asked on array.
Round 3 - Technical 

(2 Questions)

  • Q1. This round contains mix questions on theory as well as DSA.
  • Q2. Machine coding question asked on react.js.
Round 4 - Technical 

(2 Questions)

  • Q1. Some basic react.js and node.js questions.
  • Q2. Questions asked on MongoDB and one DSA question on array asked.
Round 5 - HR 

(1 Question)

  • Q1. This round is HR salary discussion round and i got offer.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Don't remember so I have no
  • Q2. I can't remember it
Round 2 - Technical 

(2 Questions)

  • Q1. I don't know the res
  • Q2. I can't remember it
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Advanced Java coding

Round 2 - Technical 

(2 Questions)

  • Q1. Entire core Java arrays and strings
  • Ans. 

    Core Java arrays and strings are fundamental data structures used for storing and manipulating data in Java programming.

    • Arrays in Java are used to store multiple values of the same data type in a single variable.

    • Strings in Java are objects that represent sequences of characters.

    • Arrays and strings in Java are both indexed collections, with arrays being mutable and strings being immutable.

    • Example: String[] names = {"Alic

  • Answered by AI
  • Q2. Java collections and Framework
Round 3 - Technical 

(2 Questions)

  • Q1. Some coding and framework
  • Q2. REST assured and API

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare what ever you mention in the CV If you get shortlisted

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Campus Placement

Round 1 - Technical 

(2 Questions)

  • Q1. Oops related questions
  • Q2. C language quizzes
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Technical aspects about linked list,trees, stacks

Round 2 - Group Discussion 

Topic related to humanities

Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Good and the whole process took more than 20 days

Round 2 - Coding Test 

Find the largest number in an array

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

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 - Aptitude Test 

Moderate difficult challenge in control

Round 3 - One-on-one 

(1 Question)

  • Q1. Describe your project

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare aptitude

I was interviewed in Nov 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

  • Q1. 

    Path Queries Problem Statement

    Consider a weighted, undirected graph with 'V' vertices numbered from 1 to 'V' and 'E' bidirectional edges. You are tasked with handling 'Q' queries. For each query, you are...

  • Ans. Dijkstra Algorithm

    We will run Dijkstra Algorithm for all vertices in this approach and store the minimum distance in an array. Then we can answer the queries using this distance array.
     

    Dijkstra Algorithm is one of the most popular algorithms in graph theory. A single-source shortest path algorithm gives the shortest path length to all vertices from a given vertex known as the source vertex. It is a greedy algorith...

  • Answered Anonymously
  • Q2. 

    Merge Sort Algorithm Problem Statement

    Your task is to sort a sequence of numbers stored in the array ‘ARR’ in non-descending order using the Merge Sort algorithm.

    Explanation:

    Merge Sort is a divide-an...

  • Ans. Recursion

    The basic idea is that we divide the given ‘ARR’ into two-part call them ‘leftHalves’ and ‘rightHalves’ and call the same function again with both the parts. In the end, we will get sorted ‘leftHaves’ and sorted ‘righthalves’ which we merge both of them and return a merged sorted ‘ARR’.

    We implement this approach with a divide and conquer strategy.

     

    Here is the algorithm : 

     

    1. Divide ‘ARR’ into two-p...
  • Answered Anonymously
  • Q3. 

    Rat in a Maze: All Paths Problem

    You are provided with an N * N maze where a rat is positioned at starting cell MAZE[0][0]. The goal is to determine and print all possible paths that the rat can take to r...

  • Ans. Backtracking Approach

    Initialize, all the cells of the solution matrix used to print the path matrix to 0. First, you cannot make use of the existing maze to print the solution maze as you have to distinguish b/w 1 of maze or 1 of ‘SOLUTION matrix.

     

    Form a recursive function, which will follow a path and check if the path reaches the destination or not. If the path does not reach the destination then backtrack and t...

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dronacharya College of Engineering. I applied for the job as SDE - 1 in NoidaEligibility criteriaNo criteriaLido Learning interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming etcTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Practice Atleast 250 Questions
Tip 2 : Do atleast 2 projects
 

Application resume tips for other job seekers

Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

The aptitude test had various sections for programming mcq questions, basic aptitude and also coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Questions related to project that I have worked on
  • Q2. Technical Questions related to my stack react and node, and some js coding questions
Round 3 - Technical 

(2 Questions)

  • Q1. Questions related to project that I worked on
  • Q2. Technical questions related to my stack

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus more on fundamentals

Channel Soft Interview FAQs

How many rounds are there in Channel Soft Software QA Engineer interview?
Channel Soft interview process usually has 3 rounds. The most common rounds in the Channel Soft interview process are Technical and Coding Test.
What are the top questions asked in Channel Soft Software QA Engineer interview?

Some of the top questions asked at the Channel Soft Software QA Engineer interview -

  1. can we automate webpage prallel...read more
  2. regarding proj...read more

Tell us how to improve this page.

Channel Soft Software QA Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8.1k 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
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
Oracle Interview Questions
3.7
 • 896 Interviews
View all
Channel Soft Software QA Engineer Salary
based on 4 salaries
₹4.2 L/yr - ₹7.2 L/yr
20% less than the average Software QA Engineer Salary in India
View more details

Channel Soft Software QA Engineer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Software Quality Engineer
147 salaries
unlock blur

₹2 L/yr - ₹10.1 L/yr

Softwaretest Engineer
28 salaries
unlock blur

₹3.6 L/yr - ₹10.3 L/yr

Project Coordinator
21 salaries
unlock blur

₹1.9 L/yr - ₹6 L/yr

QA Engineer
12 salaries
unlock blur

₹3.6 L/yr - ₹10 L/yr

Software Engineer
8 salaries
unlock blur

₹4.5 L/yr - ₹11.3 L/yr

Explore more salaries
Compare Channel Soft with

Infosys

3.7
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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