Upload Button Icon Add office photos
Engaged 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

Perfios Software Solutions Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Perfios Software Solutions Senior Technical Team Member Interview Questions and Answers

Updated 3 Mar 2025

8 Interview questions

A Senior Technical Team Member was asked 3mo ago
Q. What is the difference between HTTP and HTTPS?
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.

A Senior Technical Team Member was asked 3mo 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...

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 3mo 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 3mo ago
Q. How do you retrieve the last entry of a table using an 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

A Senior Technical Team Member was asked 3mo 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']

A Senior Technical Team Member was asked 3mo 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']

A Senior Technical Team Member was asked 3mo 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, ...

Are these interview questions helpful?
A Senior Technical Team Member was asked 3mo ago
Q. Write a SQL query for an employee table.
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

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.

Top trending discussions

View All
Interview Tips & Stories
6d (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 Perfios Software Solutions?
Ask anonymously on communities.

Interview questions from similar companies

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

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?
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
  • Ans. 

    Elements are individual components of a web page, while tags are used to define the structure and appearance of elements.

    • Elements are the actual components on a web page, such as headings, paragraphs, images, etc.

    • Tags are used to define the structure and appearance of elements, such as <h1> for a heading or <p> for a paragraph.

    • Elements can have multiple tags associated with them, such as <a> for a lin...

  • Answered by AI
  • Q3. Uses of functions in js
  • Ans. 

    Functions in JavaScript are used to define reusable blocks of code that can be called multiple times.

    • Functions can be used to perform specific tasks or calculations.

    • Functions can be passed as arguments to other functions.

    • Functions can be assigned to variables or properties of objects.

    • Functions can be used to create closures for encapsulating data.

    • Functions can be used to create custom methods for objects.

  • Answered by AI
  • 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 ?
  • Ans. 

    There are three types of CSS: inline, internal, and external.

    • Inline CSS is applied directly to an HTML element using the style attribute.

    • Internal CSS is defined within the head section of an HTML document using the style tag.

    • External CSS is stored in a separate file and linked to the HTML document using the link tag.

  • Answered by AI

Interview Preparation Tips

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

Skills evaluated in this interview

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 a high-level, interpreted programming language that is used to make web pages interactive and dynamic.

    • JavaScript is commonly used for client-side web development.

    • It can be used to create interactive features like forms, animations, and dynamic content.

    • JavaScript can also be used for server-side development with Node.js.

  • Answered by AI
  • 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
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

I applied via Approached by Company and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - System test 

(1 Question)

  • Q1. Advantage and disadvantage of framework.
  • Ans. 

    Frameworks provide structure and pre-built components for software development, but can also limit flexibility and require learning curve.

    • Advantage: Provides structure and pre-built components for faster development

    • Advantage: Can improve code quality and maintainability

    • Disadvantage: Can limit flexibility and customization

    • Disadvantage: Requires learning curve and potential dependency issues

    • Example: ReactJS provides a fr...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What is Oops? Advantage and disadvantage
  • Ans. 

    Oops stands for Object-Oriented Programming. It is a programming paradigm that uses objects to represent real-world entities.

    • Advantages: code reusability, modularity, encapsulation, inheritance, polymorphism

    • Disadvantages: complexity, steep learning curve, performance overhead

    • Example: creating a class 'Car' with properties like 'make', 'model', and 'year', and methods like 'start_engine' and 'stop_engine'

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics in server side and client side coding

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Sep 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basic Oracle Architecture, RAC Setup, Golden Gate Troubleshooting, Data Guard recover, RMAN restoration

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on Day to Day activities and Oracle architecture
Are these interview questions helpful?

I applied via Company Website and was interviewed before Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Scrum
  • Q2. Agile

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be yourself

Interview Questionnaire 

2 Questions

  • Q1. Algorithm and Trick questions on Java
  • Q2. Your future interest, interaction capabilities

Interview Preparation Tips

Round: Resume Shortlist
Experience: Mention only those projects/works which you feel fully confident on, let any question be thrown your way.
Believe me, a simple project explained in a good way is better than a complex project that scares you going into the details.
Tips: A little bit of extra activities (sports/music) helps them picture you as not a total nerd, which might help in front of some interviewers.

Round: Interview
Experience: They will mostly try to trick you here, even if you are right, they will make you doubt yourself. It's just about believing oneself and answering in one go.
Tips: Stick to your answers if you feel it's right, changing it again and again won't do you much good.

Round: Interview
Experience: This is where you have to be most careful, what they seek is just your interest in the company or infact passion for their work and not leaving them mid-way for higher studies or startup plans.
Tips: Diverting talks to some extra-currics might help a lot here specially if they have interest in that too, like the one, I was giving interview to, was wearing a Barcelona cap and I had mentioned that I played football at Inter-Hostel level. So we talked about the recent Premier league for like 10 minutes and the mood was really lightened, thanks to that.

General Tips: It is never too late to be what you might have been.
Skills: Algorithms, Java, Interaction Skills, coding, C, C++
College Name: IIT DELHI
Motivation: The technology (Social-Media Management) they are working on is really interesting to know more about and can be a future pioneer in the coming days.
Funny Moments: One of the interviewer I became so friendly with, mid-way through the interview that we added each other right there on facebook.

Interview Preparation Tips

Round: Interview
Experience: They asked to write 2 codes on recursion. Then some questions on resume. I asked them about the job profile and after knowing that they were hiring candidates for frontend programming, about which they didn’t mention in JAF. I told them that I was not interested in frontend development. And didn’t even answer any question after that. Unfortunately, I was selected.

General Tips: Plan your schedule judiciously keeping your capacity in mind. There is no point of making ideal plans and then not able to do even 50% of it.
Don’t get into unnecessary arguments or debate with people.
Don’t think about what others are doing. Focus on your preparation.
How you carry yourself matters. So, make sure you portray yourself in the way you want the other person to perceive you.
Be selective while applying for companies.
College Name: IIT Kanpur

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

Interview Questions from Similar Companies

Chetu Interview Questions
3.3
 • 198 Interviews
AVASOFT Interview Questions
2.8
 • 174 Interviews
Oracle Cerner Interview Questions
3.6
 • 162 Interviews
Thomson Reuters Interview Questions
4.1
 • 125 Interviews
ServiceNow Interview Questions
4.1
 • 124 Interviews
Amadeus Interview Questions
3.8
 • 115 Interviews
UKG Interview Questions
3.1
 • 112 Interviews
EbixCash Limited Interview Questions
3.9
 • 106 Interviews
SPRINKLR Interview Questions
2.9
 • 105 Interviews
View all
Perfios Software Solutions Senior Technical Team Member Salary
based on 26 salaries
₹17 L/yr - ₹27.4 L/yr
16% more than 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
67 salaries
unlock blur

₹10 L/yr - ₹15 L/yr

Software Developer
58 salaries
unlock blur

₹5.8 L/yr - ₹12 L/yr

Software Development Engineer
55 salaries
unlock blur

₹8.3 L/yr - ₹15 L/yr

Data Processing Associate
55 salaries
unlock blur

₹1.9 L/yr - ₹3 L/yr

Senior Software Development Engineer
53 salaries
unlock blur

₹12.1 L/yr - ₹31.9 L/yr

Explore more salaries
Compare Perfios Software Solutions with

Thomson Reuters

4.1
Compare

Oracle Cerner

3.6
Compare

Chetu

3.3
Compare

R Systems International

3.2
Compare
write
Share an Interview