Upload Button Icon Add office photos

Cavista Technology

Compare button icon Compare button icon Compare

Filter interviews by

Cavista Technology Interview Questions and Answers

Updated 20 Jan 2025
Popular Designations

Cavista Technology Interview Experiences

2 interviews found

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 20 Jan 2025

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed before Jan 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. .Net C# sql entity

I applied via LinkedIn and was interviewed in May 2022. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What is closure in js
  • Ans. 

    Closure is a function that has access to its parent scope even after the parent function has returned.

    • Closure allows for private variables and functions in JavaScript.

    • It is created when a function is returned from another function.

    • Closures can be used to create factory functions and currying.

    • Example: function outer() { let x = 10; return function inner() { console.log(x); } }

    • Example: const add = (function () { let coun...

  • Answered by AI
  • Q2. Live coding based on string and number
  • Ans. 

    This question involves manipulating strings and numbers through coding exercises.

    • Use string methods: e.g., str.upper() to convert to uppercase.

    • String concatenation: e.g., 'Hello' + ' World' results in 'Hello World'.

    • Convert strings to numbers: e.g., int('123') converts to 123.

    • Iterate through characters: e.g., for char in 'abc': print(char) outputs 'a', 'b', 'c'.

    • Format strings: e.g., f'Value: {number}' to embed variables...

  • Answered by AI
  • Q3. Difference between var let const
  • Ans. 

    var, let, and const are used to declare variables in JavaScript with different scoping rules and mutability.

    • var has function-level scope and can be redeclared and reassigned

    • let has block-level scope and can be reassigned but not redeclared

    • const has block-level scope and cannot be reassigned or redeclared

    • Use const for values that should not change, let for values that may change, and var for legacy code or global variab...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Cavista Technology Software Engineer interview:
  • Javascript
  • HTML
  • CSS
Interview preparation tips for other job seekers - Practice js live coding and also go through js logics and interview questions

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
5d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Cavista Technology?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Sep 2020. There were 6 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Python program like print day, month and year from current date and fibonacci series
  • Q2. Bluetooth concept basics

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare only program and basic concepts

Interview Questionnaire 

3 Questions

  • Q1. 1. Assignment
  • Q2. 2. Bunch of python questions.
  • Q3. 3. coding questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear with basics.

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

Interview Questionnaire 

1 Question

  • Q1. All related to project worked on wlan testing and networking concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall Good.
They gave taken 3 technical and 1hr round
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Can you provide information about yourself and your professional background?
  • Ans. 

    I have over 10 years of experience in sales, with a proven track record of exceeding targets and building strong client relationships.

    • 10+ years of sales experience

    • Consistent track record of exceeding targets

    • Strong client relationship building skills

  • Answered by AI
  • Q2. What interests you in joining MyOperator, and how do you envision your role progressing in the company over the next few years?
  • Ans. 

    I am interested in joining MyOperator because of its innovative technology and strong market presence. I envision my role evolving to take on more leadership responsibilities and contribute to the company's growth.

    • I am attracted to MyOperator's cutting-edge technology and reputation in the market.

    • I see myself growing within the company by taking on leadership roles and contributing to its success.

    • I am excited about the...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Gain an understanding of the company's products and culture.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Assignment 

DSA MCQ in online platform

Round 2 - Coding Test 

Basic closings like lists/array/string

Are these interview questions helpful?
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Online MCQs - 15 Questions (Aps, DSA, Output Prediction)

Round 2 - Coding Test 

1 Question (with 3 Enhancement)

Round 3 - Technical 

(2 Questions)

  • Q1. Delete Middle Element from a stack of Odd Length
  • Ans. 

    Remove middle element from a stack with odd length

    • Find the middle index of the stack by dividing the length by 2

    • Remove the element at the middle index

    • Adjust the stack by shifting elements if necessary

  • Answered by AI
  • Q2. Resume Based Questions
Round 4 - HR 

(2 Questions)

  • Q1. Self Introduction but without the details in the resume
  • Q2. Asked whether ok with the bond

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Data structure and aptitude

Round 2 - Coding Test 

10 mins given for prepare for the problem and after completing the problem (program ) they asked to explain and asked to upgrade the program by reduce time complexity

Round 3 - Technical 

(2 Questions)

  • Q1. Topic given and want to explain
  • Q2. Reverse string without buildin funtion and for loop
  • Ans. 

    Reverse a string without using built-in functions or for loops

    • Use recursion to reverse the string

    • Pass the substring excluding the first character to the recursive function

    • Base case: return the character itself if the length of the string is 1

    • Concatenate the last character of the string with the result of the recursive call

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Introduce your self
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java and Python programming languages

    • Skilled in web development technologies like HTML, CSS, and JavaScript

    • Worked on projects involving database management with SQL

  • Answered by AI
  • Q2. Are you ok with agreement
  • Ans. 

    Yes, I am okay with agreement.

    • I am comfortable with signing agreements related to software development projects.

    • I understand the importance of agreements in protecting both parties involved in a project.

    • I am willing to review and negotiate agreements to ensure they are fair and reasonable.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be confidence
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

There are Question based on data strcuture ,they cover all the topic in ds

Round 2 - Coding Test 

In coding code they gave internet access to solve the problem after 30 they told us to make some changes in it and we should ready to explain the entire code

Interview Preparation Tips

Interview preparation tips for other job seekers - To clear 1 st round ,revise all the data structure concepts ,in second round make sure to be strong in fundamentals of programming and good in logical thinking

Cavista Technology Interview FAQs

How many rounds are there in Cavista Technology interview?
Cavista Technology interview process usually has 1 rounds. The most common rounds in the Cavista Technology interview process are Technical and One-on-one Round.
How to prepare for Cavista Technology interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Cavista Technology. The most common topics and skills that interviewers at Cavista Technology expect are Agile, Operations, Computer science, Javascript and MySQL.
What are the top questions asked in Cavista Technology interview?

Some of the top questions asked at the Cavista Technology interview -

  1. What is closure in...read more
  2. Live coding based on string and num...read more
  3. Difference between var let co...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.3/5

based on 3 interview experiences

Difficulty level

Easy 100%

Duration

Less than 2 weeks 100%
View more

Cavista Technology Reviews and Ratings

based on 39 reviews

2.7/5

Rating in categories

2.7

Skill development

4.2

Work-life balance

2.4

Salary

3.9

Job security

3.3

Company culture

2.0

Promotions

2.9

Work satisfaction

Explore 39 Reviews and Ratings
Engineer 1
24 salaries
unlock blur

₹7 L/yr - ₹10.8 L/yr

L2 Engineer
19 salaries
unlock blur

₹9.1 L/yr - ₹15 L/yr

Senior Software Engineer
15 salaries
unlock blur

₹12.5 L/yr - ₹26.5 L/yr

Senior Engineer
7 salaries
unlock blur

₹16.8 L/yr - ₹28.6 L/yr

Engineer III
7 salaries
unlock blur

₹9.2 L/yr - ₹17 L/yr

Explore more salaries
Compare Cavista Technology with

Yalamanchili Software Exports

3.2
Compare

ScoreMe Solutions

4.2
Compare

Xtancia Technosoft

4.0
Compare

Global Edge Software

3.5
Compare
write
Share an Interview