Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Procol Team. If you also belong to the team, you can get access from here

Procol Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Procol Software Developer Intern Interview Questions, Process, and Tips

Updated 16 Sep 2021

Procol Software Developer Intern Interview Experiences

1 interview found

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

The test consists of 2 sections: MCQ’s and 3 coding questions. It was a 90 minutes test, which could be started anytime between the time window of 2 hrs (In my case window was open from 4 PM to 6 PM). The test was proctored and any suspicious activity would have cancelled our test.

  • Q1. 

    Game of Dominoes Problem Statement

    Rafiq loves to play with piles of dominoes, especially when they are of equal heights. His father gifted him 'N' piles of dominoes, each with a positive number of stacke...

  • Q2. 

    String Ka Khel Problem Statement

    Ninja is creating a new game ‘String Ka Khel’ for his gaming shop. In this game, players are given ‘N’ strings. The objective is to find the maximum length of strings that...

  • Q3. 

    Minimum Operations to Equalize Array

    Given an integer array ARR of length N where ARR[i] = (2*i + 1), determine the minimum number of operations required to make all the elements of ARR equal. In a single...

Round 2 - Video Call 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

It was a 60 minutes video call round held on Google Meet.The Interviewer was very helpful.

  • Q1. 

    Power of a Number Problem

    You are given two integers, X and N. Your task is to compute the value of X raised to the power of N (i.e., X^N).

    Input:

    The first line contains an integer T, the number of tes...
  • Q2. 

    Implement Stack with Linked List

    Your task is to implement a Stack data structure using a Singly Linked List.

    Explanation:

    Create a class named Stack which supports the following operations, each in O(1...

  • Q3. 

    Pair Sum Problem Statement

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

    Note:
    ...
Round 3 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Search in Infinite Sorted 0-1 Array Problem Statement

    You are provided with an infinite sorted array that consists exclusively of 0s followed by 1s. Your task is to determine the index of the first occurr...

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from JAYPEE INSTITUTE OF INFORMATION TECHNOLOGY. I applied for the job as SDE - Intern in NoidaEligibility criteria6 CGPAProcol interview preparation:Topics to prepare for the interview - Data Structures, OOPS, Operating system, Databases, Javascript, NodeJs, ReactTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Do at least two good projects relevant to the company and role applying for.
Tip 2 : Always read the job description carefully and do some research about the company
Tip 3 : Have a good knowledge of Computer Science fundamentals.

Application resume tips for other job seekers

Tip 1 : Include some relevant skills required in the job description.
Tip 2 : Make a single-page resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via campus placement at Government College of Engineering, Aurangabad and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Mostly questions on logical aptitude

Round 2 - Technical 

(3 Questions)

  • Q1. DSA questions. Reverse word of string, bubble sort, swap two variables without use of third variable
  • Q2. OOPs concepts also some questions on project
  • Q3. 1 puzzle (refer gfg)
Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to work at our company?
  • Q2. What was the toughest challenge you have ever faced?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Let var const difference
  • Ans. 

    var, let, and const are all used to declare variables in JavaScript, but they have different scopes and mutability.

    • var is function-scoped and can be redeclared and reassigned

    • let is block-scoped and can be reassigned but not redeclared

    • const is block-scoped and cannot be reassigned or redeclared

  • Answered by AI
  • Q2. Polyfills of bind method
  • Ans. 

    Polyfills of bind method provide a way to use the bind method in older browsers that do not support it natively.

    • Polyfill code typically checks if the bind method is available and if not, it creates a new function that mimics the behavior of bind.

    • One common polyfill for the bind method is the following: Function.prototype.bind = Function.prototype.bind || function() { // polyfill code here };

    • Polyfills are often used to ...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Make a search bar in React
  • Ans. 

    Create a search bar component in React for filtering data

    • Create a functional component for the search bar

    • Use state to store the search query

    • Implement a onChange event handler to update the search query

    • Filter the data based on the search query

  • Answered by AI
  • Q2. React js core concepts
Round 3 - HR 

(2 Questions)

  • Q1. How you structure your work
  • Ans. 

    I structure my work by breaking down tasks, setting priorities, creating timelines, and regularly reviewing progress.

    • Break down tasks into smaller, manageable chunks

    • Set priorities based on deadlines and importance

    • Create timelines to track progress and ensure timely completion

    • Regularly review progress and adjust plans as needed

  • Answered by AI
  • Q2. How you make a project from scratch
  • Ans. 

    To make a project from scratch, start by defining requirements, creating a plan, designing the architecture, implementing the code, testing, and deploying.

    • Define project requirements and goals

    • Create a project plan with timelines and milestones

    • Design the architecture of the project, including database schema and system components

    • Implement the code following best practices and coding standards

    • Test the project thoroughly ...

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Lazy loading in react
  • Q2. Cache bursting
  • Q3. Difference between == and ===

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic of react and redux
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Promises in javascript
  • Ans. 

    Promises in JavaScript are objects representing the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations in JavaScript.

    • They can be in one of three states: pending, fulfilled, or rejected.

    • Promises can be chained using .then() to handle success and .catch() to handle errors.

  • Answered by AI

Skills evaluated in this interview

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

I applied via campus placement at National Institute of Engineering (NIE) and was interviewed in Apr 2024. There were 4 interview rounds.

Round 1 - Coding Test 

2 questions, Easy and medium based

Round 2 - Technical 

(1 Question)

  • Q1. Stacks queues and array questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Technical questions on projects
Round 4 - HR 

(1 Question)

  • Q1. How to tackle any uncertain situations? Behavioural questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

General MCQ questions for react js

Round 2 - Coding Test 

It was the coding test for the interview

Junior Software Engineer Interview Questions & Answers

LogiNext Solutions user image Omkar Darbeshawar (Indian Yogi Star)

posted on 1 Feb 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. They check your knowledge according to job role
  • Q2. I have prepared python, big data tech, machine learning, cloud.
  • Q3. They ask about data structure
Round 2 - HR 

(2 Questions)

  • Q1. Tell me something about past experience.
  • Q2. About your self

Interview Preparation Tips

Interview preparation tips for other job seekers - nice interview
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Assignment 

Assignment Round - Complete the assignment within 3 days.

Round 3 - Technical 

(2 Questions)

  • Q1. About the projects in detail?
  • Q2. Python and Django - Basic to advanced questions. Python : 1. Sorting 2. Sum of index equals to X arr = [1, 2, 2, 1, 6] x = 3 [(1,2) (2,1)] Django : 1. Celery 2. Signal 3. Mid...
Round 4 - One-on-one 

(1 Question)

  • Q1. Manager Round. About projects. Quation related AWS Redis

Interview Preparation Tips

Interview preparation tips for other job seekers - Confidence is key to success.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Vellore Institute of Technology (VIT) and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Implement cache in the given architecture where read and write both are pretty frequent. What are the cache eviction mechanisms and which one should we follow here ?
  • Q2. Rotten oranges - leetcode graph question

Tell us how to improve this page.

Software Engineer
9 salaries
unlock blur

₹8 L/yr - ₹15 L/yr

Customer Success Specialist
8 salaries
unlock blur

₹4.9 L/yr - ₹6 L/yr

Senior Customer Success Specialist
7 salaries
unlock blur

₹5.5 L/yr - ₹7.2 L/yr

Customer Success Manager
7 salaries
unlock blur

₹5.5 L/yr - ₹12.5 L/yr

Software Developer
6 salaries
unlock blur

₹10 L/yr - ₹18 L/yr

Explore more salaries
Compare Procol with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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