Upload Button Icon Add office photos

Filter interviews by

High Peak Software Senior Software Engineer Interview Questions and Answers

Updated 27 Jun 2024

High Peak Software Senior Software Engineer Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

Find the max frequency element in an array using java8

Interview questions from similar companies

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

I applied via Company Website

Round 1 - Assignment 

A code to identify errors and write Junit. Optimise the code as well.

Round 2 - Technical 

(2 Questions)

  • Q1. Stacks using queue
  • Ans. 

    Implementing a stack using two queues

    • Use two queues to simulate a stack

    • Push operation: Enqueue the element to queue 1

    • Pop operation: Dequeue all elements from queue 1 to queue 2, dequeue the last element from queue 1, then swap the queues

    • Top operation: Return the front element of queue 1

    • Example: Push 1, 2, 3 - Queue 1: [1, 2, 3], Queue 2: []

    • Example: Pop - Queue 1: [1, 2], Queue 2: [3]

  • Answered by AI
  • Q2. BFS and Knapsack problem, previous project experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Be very clear with the technology stack and basic DSA problems.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Full stack question with java and angular and sql

Round 2 - Case Study 

Case study on project

Interview experience
3
Average
Difficulty level
Hard
Process Duration
4-6 weeks
Result
No response

I applied via Approached by Company and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Design object store like amazon s3

Interview Preparation Tips

Interview preparation tips for other job seekers - Look at Grokking System Design Advance
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Tell something about youself which is not included in your resume?
  • Q2. What is your day to day life, and how many application you were using on daily basis
  • Q3. What is inheritance with example?
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Allows a class to inherit attributes and methods from another class

    • Promotes code reusability and reduces redundancy

    • Derived class can add its own attributes and methods or override existing ones

    • Example: Class 'Animal' can be a base class with attributes like 'name' and methods like 'eat'. Class 'Dog...

  • Answered by AI
  • Q4. What is join and how many types of joins are available with example?
  • Ans. 

    Join is used to combine rows from two or more tables based on a related column between them.

    • Types of joins: Inner Join, Left Join, Right Join, Full 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 Join: Returns

  • Answered by AI
Round 2 - One-on-one 

(6 Questions)

  • Q1. Tell me about your experience in brief?
  • Q2. Why you choose that background which was different from last organization
  • Q3. What makes you to feel happy when you are on production floor
  • Q4. What was your team size and how you were handling the agents?
  • Q5. What is distinct
  • Ans. 

    Distinct means unique or different from others.

    • Distinct refers to something that is separate or individual

    • It can also mean standing out or being easily recognizable

    • In programming, distinct is often used in the context of removing duplicate elements from a list or array

  • Answered by AI
  • Q6. After 3 years if you will get a chance to serve as vice president what you will do?

Skills evaluated in this 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 - Technical 

(1 Question)

  • Q1. Question related to my current work.
Round 3 - Technical 

(1 Question)

  • Q1. Design Memory Management system
  • Ans. 

    Design a memory management system for efficient allocation and deallocation of memory in software applications.

    • Implement a memory pool to pre-allocate a fixed amount of memory for frequent allocation and deallocation operations.

    • Use garbage collection to automatically reclaim memory that is no longer in use.

    • Implement memory segmentation to divide memory into different segments for better organization and management.

    • Use ...

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. OS basics, locking mechanism, etc

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Jun 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Asked Basic question about the Asset management process.
Round 3 - One-on-one 

(1 Question)

  • Q1. Managerial round to check communication & approach towards work.
Round 4 - Client Interview 

