Premium Employer

i

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

Filter interviews by

Perfios Software Solutions Senior Technical Team Member Interview Questions and Answers

Updated 3 Mar 2025

5 Interview questions

A Senior Technical Team Member was asked 4mo ago
Q. What is the implementation of a palindrome check in Java without using the reverse() function?
Ans. 

Implementing a palindrome check in Java without using the reverse() function.

  • Create a function that takes a string as input.

  • Use two pointers, one starting from the beginning of the string and the other from the end.

  • Compare characters at the two pointers and move them towards each other until they meet or cross.

  • If all characters match, the string is a palindrome.

  • Example: 'racecar' is a palindrome.

  • Example: 'hello' i...

A Senior Technical Team Member was asked 4mo ago
Q. Given an array, how can you rotate it by n positions?
Ans. 

Rotate an array of strings by n positions

  • Create a new array and copy elements from original array starting from index n to the end, then copy elements from index 0 to n-1

  • Alternatively, you can use array slicing to achieve the rotation

  • Example: Original array ['a', 'b', 'c', 'd', 'e'], rotate by 2 positions would result in ['c', 'd', 'e', 'a', 'b']

Senior Technical Team Member Interview Questions Asked at Other Companies

Q1. What is the implementation of a palindrome check in Java without ... read more
Q2. Given an array, how can you rotate it by n positions?
Q3. What is the algorithm to reverse a singly linked list?
Q4. How can you sort an array of 0s and 1s in Java without using a so ... read more
Q5. What is the difference between HTTP and HTTPS?
A Senior Technical Team Member was asked 4mo ago
Q. What is the algorithm to reverse a singly linked list?
Ans. 

The algorithm to reverse a singly linked list involves iterating through the list and changing the pointers to reverse the direction of the links.

  • Start with three pointers: current, previous, and next.

  • Iterate through the list, updating the next pointer to point to the previous node.

  • Move the previous pointer to the current node and the current pointer to the next node.

  • Continue until the end of the list is reached, ...

A Senior Technical Team Member was asked 4mo ago
Q. Explain the internal functioning of a hash map.
Ans. 

Hash map is a data structure that stores key-value pairs and uses a hash function to map keys to their corresponding values.

  • Hash map uses a hash function to determine the index of the key-value pair in the underlying array.

  • Collisions can occur when two keys hash to the same index, which can be resolved using techniques like chaining or open addressing.

  • Hash maps offer constant time complexity O(1) for insertion, de...

A Senior Technical Team Member was asked 4mo ago
Q. How can you sort an array of 0s and 1s in Java without using a sorting algorithm?
Ans. 

Use counting method to sort array of strings with 0's and 1's.

  • Create a count array to store the frequency of 0's and 1's.

  • Update the original array based on the count array.

  • Example: Input array - ['0', '1', '0', '1', '1'], Output array - ['0', '0', '1', '1', '1']

Perfios Software Solutions Senior Technical Team Member Interview Experiences

1 interview found

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

I appeared for an interview in Feb 2025.

Round 1 - Technical 

(3 Questions)

  • Q1. Given an array, how can you rotate it by n positions?
  • Ans. 

    Rotate an array of strings by n positions

    • Create a new array and copy elements from original array starting from index n to the end, then copy elements from index 0 to n-1

    • Alternatively, you can use array slicing to achieve the rotation

    • Example: Original array ['a', 'b', 'c', 'd', 'e'], rotate by 2 positions would result in ['c', 'd', 'e', 'a', 'b']

  • Answered by AI
  • Q2. Prepare basic OOPS concepts
  • Q3. Last entry of a table in sql query
  • Ans. 

    Use ORDER BY and LIMIT to get last entry in SQL query

    • Use ORDER BY column_name DESC to sort in descending order

    • Use LIMIT 1 to get only the last entry

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Internal functioning of hash map
  • Ans. 

    Hash map is a data structure that stores key-value pairs and uses a hash function to map keys to their corresponding values.

    • Hash map uses a hash function to determine the index of the key-value pair in the underlying array.

    • Collisions can occur when two keys hash to the same index, which can be resolved using techniques like chaining or open addressing.

    • Hash maps offer constant time complexity O(1) for insertion, deletio...

  • Answered by AI
  • Q2. What is the implementation of a palindrome check in Java without using the reverse() function?
  • Ans. 

    Implementing a palindrome check in Java without using the reverse() function.

    • Create a function that takes a string as input.

    • Use two pointers, one starting from the beginning of the string and the other from the end.

    • Compare characters at the two pointers and move them towards each other until they meet or cross.

    • If all characters match, the string is a palindrome.

    • Example: 'racecar' is a palindrome.

    • Example: 'hello' is not...

  • Answered by AI
