Upload Button Icon Add office photos

Cavisson Systems

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Cavisson Systems Softwaretest Engineer Interview Questions and Answers

Updated 2 Aug 2024

Cavisson Systems Softwaretest Engineer Interview Experiences

2 interviews found

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

(2 Questions)

  • Q1. What is Decorator in python?
  • Ans. 

    Decorator in Python is a design pattern that allows behavior to be added to individual objects, either statically or dynamically, without affecting the behavior of other objects.

    • Decorators are functions that modify the functionality of another function.

    • They are commonly used to add functionality to existing functions without changing their structure.

    • Syntax for using decorators involves using the @ symbol followed by th...

  • Answered by AI
  • Q2. Explain Django Orm
  • Ans. 

    Django ORM is a tool that allows developers to interact with a database using Python objects.

    • Django ORM translates Python code into SQL queries to interact with the database

    • It provides an easy way to create, read, update, and delete database records

    • ORM stands for Object-Relational Mapping, which maps database tables to Python classes

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Few questions were asked related to arrays

Round 2 - One-on-one 

(2 Questions)

  • Q1. What is palindrome how to print it?
  • Ans. 

    A palindrome is a word, phrase, number, or other sequence of characters that reads the same forward and backward.

    • Check if the given string is equal to its reverse to determine if it is a palindrome.

    • Ignore spaces and punctuation when checking for palindromes.

    • Examples: 'radar', 'madam', '12321'

  • Answered by AI
  • Q2. Java collection framework

Interview Preparation Tips

Interview preparation tips for other job seekers - It is quite easy. You can crack it even if you have prepared, not that much

Skills evaluated in this interview

Softwaretest Engineer Interview Questions Asked at Other Companies

asked in Playablo
Q1. What is boundary value analysis? How do u perform boundary value ... read more
asked in Playablo
Q2. If u get a blocker defect just the previous day of ur release dat ... read more
Q3. 1. What is STLC, SDLC 2. What is the bug Life cycle. 3. Differenc ... read more
Q4. - Print the frequency of each alphabet for the given string. - Sw ... read more
asked in Playablo
Q5. Write Sql query for displaying total number of students from chil ... read more

Interview questions from similar companies

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

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all Resume tips
Round 2 - Coding Test 

Graph based questions they asked . So please be thorough with data structures.

Round 3 - Aptitude Test 

Date and time questions particularly asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Mainly focus on data science projects
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Good interview. Total 2 technical rounds. First one is standard medium DSA question was asked, and in second round javascript/react basic questions were asked. No feedback given after the interview.

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

I was interviewed in Feb 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Tinyurl system design..had a lot of discussion on it
  • Q2. Project based discussion
Round 2 - Technical 

(2 Questions)

  • Q1. Maze DSA question
  • Q2. Trees related question...asked for pseudo code...more of aptitude type question

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on java, multiple threading ,hld and slight DSA

I applied via Campus Placement and was interviewed before Aug 2021. There were 4 interview rounds.

Round 1 - Coding Test 

Coding cum aptitude test on Hackerrank

Round 2 - One-on-one 

(1 Question)

  • Q1. First round interview . Consisted questions based on projects , dsa
Round 3 - One-on-one 

(1 Question)

  • Q1. Round 2 . Question based from core technology. Micro services , etc
Round 4 - HR 

(1 Question)

  • Q1. Basic hr questions . Why are you fit for this role kind of things

Interview Preparation Tips

Interview preparation tips for other job seekers - Medium level interview rounds. Basic knowledge in dsa will be of a great help
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Coding Test 

An online test with 2 coding problems
1. DP medium
2. Tree medium

Round 2 - Coding Test 

In-person interview, asked 2 coding questions
1. easy question based on binary search. Write pseudo code on paper
2. medium question based on tree. Write pseudo code on paper

Round 3 - HR 

(2 Questions)

  • Q1. Asked about the projects mentioned in resume
  • Q2. What challenges did you overcome in your last internship
  • Ans. 

    I overcame challenges related to learning new technologies and working in a fast-paced environment.

    • Learning to use a new programming language and framework

    • Adapting to the fast-paced nature of the work environment

    • Troubleshooting and debugging complex issues

    • Collaborating with team members to meet project deadlines

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jul 2024.

