Upload Button Icon Add office photos

Filter interviews by

PARK INTELLI SOLUTIONS Software Developer Interview Questions and Answers

Updated 7 Apr 2023

PARK INTELLI SOLUTIONS Software Developer Interview Experiences

1 interview found

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

I applied via Walk-in and was interviewed in Mar 2023. There were 2 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 - One-on-one 

(2 Questions)

  • Q1. Different Between compier
  • Ans. 

    Compilers are software programs that translate source code into machine code.

    • Compilers are used to convert high-level programming languages into machine code.

    • There are different types of compilers such as source-to-source compilers, just-in-time compilers, and ahead-of-time compilers.

    • Examples of popular compilers include GCC, Clang, and Visual C++.

  • Answered by AI
  • Q2. What is portion value
  • Ans. 

    Portion value refers to the amount of a particular food item that is considered a serving size.

    • Portion value is important for maintaining a healthy diet and managing calorie intake.

    • It varies depending on the food item and can be measured in different units such as grams, cups, or pieces.

    • For example, a portion value of broccoli is typically one cup, while a portion value of chicken breast is around 3 ounces.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Get prepared before going for interview because if you can clear round one then you will have confidence to clear next

Software Developer Jobs at PARK INTELLI SOLUTIONS

View all

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 Anna University and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. It consists of MCQ question related to oops,SQL
Round 2 - Group Discussion 

General topics were given

Round 3 - HR 

(1 Question)

  • Q1. The HR was friendly and I was asked to write code for sorting , then about my project

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with basic questions related to oops, SQL
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Read java oops and basiscs of spring well, and if you had done thesis there can be questions on that
  • Q2. Lambda expressions
  • Q3. Stream filtering
Round 2 - HR 

(1 Question)

  • Q1. Why are you looking for job change
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Hexaware was came to our college placement and our placement staff gave us 3 days coding training and aptitude training and the first round round is aptitude it was a online mcq type you have to pass the aptitude inorder to attend the round 2

Round 2 - Coding Test 

Coding test was based on DSA

Interview Preparation Tips

Interview preparation tips for other job seekers - PREPARE FOR APTITUDE AND HAVE A GOOD KNOWLEDGE IN CODING AND DSA
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Profit loss, blood relation, coding decoding, logical reasoning

Round 2 - Coding Test 

2 automata code
1) Array based
2)String based

Round 3 - Technical 

(1 Question)

  • Q1. Totally asked CS fundamentals like DBMS, OS, CN and OOPM then solved 1 DSA question which is related to string
Round 4 - HR 

(1 Question)

  • Q1. Just ask only behavioural questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Just focus on DSA string arrays and keep learning CS fundamentals
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I was interviewed in Nov 2022.

Round 1 - Aptitude Test 

An aptitude test is a way for employers to assess a candidates abilities through a variety of different testing formats

Round 2 - HR 

(2 Questions)

  • Q1. An interview that typically conducted by a human resources generalist at the beginning of the hiring process
  • Q2. While the HR interview gets a bad reputation for being a formality

Interview Preparation Tips

Interview preparation tips for other job seekers - Fight for happiness
Learn something new every day
Market yourself

I applied via Company Website and was interviewed in Oct 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Simple technical maths calculations,

Round 2 - Coding Test 

Writing a Jawa coding in small projects

Interview Preparation Tips

Topics to prepare for Sutherland Global Services Software Developer interview:
  • Core Java
  • SQL
  • C
Interview preparation tips for other job seekers - Hr interview
Face to face interview
Tell about my education details

I applied via Campus Placement and was interviewed in Aug 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Programming,verbal vebility,logical learning

Interview Preparation Tips

Interview preparation tips for other job seekers - i feel very good in both rounds.but secound round i exams is difficults copare to first round.