Round 3 - Behavioral 

(4 Questions)

  • Q1. Sorting arrays from 0's,1 in java , No sorting algorithm to be used Difficulty: Easy
  • Ans. 

    Use counting method to sort array of strings with 0's and 1's.

    • Create a count array to store the frequency of 0's and 1's.

    • Update the original array based on the count array.

    • Example: Input array - ['0', '1', '0', '1', '1'], Output array - ['0', '0', '1', '1', '1']

  • Answered by AI
  • Q2. Difference between HTTP vs HTTPS indication
  • Ans. 

    HTTPS provides secure communication over the internet using encryption, while HTTP does not.

    • HTTPS uses SSL/TLS encryption to secure data transmission, while HTTP does not.

    • HTTPS URLs begin with 'https://' and use port 443, while HTTP URLs begin with 'http://' and use port 80.

    • HTTPS ensures data integrity and authentication, while HTTP does not provide these security measures.

  • Answered by AI
  • Q3. What is the algorithm to reverse a singly linked list?
  • Ans. 

    The algorithm to reverse a singly linked list involves iterating through the list and changing the pointers to reverse the direction of the links.

    • Start with three pointers: current, previous, and next.

    • Iterate through the list, updating the next pointer to point to the previous node.

    • Move the previous pointer to the current node and the current pointer to the next node.

    • Continue until the end of the list is reached, then ...

  • Answered by AI
  • Q4. Write a SQL query for employee table having
  • Ans. 

    SQL query to retrieve data from employee table

    • Use SELECT statement to retrieve data

    • Specify the columns you want to retrieve

    • Use FROM clause to specify the table name

    • Add any conditions using WHERE clause if needed

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well-versed in the fundamental concepts of Object-Oriented Programming (OOP) and the technical principles relevant to your area of expertise.
Be interview-ready. Browse the most asked HR questions.
illustration image

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 Perfios Software Solutions?
Ask anonymously on communities.

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
More than 8 weeks
Result
-

I appeared for an interview before Apr 2024, where I was asked the following questions.

  • Q1. JavaScript logics
  • Q2. Angular structure
  • Q3. HTML and CSS use to make form
  • Ans. 

    HTML and CSS are essential for creating and styling web forms, enabling user input and interaction.

    • HTML provides the structure of the form using <form>, <input>, <label>, <textarea>, and <button> elements.

    • CSS is used to style the form elements, such as setting widths, margins, and colors.

    • Example of a simple form: <form><label for='name'>Name:</label><input type='text' ...

  • Answered by AI
Are these interview questions helpful?
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jul 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 - Technical 

(2 Questions)

  • Q1. What is javascript?
  • Ans. Javascript is used make the Web pages interactive and dynamic.
  • Answered Anonymously
  • Q2. Types of variable in JavaScript
  • Ans. 

    Types of variables in JavaScript include var, let, and const.

    • var: globally scoped or function scoped

    • let: block scoped, can be reassigned

    • const: block scoped, cannot be reassigned

  • Answered by AI

Skills evaluated in this interview

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

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Google photos system design
  • Ans. 

    Designing Google Photos involves scalable storage, efficient image processing, and user-friendly features for photo management.

    • Scalable Storage: Use cloud storage solutions like Google Cloud Storage to handle vast amounts of user-uploaded photos efficiently.

    • Image Processing: Implement algorithms for image compression and optimization to reduce storage costs and improve loading times.

    • User Authentication: Secure user acc...

  • Answered by AI
  • Q2. Javascript basic questions

Interview Preparation Tips

Interview preparation tips for other job seekers - NA
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Group Discussion 

Maintain a good communication to the hr

Round 2 - Technical 

