Upload Button Icon Add office photos

Filter interviews by

Protechsoft Technologies Interview Questions, Process, and Tips

Updated 11 Dec 2024

Top Protechsoft Technologies Interview Questions and Answers

View all 19 questions

Protechsoft Technologies Interview Experiences

Popular Designations

26 interviews found

Java Programmer Interview Questions & Answers

user image pragadeesh G

posted on 5 Nov 2022

I applied via Naukri.com

Round 1 - Technical 

(2 Questions)

  • Q1. Coding test section b 1. abstract class with example 2. interface with example 3. method overriding and polymorphism with example 4. repeating letter in a string 5. pattern program 6. string problems
  • Q2. Fill ups section a 1. what is double size? 2. wrapper class of boolean
  • Ans. 

    Answering two technical questions related to Java programming.

    • Double size refers to the number of bytes occupied by a double-precision floating-point value in Java, which is 8 bytes.

    • The wrapper class of boolean is Boolean.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - i attended today only technical round.. if selected,
they will call and inform about the second round.
interview - 5.11.22 morning 11.00 am - 2.00 pm

Skills evaluated in this interview

Java Programmer Interview Questions asked at other Companies

Q1. fill ups section a 1. what is double size? 2. wrapper class of boolean
View answer (1)
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 - Coding Test 

(1 Question)

  • Q1. Guys plzz do not attend this its completely fake. after the first round they will surely call for the next interview round and there they will tell u to pay 1 lakh for the job and after 6 month training th...
Round 3 - HR 

(1 Question)

  • Q1. Fake fake fake its not a company its a consultancy demanding 1 lakh for training of 6 month then they will onboard u to next company that to not guaranteed....do not waste ur time plzz stay away from this ...

Interview Preparation Tips

Interview preparation tips for other job seekers - fraud company its not a IT conpany its a consultancy demanding 1 lakh

Junior Software Developer Interview Questions asked at other Companies

Q1. Given n coins for two players playing a game. Each player picks coins from the given n coins in such a way that he can pick 1 to 5 coins in one turn and the game continues for both the players. The player who picks the last coin looses the ... read more
View answer (2)

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

Round 1 - Aptitude Test 

20 aptitude questions and 5 questions

Round 2 - Technical 