Round 1 - Coding Test 

Leet code medium level question

Round 2 - Technical 

(2 Questions)

  • Q1. About Java Streams
  • Q2. Restful API coding completion based on given file
Round 3 - HR 

(2 Questions)

  • Q1. To check your attitude
  • Q2. Given detailed about company and what project you are going to work on?
Round 4 - One-on-one 

(5 Questions)

  • Q1. Hashmap working
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows for fast retrieval of values based on keys.

    • Hashmap uses a hashing function to map keys to indices in an array.

    • It allows for constant time complexity O(1) for insertion, deletion, and retrieval operations.

    • Example: HashMap<String, Integer> map = new HashMap<>(); map.put("key", 123); int value = map.get("key");

  • Answered by AI
  • Q2. Multithreading cases
  • Q3. Scenario specific on how to handle multiple events on a single variable to have accurate result
  • Q4. Database indexing
  • Q5. Architecture level

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

Round 1 - Aptitude Test 

Aptitude and Technical (SQL, Cloud Services, Java Questions, Operating System Questions)

Round 2 - Technical 

(2 Questions)

  • Q1. Question on SQL queries.
  • Q2. Write code on the second maximum number in an array.
  • Ans. 

    Code to find the second maximum number in an array.

    • Sort the array in descending order and return the second element.

    • Initialize two variables to store the maximum and second maximum values.

    • Iterate through the array and update the variables accordingly.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare concepts thoroughly, you can take hints from the interviewer if you are stuck.

Skills evaluated in this interview

I applied via Company Website and was interviewed in Jan 2022. There were 4 interview rounds.

Round 1 - Coding Test 

Graphs,array and link list question

Round 2 - Technical 

(1 Question)

  • Q1. Focus on core CS subject with basic dsa
Round 3 - Technical 

(1 Question)

  • Q1. Medium DSA round with project
Round 4 - HR 

(1 Question)

  • Q1. Salary negotiations and basic behavioral topics

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on core subject and dsa of leet code medium
Contribute & help others!
anonymous
You can choose to be anonymous

Cavisson Systems Interview FAQs

How many rounds are there in Cavisson Systems Softwaretest Engineer interview?
Cavisson Systems interview process usually has 1-2 rounds. The most common rounds in the Cavisson Systems interview process are Coding Test, One-on-one Round and Technical.
What are the top questions asked in Cavisson Systems Softwaretest Engineer interview?

Some of the top questions asked at the Cavisson Systems Softwaretest Engineer interview -

  1. What is palindrome how to print ...read more
  2. What is Decorator in pyth...read more
  3. Explain Django ...read more

Recently Viewed

INTERVIEWS

Jash Engineering

No Interviews

INTERVIEWS

Jash Engineering

No Interviews

INTERVIEWS

ZeMoSo Technologies

No Interviews

INTERVIEWS

Wissen Technology

No Interviews

INTERVIEWS

Wissen Technology

No Interviews

DESIGNATION

INTERVIEWS

ZeMoSo Technologies

No Interviews

INTERVIEWS

Cavisson Systems

No Interviews

SALARIES

ZeMoSo Technologies

INTERVIEWS

Cavisson Systems

No Interviews

Tell us how to improve this page.

Cavisson Systems Softwaretest Engineer Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more
Cavisson Systems Softwaretest Engineer Salary
based on 48 salaries
₹3 L/yr - ₹7 L/yr
26% less than the average Softwaretest Engineer Salary in India
View more details

Cavisson Systems Softwaretest Engineer Reviews and Ratings

based on 9 reviews

2.8/5

Rating in categories

2.7

Skill development

2.8

Work-life balance

2.8

Salary

2.9

Job security

2.7

Company culture

2.8

Promotions

2.7

Work satisfaction

Explore 9 Reviews and Ratings
Software Engineer
811 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
112 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Performance Test Engineer
95 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
80 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
74 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Cavisson Systems with

AppDynamics

4.2
Compare

New Relic

2.7
Compare

Dynatrace

1.8
Compare

Splunk

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