I was interviewed in Oct 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Test was active from 28th September 8 PM till 2 AM (29th September’20). We could attempt at any time. 
1.5 Hr Duration
Two coding questions.

  • Q1. Cycle Detection In Undirected Graph

    You have been given an undirected graph with 'N' vertices and 'M' edges. The vertices are labelled from 1 to 'N'.

    Your task is to find if the g...

  • Ans. DFS Approach (Slow)

    There is a cycle in the graph only if there is a back edge (back edge is an edge that connects a vertex to another vertex that is discovered before it's parent) present in the graph. To detect a back edge, we will keep track of vertices that have been already visited. If we reach a vertex that is already visited and is not the parent vertex of the current vertex, then there is a cycle in the graph.&n...

  • Answered by CodingNinjas
  • Q2. Find Number of Islands

    You are given a 2-dimensional array/list having N rows and M columns, which is filled with ones(1) and zeroes(0). 1 signifies land, and 0 signifies water.

    A cell is said to be conn...

  • Ans. Flood Fill Algorithm

    We can use the flood fill algorithm to check for all connected 1s.

     

    • We create two arrays, dx, and dy, in which we store the unit vectors for all eight directions. Thus, when we are at a given cell, we can easily check for all its adjacent cells by simply looping over the two arrays, adding their values to the current position, and checking for this new position recursively.
    • We will also create a ...
  • Answered by CodingNinjas
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

Online video call round on Microsoft Teams
Interviewer was very friendly.
This round is often called Domain Discussion Round.

  • Q1. Longest Repeating Substring

    You are given a string 'STR' consisting of lowercase English alphabet letters. You can perform at most 'K' operations on this string. In one operation, you can c...

  • Ans. Brute Force

    In this approach, we will consider every substring and check if it can be the longest repeating substring. Let’s say we have a variable ‘longestSubstring’ that stores the length of the longest repeating substring.
     

    We can convert a substring into a repeating substring if, (L - MX) <= K (where ‘L’ is the length of substring and ‘MX’ is the count of the character which occurs maximum times in this subst...

  • Answered by CodingNinjas
Round 3 - HR 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

One hour HR round.
Also called Core Values Interview.
The Interviewer was a senior level employee and was very friendly.

  • Q1. Resume based questions
  • Ans. 

    You should know everything you have mentioned in your resume. I you are not confident about a topic, don't mention it on your resume.

  • Answered by CodingNinjas
  • Q2. Behavioural Questions
  • Ans. 

    I would advise you to look up the most commonly asked behavioral questions in the interview and the STAR method to approach these types of questions.

    Do not mug up answers to these questions, but instead come up with your own situations that you dealt with while doing internships/projects etc.

    For questions like "Tell me about your weakness or Tell me about a time you messed up" do not say I don't have any weaknesses or ...

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in GurgaonEligibility criteriaAbove 6.5 GPA, CS and Allied StreamsPublicis Sapient interview preparation:Topics to prepare for the interview - DS/ALGO, Competitive Programming, OS, DBMS, SQL Queries, Computer Networks BasicsTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Interview is more like a two-way discussion rather than a question-answer session, feel free to ask for help/hints if you're stuck. 
Tip 2 : Even if you don't know the solution to the problem just try to work out a naive solution. You can optimize it later. 
Tip 3 : Make sure to read out the interview experiences of other people who have applied for the same role/company in the past

Application resume tips for other job seekers

Tip 1: Keep it concise and to the point.
Tip 2: Don't forget to show your best achievements

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. Tr1- difference between switch case and if else, write the code for sorting
  • Ans. 

    Switch case is used for multiple conditions while if else is for binary conditions. Sorting can be done using various algorithms.

    • Switch case is faster than if else for multiple conditions

    • If else is more readable for binary conditions

    • Sorting can be done using bubble sort, insertion sort, quick sort, etc.

    • Example code for bubble sort: for(i=0;iarr[j+1]){swap(&arr[j],&arr[j+1]);}}}

  • Answered by AI
  • Q2. Tr2-difference between compiler and interpreter, Solve a challange on their own coding platform with proper output
  • Ans. 

    Difference between compiler and interpreter with a coding challenge

    • Compiler translates the entire code into machine language before execution while interpreter translates line by line during execution

    • Compiler generates an executable file while interpreter does not

    • Compiler is faster but debugging is harder while interpreter is slower but debugging is easier

    • Coding challenge: Write a program to find the sum of two numbers

  • Answered by AI
  • Q3. Oops concept

PARK INTELLI SOLUTIONS Interview FAQs

How many rounds are there in PARK INTELLI SOLUTIONS Software Developer interview?
PARK INTELLI SOLUTIONS interview process usually has 2 rounds. The most common rounds in the PARK INTELLI SOLUTIONS interview process are Resume Shortlist and One-on-one Round.
How to prepare for PARK INTELLI SOLUTIONS Software Developer 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 PARK INTELLI SOLUTIONS. The most common topics and skills that interviewers at PARK INTELLI SOLUTIONS expect are AWS, Client Support, Clinical SAS Programming, Cloud Computing and Deployment.
What are the top questions asked in PARK INTELLI SOLUTIONS Software Developer interview?

Some of the top questions asked at the PARK INTELLI SOLUTIONS Software Developer interview -

  1. What is portion va...read more
  2. Different Between comp...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 PARK INTELLI SOLUTIONS interview
WalkIn
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
PARK INTELLI SOLUTIONS Software Developer Salary
based on 5 salaries
₹4 L/yr - ₹9.9 L/yr
25% less than the average Software Developer Salary in India
View more details
Appraisal Analyst
113 salaries
unlock blur

₹1.5 L/yr - ₹4.2 L/yr

Executive Appraisal Administrator
10 salaries
unlock blur

₹2.2 L/yr - ₹3 L/yr

Quality Analyst
8 salaries
unlock blur

₹5 L/yr - ₹6.5 L/yr

Team Lead
6 salaries
unlock blur

₹3.4 L/yr - ₹9.2 L/yr

Research Analyst
6 salaries
unlock blur

₹1.5 L/yr - ₹2.2 L/yr

Explore more salaries
Compare PARK INTELLI SOLUTIONS with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview