Upload Button Icon Add office photos
Engaged Employer

i

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

Acviss Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Acviss Interview Questions and Answers

Updated 27 Feb 2025

Acviss Interview Experiences

Popular Designations

8 interviews found

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

I appeared for an interview in Jul 2024.

Round 1 - One-on-one 

(1 Question)

  • Q1. Quant questions with the CEO
Round 2 - Technical 

(1 Question)

  • Q1. Project and Product Management related questions - technical questions on project timelines and resource allocation.
Round 3 - HR 

(1 Question)

  • Q1. Job offer and salary discussions and negotiations.

QA Lead Interview Questions & Answers

user image Anonymous

posted on 28 Jan 2025

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

(1 Question)

  • Q1. How will you get exactly 4 liters of water from 3 litre and 5 litre jars.

QA Lead Interview Questions asked at other Companies

Q1. 1. Explain Bid bond guarantee, Advance payment guarantee, Performance guarantee. 2. What are different SWIFT messages generated as part of Letter of Credit? 3. Difference between LC and Guarantee. 4. Difference between Import LC and Export ... read more
View answer (1)

Interview Questions & Answers

user image Anonymous

posted on 2 May 2024

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

I applied via Referral and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell about your past job?
  • Q2. Tell about what are your future goals
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Screening round- About Work experience and expectations
Round 2 - Technical 

(2 Questions)

  • Q1. DSA problem, About MVVM, Activity and Fragment Lifecyle.
  • Q2. All above topics have asked in depth

Android Developer Interview Questions asked at other Companies

Q1. BST Iterator Problem Statement You are tasked with creating a class named BSTIterator that acts as an iterator for the inorder traversal of a binary search tree. Implement the following functions: BSTIterator(Node root): A constructor that... read more
View answer (1)

Acviss interview questions for popular designations

 Data Scientist

 (1)

 Qa Support Engineer

 (1)

 QA Lead

 (1)

 Full Stack Developer

 (1)

 AWS Devops Engineer

 (1)

 Android Developer

 (1)

 Product Support Manager

 (1)

Full Stack Developer Interview Questions & Answers

user image soumya ranjan prusty

posted on 27 Feb 2025

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

(1 Question)

  • Q1. Tell me about your self?

Full Stack Developer Interview Questions asked at other Companies

Q1. Query and Matrix Problem Statement You are given a binary matrix with 'M' rows and 'N' columns, initially consisting of all 0s. You will receive 'Q' queries, which can be of four types: Query 1: 1 R indexQuery 2: 1 C indexQuery 3: 2 R index... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

Aptitude Test with reasoning and cloud

Round 3 - Technical 

(3 Questions)

  • Q1. Coding questions based on resume
  • Q2. Code to check given number is prime or not
  • Ans. 

    Code to check if a given number is prime or not.

    • Iterate from 2 to square root of the number and check for divisibility.

    • If the number is divisible by any number other than 1 and itself, it is not prime.

    • Return true if the number is prime, false otherwise.

  • Answered by AI
  • Q3. Code to check palyndrome or not
  • Ans. 

    Code to check if a given string is a palindrome or not.

    • Create a function that takes a string as input.

    • Remove all non-alphanumeric characters and convert the string to lowercase.

    • Compare the original string with its reverse to check if it is a palindrome.

  • Answered by AI

Skills evaluated in this interview

AWS Devops Engineer Interview Questions asked at other Companies

Q1. how do you troubleshoot a docker container that is going to die?
View answer (1)

Jobs at Acviss

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

I applied via LinkedIn and was interviewed in Feb 2023. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Questions asked from data science and computer vision
Round 3 - Assignment 

Computer vision related project I got as assignment

Round 4 - Technical 

(1 Question)

  • Q1. Puzzles and some technical questions are asked
Round 5 - One-on-one 

(1 Question)

  • Q1. In office interview and salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - It's a great orgnization. You will get a chance to learn here which will help you to develop your skills.

Data Scientist Interview Questions asked at other Companies

Q1. for a data with 1000 samples and 700 dimensions, how would you find a line that best fits the data, to be able to extrapolate? this is not a supervised ML problem, there's no target. and how would you do it, if you want to treat this as a s... read more
View answer (5)
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 - Technical 

(1 Question)

  • Q1. Manual and automation testing all questions covered
Round 3 - Assignment 

Test cases and test script for login page using automation

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and give some real time project examples which you have worked in previous company

Interview questions from similar companies

I applied via Naukri.com

Interview Questionnaire 

1 Question

  • Q1.  What are Option Strict and Option Explicit? What are all the differences between Dispose and Finalize()? What is the difference between System.String and System.StringBuilder classes? What is Delegate? ...
  • Ans. 

    Answers to common interview questions for Software Engineer position

    • Option Strict and Option Explicit are compiler directives in VB.NET

    • Dispose() is used to release unmanaged resources while Finalize() is used for garbage collection

    • System.String is immutable while System.StringBuilder is mutable

    • Delegate is a type that represents a reference to a method

    • Value types store data directly while reference types store a referen...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - selection process-
1st round-online test(prpare all kind of logical, verbal, and .net related questions)
2nd round- technical round(prepare all .net interview questions,sql server questions, winforms, web api)
3rd round- hr discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Let var const difference
  • Ans. 

    var, let, and const are all used to declare variables in JavaScript, but they have different scopes and mutability.

    • var is function-scoped and can be redeclared and reassigned

    • let is block-scoped and can be reassigned but not redeclared

    • const is block-scoped and cannot be reassigned or redeclared

  • Answered by AI
  • Q2. Polyfills of bind method
  • Ans. 

    Polyfills of bind method provide a way to use the bind method in older browsers that do not support it natively.

    • Polyfill code typically checks if the bind method is available and if not, it creates a new function that mimics the behavior of bind.

    • One common polyfill for the bind method is the following: Function.prototype.bind = Function.prototype.bind || function() { // polyfill code here };

    • Polyfills are often used to ...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Make a search bar in React
  • Ans. 

    Create a search bar component in React for filtering data

    • Create a functional component for the search bar

    • Use state to store the search query

    • Implement a onChange event handler to update the search query

    • Filter the data based on the search query

  • Answered by AI
  • Q2. React js core concepts
Round 3 - HR 

(2 Questions)

  • Q1. How you structure your work
  • Ans. 

    I structure my work by breaking down tasks, setting priorities, creating timelines, and regularly reviewing progress.

    • Break down tasks into smaller, manageable chunks

    • Set priorities based on deadlines and importance

    • Create timelines to track progress and ensure timely completion

    • Regularly review progress and adjust plans as needed

  • Answered by AI
  • Q2. How you make a project from scratch
  • Ans. 

    To make a project from scratch, start by defining requirements, creating a plan, designing the architecture, implementing the code, testing, and deploying.

    • Define project requirements and goals

    • Create a project plan with timelines and milestones

    • Design the architecture of the project, including database schema and system components

    • Implement the code following best practices and coding standards

    • Test the project thoroughly ...

  • Answered by AI

Skills evaluated in this interview

Acviss Interview FAQs

How many rounds are there in Acviss interview?
Acviss interview process usually has 2-3 rounds. The most common rounds in the Acviss interview process are Technical, Resume Shortlist and One-on-one Round.
How to prepare for Acviss 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 Acviss. The most common topics and skills that interviewers at Acviss expect are Python, IOS, AWS, Django and OOPS.
What are the top questions asked in Acviss interview?

Some of the top questions asked at the Acviss interview -

  1. How will you get exactly 4 liters of water from 3 litre and 5 litre ja...read more
  2. code to check given number is prime or ...read more
  3. code to check palyndrome or ...read more

Tell us how to improve this page.

Acviss Interview Process

based on 6 interviews

Interview experience

4.2
  
Good
View more

Interview Questions from Similar Companies

HALODOC Interview Questions
2.7
 • 12 Interviews
Unstop Interview Questions
4.0
 • 10 Interviews
Pagarbook Interview Questions
3.6
 • 10 Interviews
ITILITE Interview Questions
2.8
 • 9 Interviews
Xoxoday Interview Questions
3.7
 • 7 Interviews
SalesHandy Interview Questions
3.4
 • 6 Interviews
View all

Acviss Reviews and Ratings

based on 30 reviews

4.3/5

Rating in categories

4.3

Skill development

4.3

Work-life balance

4.0

Salary

4.3

Job security

4.1

Company culture

4.1

Promotions

4.2

Work satisfaction

Explore 30 Reviews and Ratings
Business Development Executive

Bangalore / Bengaluru

3-5 Yrs

Not Disclosed

Video Editor Intern

Bangalore / Bengaluru

3-5 Yrs

Not Disclosed

iOS Developer

Bangalore / Bengaluru

2-4 Yrs

₹ 5-6 LPA

Explore more jobs
Accountant
4 salaries
unlock blur

₹5.2 L/yr - ₹5.2 L/yr

QA Engineer
4 salaries
unlock blur

₹1.9 L/yr - ₹8 L/yr

Desktop Support Engineer
4 salaries
unlock blur

₹2.4 L/yr - ₹3 L/yr

Accounts & Administration Executive
4 salaries
unlock blur

₹5.2 L/yr - ₹5.2 L/yr

HR Generalist
4 salaries
unlock blur

₹4.4 L/yr - ₹6.3 L/yr

Explore more salaries
Compare Acviss with

Pagarbook

3.6
Compare

Signzy Technologies

2.9
Compare

Xoxoday

3.7
Compare

ITILITE

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