Upload Button Icon Add office photos

Protechsoft Technologies

Compare button icon Compare button icon Compare

Filter interviews by

Protechsoft Technologies Interview Questions and Answers

Updated 11 Dec 2024
Popular Designations

20 Interview questions

A Java Developer was asked 11mo ago
Q. What are the differences between C and C++?
Ans. 

C is a procedural programming language, while C++ is an object-oriented programming language that is an extension of C.

  • C is a procedural programming language, focusing on functions and procedures.

  • C++ is an object-oriented programming language, allowing for classes, objects, and inheritance.

  • C++ is an extension of C, adding features like classes, templates, and exception handling.

View all Java Developer interview questions
A SQL Developer was asked
Q. Write an SQL query to find the third highest salary from an employee table.
Ans. 

To find the 3rd maximum salary, we can use SQL queries to filter and sort salary data effectively.

  • Use the DISTINCT keyword to avoid duplicate salaries: SELECT DISTINCT salary FROM employees.

  • Sort the salaries in descending order: SELECT DISTINCT salary FROM employees ORDER BY salary DESC.

  • Use LIMIT or FETCH to get the 3rd salary: SELECT DISTINCT salary FROM employees ORDER BY salary DESC LIMIT 1 OFFSET 2.

View all SQL Developer interview questions
A Softwaretest Engineer was asked
Q. Write a program to generate the Fibonacci sequence.
Ans. 

Program to generate Fibonacci series

  • Start with two variables initialized to 0 and 1

  • Loop through desired number of terms and calculate next term by adding previous two terms

  • Store each term in an array

  • Return the array of Fibonacci series

View all Softwaretest Engineer interview questions
A Java Developer was asked
Q. Write a program for different types of books (Paperback, E-book, Audiobook) using Inheritance Concept.
Ans. 

Program for different types of books using Inheritance Concept

  • Create a Book class as the parent class

  • Create Paperbook, E-book, and Audiobook classes as child classes

  • Inherit properties and methods from the Book class

  • Add unique properties and methods to each child class

  • Example: Paperbook class can have a property for number of pages

  • Example: E-book class can have a property for file format

View all Java Developer interview questions
A Java Developer was asked
Q. What is an 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 'makeSo...

View all Java Developer interview questions
A Front end Developer was asked
Q. What is the '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...

View all Front end Developer interview questions

Protechsoft Technologies HR Interview Questions

4 questions and answers

Q. What do you like?
Q. Tell me about yourself.
Q. Introduce yourself.
A Front end Developer was asked
Q. What is the 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' re...

View all Front end Developer interview questions
Are these interview questions helpful?
A Front end Developer was asked
Q. What is the 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

View all Front end Developer interview questions
A Manual Testing was asked
Q. Explain the 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 i...

View all Manual Testing interview questions
A Manual Testing was asked
Q. 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 ...

View all Manual Testing interview questions

Protechsoft Technologies Interview Experiences

26 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Only theory questions

Round 2 - Technical 

(2 Questions)

  • Q1. Final, Finally, Finalize questions
  • Q2. Abstract class questions
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Technical written test

Round 2 - Technical 

(2 Questions)

  • Q1. About the project
  • Q2. Difference between c,c++
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. What do you like

Interview Preparation Tips

Topics to prepare for Protechsoft Technologies Java Developer interview:
  • C++
Interview preparation tips for other job seekers - Good and friendly

Skills evaluated in this interview

SQL Developer Interview Questions & Answers

user image Divya Bharathi M

posted on 19 Jul 2024

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

I applied via Recruitment Consulltant and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Profit & loss, Distance & Time & Speed, S.I, C.I,...

Round 2 - Technical 

(2 Questions)

  • Q1. 3rd Maximum salary
  • Ans. 

    To find the 3rd maximum salary, we can use SQL queries to filter and sort salary data effectively.

    • Use the DISTINCT keyword to avoid duplicate salaries: SELECT DISTINCT salary FROM employees.

    • Sort the salaries in descending order: SELECT DISTINCT salary FROM employees ORDER BY salary DESC.

    • Use LIMIT or FETCH to get the 3rd salary: SELECT DISTINCT salary FROM employees ORDER BY salary DESC LIMIT 1 OFFSET 2.

  • Answered by AI
  • Q2. Subquery & joins related Questions
Round 3 - HR 

(2 Questions)

  • Q1. Introduce Yourself
  • Q2. Normalization, subquery, joins, Dml, ddl

Interview Preparation Tips

Topics to prepare for Protechsoft Technologies SQL Developer interview:
  • SQL
Interview preparation tips for other job seekers - Its a good Experience for everyone and use this every opportunities.

Java Developer Interview Questions & Answers

user image sundhar moorthy

posted on 11 Aug 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Company Website and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

A neat Aptitude test

Round 2 - Coding Test 

A medium DSA question.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well in core java.

Software Developer Interview Questions & Answers

user image Prithvi rajan 4144

posted on 11 Dec 2024

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

It was straightforward and could be resolved.

Round 2 - Coding Test 

The primary question focused on the concepts of object-oriented programming (OOP).

Java Programmer Interview Questions & Answers

user image Nithishkumar.R 53

posted on 19 Oct 2024

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Writen test from advance java
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Core java and oops concept definition

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

In test ask some datastruture question and core java question

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Java questions are asked which are difficult

Round 2 - Technical 

(1 Question)

  • Q1. String related questions
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

They asked basic questions in html, css, javascript

Round 2 - Technical 

(1 Question)

  • Q1. Basic question on html, css, javascript

Top trending discussions

View All
Interview Hub
1w (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about Protechsoft Technologies?
Ask anonymously on communities.

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 Aptitude Test.
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.

Overall Interview Experience Rating

3.6/5

based on 31 interview experiences

Difficulty level

Easy 18%
Moderate 73%
Hard 9%

Duration

Less than 2 weeks 80%
2-4 weeks 10%
4-6 weeks 10%
View more

Interview Questions from other companies in IT Services & Consulting Industry

Trigent Software Interview Questions
3.4
 • 72 Interviews
Tech Mahindra Interview Questions
3.5
 • 4.2k Interviews
VOIS Interview Questions
3.9
 • 162 Interviews
TCS Interview Questions
3.5
 • 11.3k Interviews
Tiger Analytics Interview Questions
3.7
 • 233 Interviews
ZeMoSo Technologies Interview Questions
3.5
 • 147 Interviews
View all

Protechsoft Technologies Reviews and Ratings

based on 38 reviews

3.9/5

Rating in categories

3.7

Skill development

3.8

Work-life balance

3.5

Salary

4.1

Job security

3.5

Company culture

3.8

Promotions

3.6

Work satisfaction

Explore 38 Reviews and Ratings
Softwaretest Engineer
25 salaries
unlock blur

₹2 L/yr - ₹6.1 L/yr

Software Engineer
24 salaries
unlock blur

₹3.1 L/yr - ₹7 L/yr

Software Developer
15 salaries
unlock blur

₹3.5 L/yr - ₹8 L/yr

Test Engineer
13 salaries
unlock blur

₹2.6 L/yr - ₹6.7 L/yr

Web Developer
7 salaries
unlock blur

₹3.2 L/yr - ₹8 L/yr

Explore more salaries
Compare Protechsoft Technologies with other companies in IT Services & Consulting Industry

Data Group

3.5
Compare

Avalon Information Systems

3.2
Compare

Gray Matrix

3.9
Compare

Sphere Info Solutions Private Limited

3.7
Compare
write
Share an Interview