Upload Button Icon Add office photos

Filter interviews by

Protex Computer Software Developer Interview Questions, Process, and Tips

Updated 18 Jun 2024

Protex Computer Software Developer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Assignment 

Asked to write java MVC architecture and asked question on it.

Round 2 - Technical 

(6 Questions)

  • Q1. Give collection framework overview. Why should we use list over other collection methodologies?
  • Ans. 

    Collection framework provides interfaces and classes to store and manipulate groups of objects. Lists are preferred for ordered collections.

    • Lists maintain insertion order and allow duplicates

    • Lists provide indexed access to elements

    • Lists are suitable for scenarios where elements need to be accessed by index or need to be inserted/removed frequently

  • Answered by AI
  • Q2. Tell me about the JDK. Is Java runs on JDK or any other tool is required? Explain why?
  • Ans. 

    JDK stands for Java Development Kit. Java runs on JDK and no other tool is required.

    • JDK is a software development kit used for developing Java applications.

    • It includes tools such as Java compiler, JRE, and other development tools.

    • Java runs on JDK as it provides all the necessary tools and libraries for compiling, debugging, and running Java programs.

  • Answered by AI
  • Q3. Do you know JSP? Explain the lifecycle of JSP?
  • Ans. 

    Yes, JSP stands for JavaServer Pages. It is a technology used to create dynamic web pages.

    • JSP lifecycle includes translation, compilation, initialization, execution, and destruction phases.

    • During translation phase, JSP engine generates a servlet from the JSP page.

    • Compilation phase involves compiling the generated servlet into bytecode.

    • Initialization phase initializes the servlet, including calling the init() method.

    • Exe...

  • Answered by AI
  • Q4. Do you know struts? How do we use struts with Java?
  • Ans. 

    Struts is a framework used for developing Java web applications.

    • Struts is a framework that implements the Model-View-Controller (MVC) design pattern.

    • It provides a set of JSP custom tags to help developers create interactive web applications.

    • Struts configuration is typically done using XML files.

    • Struts actions are Java classes that handle requests from the user and interact with the model.

    • Struts is often used in combina...

  • Answered by AI
  • Q5. Do you have any idea of SQL? What is DDL and DML in SQL? Explain with example.
  • Ans. 

    Yes, SQL is a standard language for managing databases. DDL is for defining structure, DML is for manipulating data.

    • DDL stands for Data Definition Language and is used to define the structure of database objects like tables, indexes, etc.

    • DML stands for Data Manipulation Language and is used to manipulate data in the database like inserting, updating, deleting records.

    • Example of DDL: CREATE TABLE Employees (ID INT, Name...

  • Answered by AI
  • Q6. What are the different type of joins? Why we use joins and how?
  • Ans. 

    Different types of joins in SQL are inner join, left join, right join, and full outer join.

    • Inner join: Returns rows when there is at least one match in both tables.

    • Left join: Returns all rows from the left table and the matched rows from the right table.

    • Right join: Returns all rows from the right table and the matched rows from the left table.

    • Full outer join: Returns rows when there is a match in one of the tables.

    • Join...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Protex Computer Software Developer interview:
  • Java, SQL
Interview preparation tips for other job seekers - You need at least one year of work experience.

Skills evaluated in this interview

Interview questions from similar companies

I applied via Company Website and was interviewed before Sep 2021. There were 4 interview rounds.

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

Logical Aptitude, Verbal, Numerical

Round 3 - Coding Test 

2 codes one small and easy , another big and medium difficultly

Round 4 - Behavioral 

(2 Questions)

  • Q1. Introduction , Academic Project,
  • Q2. Coding Questions, Company Related Questions

Interview Preparation Tips

Topics to prepare for TCS Software Developer interview:
  • Coding
Interview preparation tips for other job seekers - In aptitude focus on Logical and Verbal aptitude and work on projects and coding skills

Interview Questionnaire 

2 Questions

  • Q1. Python
  • Q2. Webdevelopment

Interview Questionnaire 

1 Question

  • Q1. Some basic programming and technical questions of python

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well ! :) All the best

I appeared for an interview before Jul 2021.

Round 1 - Aptitude Test 

This will be a general apptitude test where a questionnaire is consist of reasoning, English and Maths questions

Round 2 - One-on-one 

(3 Questions)

  • Q1. Tell us about yourself
  • Q2. What do you know about our company
  • Q3. Where do you see yourself in the next 5 years

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare yourself for general apptitude. And for interview one-on-one, Stay calm and focused. Just be yourself, know you gonna provide to the company

I applied via Naukri.com and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. How to check Java version?
  • Ans. 

    To check Java version, use command prompt/terminal and type 'java -version'.

    • Open command prompt/terminal

    • Type 'java -version'

    • Press enter

    • The installed Java version will be displayed

  • Answered by AI
  • Q2. What is the syntax of the main method?
  • Ans. 

    The main method syntax is a standard entry point for Java programs.

    • The main method must be declared as public, static, and void.

    • The method name must be 'main'.

    • The method must accept an array of strings as an argument.

    • The method must be defined within a class.

    • Example: public static void main(String[] args) { }

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go by yourself.
Look professional. Dress in a manner appropriate to the job.
Bring your sense of humor and smile🙂.
Maintain eye contact.
Display confidence during the interview .

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Apr 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Are you willing to relocate?
  • Q2. Why should I hire you?

Interview Preparation Tips

Interview preparation tips for other job seekers - My technical and Hr interview done at same place. It lasted about 40minutes. The interviewer test both my technical knowledge and communication skills. I tell most of the answer. They check patience level.He stressed on my final year project . Asking about range and specification of compotents which I heve used in my project. Finally ask some HR questions.

I appeared for an interview before Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 180 Minutes
Round difficulty - Medium

The test was started in the evening 4pm approx.
It was flexible due to Corona so we gave the test from our home only.
It had listening skill activity too according to which we were marked .
Interviewer was very supportive because of which it was easier for us to open up easily .

  • Q1. 

    Arithmetic Expression Evaluation Problem Statement

    You are provided with a string expression consisting of characters '+', '-', '*', '/', '(', ')' and digits '0' to '9', representing an arithmetic express...

  • Ans. 

    Evaluate arithmetic expressions in infix notation with given operators and precedence rules.

    • Parse the infix expression to postfix using a stack and then evaluate the postfix expression using another stack

    • Use a stack to keep track of operators and operands while parsing the expression

    • Handle operator precedence and associativity rules while converting to postfix and evaluating the expression

  • Answered by AI
  • Q2. 

    Valid Parentheses Problem Statement

    Given a string 'STR' consisting solely of the characters “{”, “}”, “(”, “)”, “[” and “]”, determine if the parentheses are balanced.

    Input:

    The first line contains an...
  • Ans. 

    The task is to determine if a given string of parentheses is balanced or not.

    • Iterate through the characters of the string and use a stack to keep track of opening parentheses.

    • When encountering an opening parenthesis, push it onto the stack. When encountering a closing parenthesis, check if it matches the top of the stack.

    • If the stack is empty at the end or there are unmatched parentheses, the string is not balanced.

    • Exa...

  • Answered by AI
Round 2 - HR 

(1 Question)

Round duration - 20 Minutes
Round difficulty - Medium

Interview

  • Q1. 

    Reverse Number Problem Statement

    Ninja is exploring new challenges and desires to reverse a given number. Your task is to assist Ninja in reversing the number provided.

    Note:

    If a number has trailing ze...

  • Ans. 

    Implement a function to reverse a given number, omitting trailing zeros.

    • Create a function that takes an integer as input and reverses it while omitting trailing zeros

    • Use string manipulation to reverse the number and remove any trailing zeros

    • Handle test cases where the number has leading zeros as well

    • Ensure the reversed number is printed for each test case on a new line

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaCGPA above 6.5 and no active backlogsAccenture interview preparation:Topics to prepare for the interview - Oops, dmbs, rdbms, mysql, SDLC, projects, data structure and basic electronics.Time required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : confidence is the key.
Tip 2 : focus on communication skills.
Tip 3 : be honest and well prepared about your projects and trainings .

Application resume tips for other job seekers

Tip 1 : it should be to the point.
Tip 2 : be honest. And one should know everything that is written down there.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Referral and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Puzzles, Psychometric Test

Round 2 - One-on-one 

(1 Question)

  • Q1. Some water in 3 Jars question, you had to measure out 5L correctly

Interview Preparation Tips

Interview preparation tips for other job seekers - Make the interview interactive, I got this input from another Senior. Before i went into the interview room the volunteers were telling all those who goes into Room No 1 is screwed. I was praying i don't get room no 1. But fortunately for me I got room no 1 because when the interviewer gave me the puzzle and handed over pen and paper he went back to relax his posture and when i explained i will fill the 5L Jar first, he immediately came forward to listen to me, at that moment i knew i got the job because i felt the previous candidates never made their interview interactive and that's why he went back to relax his posture.

I applied via Recruitment Consulltant and was interviewed before Aug 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Java. Spring boot, micro service, hibernate
Round 2 - HR 

(1 Question)

  • Q1. Salary, technical, company details

Interview Preparation Tips

Topics to prepare for Accenture Software Developer interview:
  • Java
  • Spring Boot
  • Micro service
  • Hibernate
  • JSP
Interview preparation tips for other job seekers - Java, spring boot, micro service, hibernate

Protex Computer Interview FAQs

How many rounds are there in Protex Computer Software Developer interview?
Protex Computer interview process usually has 2 rounds. The most common rounds in the Protex Computer interview process are Assignment and Technical.
What are the top questions asked in Protex Computer Software Developer interview?

Some of the top questions asked at the Protex Computer Software Developer interview -

  1. Give collection framework overview. Why should we use list over other collectio...read more
  2. Do you know struts? How do we use struts with Ja...read more
  3. Do you have any idea of SQL? What is DDL and DML in SQL? Explain with examp...read more

Tell us how to improve this page.

Protex Computer Software Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Protex Computer Software Developer Salary
based on 19 salaries
₹1.7 L/yr - ₹6 L/yr
61% less than the average Software Developer Salary in India
View more details

Protex Computer Software Developer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

1.0

Salary

2.0

Job security

3.0

Company culture

1.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
60 salaries
unlock blur

₹2.2 L/yr - ₹5 L/yr

Software Developer
19 salaries
unlock blur

₹1.7 L/yr - ₹6 L/yr

Junior Software Engineer
15 salaries
unlock blur

₹1.8 L/yr - ₹3 L/yr

Plsql Developer
9 salaries
unlock blur

₹1.5 L/yr - ₹3.5 L/yr

Database Admin
8 salaries
unlock blur

₹6.8 L/yr - ₹9 L/yr

Explore more salaries
Compare Protex Computer with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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