(3 Questions)

  • Q1. Oops Abstraction Polymorphism Encapsulation
  • Q2. Define method overiding What is abstract class
  • Ans. 

    Method overriding is when a subclass provides its own implementation of a method that is already defined in its superclass.

    • Method overriding is used to achieve runtime polymorphism in Java.

    • The method signature (name, parameters, return type) must be the same in both the superclass and subclass.

    • The access level of the overriding method cannot be more restrictive than the overridden method.

    • Example: public class Animal { ...

  • Answered by AI
  • Q3. What is abstract class
  • Ans. 

    An abstract class is a class that cannot be instantiated and is meant to be subclassed.

    • An abstract class can have abstract methods that must be implemented by its subclasses.

    • Abstract classes can also have non-abstract methods and variables.

    • Abstract classes provide a way to define common behavior and characteristics for a group of related classes.

    • Example: The abstract class 'Animal' can have abstract method 'makeSound()...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare oops very well and basic of programming
Prepare oops very well

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... read more
View answer (4)

Test Engineer Interview Questions & Answers

user image Anonymous

posted on 15 Aug 2022

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

Round 1 - Assignment 

Written Exam.. Basic questions about types of testing..

Round 2 - Technical 

(1 Question)

  • Q1. Revise the question that has asked in written exam...
Round 3 - HR 

(1 Question)

  • Q1. Tell about yourself Why do u want to join here Family background

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy to crack. With some basic knowledge in Testing

Test Engineer Interview Questions asked at other Companies

Q1. 1. What is the frame work u have worked and explain the framework with folder structure? 2. purely based on testing, different testing types like functional and non functional tests 3. real time scenarios like last min bugs before release? ... read more
View answer (4)

Protechsoft Technologies interview questions for popular designations

 Java Developer

 (9)

 Software Developer

 (3)

 Java Programmer

 (2)

 Software Engineer

 (2)

 Softwaretest Engineer

 (2)

 SQL Developer

 (2)

 Database Programmer

 (1)

 Front end Developer

 (1)

I applied via Referral and was interviewed before Jan 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. What is "this" operator?
  • Ans. 

    The 'this' operator refers to the object that is currently executing the code.

    • The value of 'this' depends on how a function is called.

    • In a method, 'this' refers to the object that owns the method.

    • In a regular function, 'this' refers to the global object (window in a browser).

    • In an event handler, 'this' refers to the element that received the event.

    • The value of 'this' can be explicitly set using call(), apply(), or bind

  • Answered by AI
  • Q2. Difference between== and===.
  • Ans. 

    The == operator checks for equality, while the === operator checks for both equality and type.

    • The == operator performs type coercion, meaning it converts the operands to a common type before comparison.

    • The === operator does not perform type coercion and requires both the value and type to be the same for equality.

    • For example, 1 == '1' returns true because the operands are coerced to the same type, but 1 === '1' returns

  • Answered by AI
  • Q3. Purposes of navigation.
  • Ans. 

    Navigation serves the purpose of helping users move around a website or application.

    • Allows users to easily access different sections of the website

    • Helps users understand the structure and hierarchy of the website

    • Improves user experience by providing clear and concise directions

    • Can include various types of navigation such as menus, breadcrumbs, and search bars

  • Answered by AI
  • Q4. Difference between let and var.
  • Ans. 

    let is block-scoped while var is function-scoped.

    • let variables are only accessible within the block they are declared in

    • var variables are accessible within the entire function they are declared in

    • let variables can be reassigned but not redeclared

    • var variables can be both reassigned and redeclared

    • let variables are a safer option for avoiding variable hoisting issues

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and try to say I will learn it.

Skills evaluated in this interview

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing ArrayYou have been given an integer array/list 'ARR' of size 'N'. Write a solution to check if it could become non-decreasing by modifying at most 1 element. We define an array as non-decreasing, if ARR[i] <= ARR[i + 1] ho... read more
View answer (6)

I applied via Referral and was interviewed before Apr 2020. There were 6 interview rounds.

Interview Questionnaire 

9 Questions

  • Q1. What is testing
  • Ans. 

    Testing is the process of evaluating a system or component to determine if it meets specified requirements.

    • Testing is done to identify defects or errors in software.

    • It involves executing a program or system with the intent of finding bugs.

    • Testing ensures that the software meets the desired quality standards.

    • It includes various techniques like functional testing, performance testing, etc.

    • Test cases are designed to cover...

  • Answered by AI
  • Q2. Types of testing
  • Ans. 

    Types of testing include functional, performance, security, usability, and compatibility testing.

    • Functional testing ensures that the software meets the specified requirements.

    • Performance testing checks the system's response time, scalability, and stability under different loads.

    • Security testing identifies vulnerabilities and ensures data protection.

    • Usability testing evaluates the user-friendliness and ease of use.

    • Compa...

  • Answered by AI
  • Q3. What is Seveority and priorities and how it is described with examples
  • Ans. 

    Severity and priority are terms used in software testing to prioritize and categorize defects.

    • Severity refers to the impact of a defect on the system or application under test.

    • Priority refers to the order in which defects should be fixed based on business needs.

    • Severity is usually categorized as high, medium, or low.

    • Priority is usually categorized as high, medium, or low as well.

    • Examples: A critical defect causing the ...

  • Answered by AI
  • Q4. Difference between smoke and sanity tesing
  • Ans. 

    Smoke testing is a subset of sanity testing. Smoke testing verifies basic functionality, while sanity testing checks for major issues.

    • Smoke testing is performed to ensure that the critical functionalities of the software are working fine after a build.

    • Sanity testing is performed to check if the major functionalities of the software are working as expected after a minor change or bug fix.

    • Smoke testing is a subset of san...

  • Answered by AI
  • Q5. What is SDLC and it's methodology with brief explanation
  • Ans. 

    SDLC stands for Software Development Life Cycle. It is a process followed to develop software applications.

    • SDLC is a structured approach that consists of various phases such as requirements gathering, design, development, testing, deployment, and maintenance.

    • It provides a framework for the development team to plan, build, and deliver high-quality software.

    • There are different SDLC methodologies like Waterfall, Agile, an...

  • Answered by AI
  • Q6. What is STLC
  • Ans. 

    STLC stands for Software Testing Life Cycle. It is a process followed to ensure the quality of a software product.

    • STLC is a systematic approach to testing software applications.

    • It consists of various phases such as requirement analysis, test planning, test design, test execution, and test closure.

    • Each phase has specific objectives and deliverables.

    • STLC helps in identifying defects early in the software development life...

  • Answered by AI
  • Q7. Explanation about bug life cycle
  • Ans. 

    Bug life cycle is the process of identifying, reporting, fixing, retesting, and closing a software bug.

    • Bug is identified by a tester during testing phase

    • Bug is reported with detailed information like steps to reproduce, expected and actual results

    • Bug is assigned to a developer for fixing

    • Developer fixes the bug and marks it as 'Fixed'

    • Tester retests the bug to verify if it is resolved

    • If the bug is not resolved, it is reo...

  • Answered by AI
  • Q8. Difference between agile and waterfall model
  • Ans. 

    Agile and waterfall models are two different approaches to software development.

    • Agile is an iterative and flexible approach, while waterfall is a sequential and rigid approach.

    • Agile focuses on delivering working software in short iterations, while waterfall follows a linear process.

    • Agile encourages collaboration and adaptability, while waterfall emphasizes planning and documentation.

    • Agile allows for changes and feedbac...

  • Answered by AI
  • Q9. Write test cases for anything
  • Ans. 

    Test cases for a login page

    • Verify login with valid credentials

    • Verify login with invalid credentials

    • Verify login with empty username and password fields

    • Verify login with only username field filled

    • Verify login with only password field filled

    • Verify login with special characters in username and password fields

    • Verify login with maximum length of username and password fields

    • Verify login with minimum length of username and pa

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear with explanation and do not get panic at any point of view. Try to answer as much possible even if candidate having communication prob. They are calculate our skills , not our communication as priority

Skills evaluated in this interview

Top Protechsoft Technologies Manual Testing Interview Questions and Answers

Q1. What is Seveority and priorities and how it is described with examples
View answer (2)

Manual Testing Interview Questions asked at other Companies

Q1. A man have 3 things [grain,chicken and fox] and he has to cross a river and he can carry only one thing at a time. And there are some conditions: 1.He can not leave grain and chicken at a place. 2.He can not leave chicken and fox together. ... read more
View answer (3)

Protechsoft Technologies Interview FAQs

How many rounds are there in Protechsoft Technologies interview?
Protechsoft Technologies interview process usually has 2-3 rounds. The most common rounds in the Protechsoft Technologies interview process are Coding Test, Technical and HR.
How to prepare for Protechsoft Technologies 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 Protechsoft Technologies. The most common topics and skills that interviewers at Protechsoft Technologies expect are Java, OOAD, OOPS, SQL and Angular.
What are the top questions asked in Protechsoft Technologies interview?

Some of the top questions asked at the Protechsoft Technologies interview -

  1. What is Seveority and priorities and how it is described with examp...read more
  2. Write a program for different types of books( Paperbook,E-book,Audiobook) using...read more
  3. What is SDLC and it's methodology with brief explanat...read more
How long is the Protechsoft Technologies interview process?

The duration of Protechsoft Technologies interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Protechsoft Technologies Interview Process

based on 31 interviews

Interview experience

3.6
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 792 Interviews
View all

Protechsoft Technologies Reviews and Ratings

based on 38 reviews

3.9/5

Rating in categories

3.8

Skill development

3.8

Work-life balance

3.6

Salary

4.1

Job security

3.6

Company culture

3.8

Promotions

3.7

Work satisfaction

Explore 38 Reviews and Ratings
Software Engineer
30 salaries
unlock blur

₹2 L/yr - ₹7 L/yr

Softwaretest Engineer
22 salaries
unlock blur

₹2.5 L/yr - ₹5.8 L/yr

Software Developer
14 salaries
unlock blur

₹3.5 L/yr - ₹9.6 L/yr

Test Engineer
13 salaries
unlock blur

₹2.6 L/yr - ₹6.7 L/yr

HR Executive
11 salaries
unlock blur

₹2 L/yr - ₹4.7 L/yr

Explore more salaries
Compare Protechsoft Technologies with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

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