(5 Questions)

  • Q1. Questions from your resume and projects
  • Q2. Difference between elements and tags
  • Q3. Uses of functions in js
  • Q4. Uses of get elementbyId in js
  • Ans. 

    getElementById is used in JavaScript to access and manipulate an element in the DOM by its unique ID.

    • Used to retrieve a specific element from the DOM by its ID

    • Allows for manipulation of the element's properties, styles, and content

    • Commonly used in event handling and dynamic content updates

  • Answered by AI
  • Q5. Typesof cssess ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident at what you have

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Jun 2020. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Basic oop
  • Q2. Previous projects and walktrough of one of the project, if any
  • Q3. Basic English test on a computer

Interview Preparation Tips

Interview preparation tips for other job seekers - The first step of the interview is the basic communication skills, which is taken on computer, try to listen carefully, most of the questions are only about what you have comprehend from the automated voice when played over.

OOP is very basic, they may ask some real life examples.

If you have worked previously, they may ask you about one of your projects. What technologies have you used ans why.

Interview Questionnaire 

1 Question

  • Q1. Oops programming,SQL server Database

I applied via Naukri.com and was interviewed in May 2019. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. How MVC works for data flow?
  • Ans. 

    MVC separates data flow into three components: Model, View, and Controller.

    • Model represents data and business logic

    • View displays data to the user

    • Controller handles user input and updates the model and view accordingly

    • Data flows from the model to the view through the controller

    • Changes in the view are communicated to the controller, which updates the model and view

  • Answered by AI
  • Q2. What are mvc layers
  • Ans. 

    MVC stands for Model-View-Controller. It is a software design pattern that separates an application into three interconnected components.

    • Model: Represents the data and business logic of the application

    • View: Displays the data to the user and handles user input

    • Controller: Acts as an intermediary between the Model and View, handling user input and updating the Model and View accordingly

  • Answered by AI
  • Q3. Get and post methods
  • Q4. Servlet life cycle

Interview Preparation Tips

Interview preparation tips for other job seekers - Do your homework for string data structures problems

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Machine Learning, statistics, PowerBI, Python

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic interview questions based on the skills mentioned in your resume.

I applied via Naukri.com and was interviewed in Dec 2020. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tech: Core Java concepts, difference between ArrayList and LinkedList, types of functional testing, CI/CD.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be clear and crisp with your answers. Have a complete clarity with your aspirations and role based responsibilities.

Perfios Software Solutions Interview FAQs

How many rounds are there in Perfios Software Solutions Senior Technical Team Member interview?
Perfios Software Solutions interview process usually has 3 rounds. The most common rounds in the Perfios Software Solutions interview process are Technical and Behavioral.
What are the top questions asked in Perfios Software Solutions Senior Technical Team Member interview?

Some of the top questions asked at the Perfios Software Solutions Senior Technical Team Member interview -

  1. What is the implementation of a palindrome check in Java without using the reve...read more
  2. Given an array, how can you rotate it by n positio...read more
  3. What is the algorithm to reverse a singly linked li...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
Join Perfios Software Solutions Lead with brilliance / Leap to outdo
Perfios Software Solutions Senior Technical Team Member Salary
based on 23 salaries
₹14 L/yr - ₹22.6 L/yr
At par with the average Senior Technical Team Member Salary in India
View more details

Perfios Software Solutions Senior Technical Team Member Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

1.0

Salary

4.0

Job security

5.0

Company culture

2.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Senior QA Engineer
72 salaries
unlock blur

₹9.7 L/yr - ₹15 L/yr

Data Processing Associate
59 salaries
unlock blur

₹1.9 L/yr - ₹3 L/yr

Software Development Engineer
57 salaries
unlock blur

₹8.1 L/yr - ₹15 L/yr

Software Developer
55 salaries
unlock blur

₹5.9 L/yr - ₹12 L/yr

Senior Software Development Engineer
54 salaries
unlock blur

₹11.1 L/yr - ₹28 L/yr

Explore more salaries
Compare Perfios Software Solutions with

Thomson Reuters

4.1
Compare

Oracle Cerner

3.6
Compare

Chetu

3.4
Compare

R Systems International

3.3
Compare
write
Share an Interview