Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Arcon TechSolutions Softwaretest Engineer Interview Questions and Answers

Updated 23 Jan 2023

Arcon TechSolutions Softwaretest Engineer Interview Experiences

1 interview found

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

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

Round 1 - Aptitude Test 

Basic mathematical questions and aptitude based with logical reasoning,verbal and quants

Round 2 - Coding Test 

Q1- build alogrithm
Q2- SQL
Q3- program question in dsa

Round 3 - HR 

(2 Questions)

  • Q1. Question in topic of dsa oops And some programs
  • Q2. And personal interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Good scope of career building and skills development

Interview questions from similar companies

I applied via LinkedIn and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic test difficulty level was decent. Mathematics and reasoning based.

Round 2 - Coding Test 

Coding questions on basic DSA . Difficulty level was medium

Interview Preparation Tips

Interview preparation tips for other job seekers - Study hard and never give up. You will make it to your dream company. Just try to gain practical experience by internships or projects.

I was interviewed before Mar 2021.

Round 1 - Technical 

(2 Questions)

  • Q1. Which browser support in selenium IDE
  • Ans. 

    Selenium IDE supports multiple browsers including Chrome, Firefox, Safari, and Internet Explorer.

    • Selenium IDE supports Chrome, Firefox, Safari, and Internet Explorer

    • Browser support may vary depending on the version of Selenium IDE being used

    • Additional browser support can be added through plugins or extensions

  • Answered by AI
  • Q2. Firefox browser support in selenium IDE
  • Ans. 

    Selenium IDE supports Firefox browser.

    • Selenium IDE is a Firefox plugin

    • It can record and playback tests in Firefox

    • It supports Firefox versions up to 55

    • For newer versions, use Selenium WebDriver

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It is most pretective and security provide our company

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

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

Round 1 - Coding Test 

Aptitude, reasoning, English, and two codes

Round 2 - Technical 

(1 Question)

  • Q1. Basics of OOPs SDLC Print pattern

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

Round 1 - Aptitude Test 

Aptitude ,reasoning, computer science fundamental mcq ,2 coding questions

Round 2 - Coding Test 

Advance round for those who solved more than 80% test in shl exam

Round 3 - One-on-one 

(1 Question)

  • Q1. Polymorphism,OOP,Code snippet output and basic coding and for some ppl puzzles also asked

Interview Preparation Tips

Topics to prepare for Persistent Systems Softwaretest Engineer interview:
  • Coding
  • Puzzle
  • OOP
  • Computer science Fundamentals
Interview preparation tips for other job seekers - Interview after martians program and based on basic coding, puzzle and general discussion
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Questions are of medium difficulty focus on time

Round 2 - Technical 

(1 Question)

  • Q1. Reverse string in java
  • Ans. 

    To reverse a string in Java, use StringBuilder or char array.

    • Use StringBuilder's reverse() method to reverse a string.

    • Convert the string to a char array, then swap characters from start and end indexes.

    • Iterate through half of the string and swap characters at corresponding indexes.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Always focus on time as well as keep an eye on edge test cases.

Skills evaluated in this interview

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

General questions in quanz, logical

Round 2 - Technical 

(1 Question)

  • Q1. Ask about oops and dsa
Round 3 - HR 

(1 Question)

  • Q1. Questions from projects
Round 1 - One-on-one 

(3 Questions)

  • Q1. Tell me about your self
  • Q2. What is software testing
  • Ans. 

    Software testing is the process of evaluating a software application or system to find defects and ensure it meets the specified requirements.

    • Software testing involves executing software applications or systems to identify defects and ensure they meet the specified requirements.

    • It is done to ensure that the software is reliable, efficient, and meets the user's needs.

    • Testing can be done manually or using automated tools...

  • Answered by AI
  • Q3. How you test in detail
  • Ans. 

    I follow a structured approach to testing, including planning, designing test cases, executing them, and reporting defects.

    • I start by analyzing requirements and identifying test scenarios

    • I design test cases and prioritize them based on risk and impact

    • I execute test cases and report defects using a bug tracking tool

    • I perform regression testing to ensure fixes do not introduce new issues

    • I use automation tools to increase...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. What is your expected salary and also share your expertise
  • Q2. What you like about the company

Interview Preparation Tips

Interview preparation tips for other job seekers - Be positive and confident in what you do

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Apr 2023. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. No interview questions yet
  • Q2. No Interview Questions yet to answer
  • Q3. Not Applicable to discussed it
Round 2 - Technical 

(1 Question)

  • Q1. No questions yet to answer

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Easy MCQ Questions just prepare basics of CS

Round 2 - Technical 

(3 Questions)

  • Q1. Explain OOPS concept in detail
  • Ans. 

    OOPS is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOPS stands for Object-Oriented Programming System

    • It focuses on creating objects that interact with each other to solve a problem

    • Key principles include encapsulation, inheritance, polymorphism, and abstraction

    • Encapsulation: Bundling data and methods that operate on the data int...

  • Answered by AI
  • Q2. What is constructor
  • Ans. 

    A constructor is a special type of method that is automatically called when an object is created in a class.

    • Constructors have the same name as the class they are in.

    • They can be used to initialize object properties.

    • Constructors do not have a return type.

    • Example: public class Car { public Car() { // constructor code here } }

  • Answered by AI
  • Q3. When we use final keyword
  • Ans. 

    The final keyword is used in Java to declare constants, prevent method overriding, and prevent class inheritance.

    • Used to declare constants - value cannot be changed

    • Prevents method overriding in subclasses

    • Prevents class inheritance - class cannot be extended

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Strength and Weakness
  • Q2. About myself, my hobbies, fav game

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Arcon TechSolutions Interview FAQs

How many rounds are there in Arcon TechSolutions Softwaretest Engineer interview?
Arcon TechSolutions interview process usually has 4 rounds. The most common rounds in the Arcon TechSolutions interview process are Resume Shortlist, Aptitude Test and Coding Test.

Recently Viewed

INTERVIEWS

Reliance Retail

No Interviews

INTERVIEWS

Honeywell Technology Solutions

No Interviews

INTERVIEWS

Reliance Retail

No Interviews

INTERVIEWS

VEL Tech University

No Interviews

INTERVIEWS

KEC International

No Interviews

INTERVIEWS

Sutherland Global Services

No Interviews

INTERVIEWS

TecTree

No Interviews

INTERVIEWS

Motherson Sumi Wiring

No Interviews

INTERVIEWS

Welspun Enterprises

No Interviews

INTERVIEWS

TCS iON

No Interviews

Tell us how to improve this page.

Arcon TechSolutions Softwaretest Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Arcon TechSolutions Softwaretest Engineer Salary
based on 6 salaries
₹5.7 L/yr - ₹7.1 L/yr
15% more than the average Softwaretest Engineer Salary in India
View more details
Software Developer
108 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
33 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Developer
32 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Implementation Engineer
28 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
19 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Arcon TechSolutions with

Infosys

3.6
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
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent