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

17 Interview questions

A SQL Developer was asked 12mo ago
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 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 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
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
A Manual Testing was asked
Q. What are severity and priority in testing, and how are they 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...

View all Manual Testing interview questions
A Manual Testing was asked
Q. What are the differences between the agile and waterfall models?
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 fe...

View all Manual Testing interview questions
Are these interview questions helpful?
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 SDLC and its methodology? Explain briefly.
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, Agil...

View all Manual Testing interview questions
A Manual Testing was asked
Q. What is the difference between smoke testing and sanity testing?
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 o...

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++
  • 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.

  • Answered by AI
Round 3 - HR 

(2 Questions)

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

    I enjoy problem-solving, learning new technologies, and collaborating with team members.

    • I like working on challenging projects that require creative solutions

    • I enjoy staying up-to-date with the latest advancements in technology

    • I appreciate the opportunity to work with a diverse team and learn from their perspectives

  • Answered by AI

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 Tips & Stories
1w (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 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 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.

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 Similar Companies

Cognizant Interview Questions
3.7
 • 5.9k Interviews
EXL Service Interview Questions
3.7
 • 805 Interviews
Nagarro Interview Questions
4.0
 • 793 Interviews
Publicis Sapient Interview Questions
3.5
 • 645 Interviews
GlobalLogic Interview Questions
3.6
 • 628 Interviews
UST Interview Questions
3.8
 • 544 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
Software Engineer
26 salaries
unlock blur

₹3.1 L/yr - ₹7.7 L/yr

Softwaretest Engineer
25 salaries
unlock blur

₹2 L/yr - ₹6.1 L/yr

Software Developer
16 salaries
unlock blur

₹3.4 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

Cognizant

3.7
Compare

EXL Service

3.7
Compare

Optum Global Solutions

4.0
Compare

Hexaware Technologies

3.5
Compare
write
Share an Interview