(2 Questions)

  • Q1. Only formal connect with Client Leadership to confirm the hiring.
  • Q2. Basic questions about your past experiences.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview is not upto the mark. Please get all the queries clarified about the position before joining.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Apr 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(9 Questions)

  • Q1. Write a Program Nth term in a infinite series example: 2,4,8,2,4,8……..n…….infinite
  • Ans. 

    Program to find the Nth term in an infinite series

    • The series has a repeating pattern

    • Use modulo operator to find the index of the repeating pattern

    • Calculate the value of Nth term based on the pattern

  • Answered by AI
  • Q2. Write a Program identify Max length of a substring from a given string and also the substring should be palindrome
  • Ans. 

    Program to find the longest palindrome substring in a given string.

    • Iterate through the string and check for palindromes of different lengths

    • Store the longest palindrome found

    • Return the length and substring

  • Answered by AI
  • Q3. What is your comfort level on HTML, CSS and JavaScript
  • Ans. 

    I am very comfortable with HTML, CSS and JavaScript.

    • I have extensive experience in developing responsive web applications using HTML, CSS and JavaScript.

    • I am proficient in using CSS preprocessors like SASS and LESS.

    • I have worked with various JavaScript frameworks like React, Angular and Vue.js.

    • I am familiar with HTML5 and CSS3 features like Flexbox and Grid layout.

    • I am comfortable with debugging and troubleshooting iss

  • Answered by AI
  • Q4. What are reasons for your transitions in Career
  • Ans. 

    Transitions were driven by desire for growth, new challenges, and better alignment with personal values.

    • Desire for professional growth and development

    • Seeking new challenges and opportunities

    • Alignment with personal values and mission

    • Exploring different industries and technologies

    • Relocation for personal reasons

  • Answered by AI
  • Q5. Oracle EBS 12.1 and 12.2 Technical Architecture Differences
  • Ans. 

    Differences between Oracle EBS 12.1 and 12.2 Technical Architecture

    • 12.2 has a web-based interface while 12.1 has a client-server interface

    • 12.2 has a multi-node architecture while 12.1 has a single-node architecture

    • 12.2 has a more modular architecture with fewer dependencies

    • 12.2 has a more streamlined upgrade process compared to 12.1

  • Answered by AI
  • Q6. What is your current role and how do you handle your daily tasks
  • Ans. 

    I am currently working as a Senior Software Engineer and I handle my daily tasks by prioritizing them based on their importance and urgency.

    • I start my day by checking my emails and responding to any urgent requests

    • I then review my to-do list and prioritize my tasks for the day

    • I break down complex tasks into smaller, more manageable ones

    • I collaborate with my team members to ensure that we are all on the same page

    • I use p...

  • Answered by AI
  • Q7. Tell me in detail step by step process for registering XML Publisher Report
  • Ans. 

    The process for registering XML Publisher Report

    • Create a data model for the report

    • Create a template for the report using RTF or XSL-FO

    • Upload the template to the server

    • Create a report definition using the data model and template

    • Register the report definition with the XML Publisher server

  • Answered by AI
  • Q8. Java Exceptions hierarchy(IOException then Exception Block , what error we get here)
  • Q9. Write a Program to find a second max in the give list? and Time Complexity
  • Ans. 

    Program to find second max in a list and its time complexity

    • Sort the list in descending order and return the second element

    • Traverse the list and keep track of the maximum and second maximum elements

    • Time complexity: O(n)

  • Answered by AI

Interview Preparation Tips

Topics to prepare for OpenText Technologies Senior Software Engineer interview:
  • Java
  • Web Services
  • MVC
  • XML Publisher
  • Oracle Apps
  • SQL
  • Performance Tuining
Interview preparation tips for other job seekers - Learn Java Programming , SQL, Opps Concepts, Projects Questions and Prepare Puzzles

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jan 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. LRU Implementation
  • Ans. 

    LRU (Least Recently Used) is a cache eviction policy where the least recently accessed items are removed first.

    • LRU cache stores key-value pairs with a maximum capacity.

    • When a new key-value pair is added, if the cache is full, the least recently used item is removed.

    • When a key is accessed, it is moved to the front of the cache to indicate it was recently used.

  • Answered by AI
  • Q2. Sell and buy stock

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Input output questions on C, C++ and java

Round 2 - Coding Test 

Machine coding round 5-6 coding questions based on string and arrays. Medium level

Round 3 - Coding Test 

Mini project : They ask to code a system with the given requirements

High Peak Software Interview FAQs

How many rounds are there in High Peak Software Senior Software Engineer interview?
High Peak Software interview process usually has 1 rounds. The most common rounds in the High Peak Software interview process are Coding Test.
How to prepare for High Peak Software Senior Software Engineer 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 High Peak Software. The most common topics and skills that interviewers at High Peak Software expect are C++, JIRA, Java, Microservices and MongoDB.

Tell us how to improve this page.

High Peak Software Senior Software Engineer Interview Process

based on 1 interview

Interview experience

2
  
Poor
View more
High Peak Software Senior Software Engineer Salary
based on 7 salaries
₹9 L/yr - ₹20.5 L/yr
8% less than the average Senior Software Engineer Salary in India
View more details

High Peak Software Senior Software Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

5.0

Skill development

4.0

Work-life balance

4.0

Salary

5.0

Job security

4.0

Company culture

5.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
30 salaries
unlock blur

₹3.2 L/yr - ₹12.5 L/yr

Software Developer
15 salaries
unlock blur

₹3.7 L/yr - ₹16.1 L/yr

QA Engineer
13 salaries
unlock blur

₹3.8 L/yr - ₹8.5 L/yr

Front end Developer
10 salaries
unlock blur

₹5 L/yr - ₹13.1 L/yr

Senior Software Engineer
7 salaries
unlock blur

₹9 L/yr - ₹20.5 L/yr

Explore more salaries
Compare High Peak Software 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