Upload Button Icon Add office photos

Hitachi Payment Services

Compare button icon Compare button icon Compare

Filter interviews by

Hitachi Payment Services Support Engineer Interview Questions and Answers for Freshers

Updated 27 Aug 2024

Hitachi Payment Services Support Engineer Interview Experiences for Freshers

1 interview found

Support Engineer Interview Questions & Answers

user image Priyanshu Pathak

posted on 2 Aug 2024

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

I applied via Referral and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Introduction and Educational Status
  • Q2. About career and work profile
Round 2 - Technical 

(2 Questions)

  • Q1. Related to computer knowledge
  • Q2. Company policy and terms & conditions

Interview Preparation Tips

Interview preparation tips for other job seekers - Its a good company for freshers and experience to kickstart your career from a reputed organization and a mnc company.

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: 1. Find the sum of all non repeating element.
2. Find the next smallest number of a given number by swapping the digits of the number.
Duration: 40 minutes
Total Questions: 2

Round: Technical Interview
Experience: 1.tell me about yourself.
2. Explain the previous round questions.
3. I was asked some question from their presentation and from my resume

Round: Technical Interview
Experience: 1. What is trie, write code to create and implement a dictionary.
2. Write code to create function getWord(string str) ,which take string as input and return list of all the words starting with string present in our dictionary .eg str=”mo” so it should return everything starting with “mo”
3. What is final, finally, finalize in java.
4. What is third normal form.
5. What is denormalization.
6. What is left outer join, right outer join, inner join etc.
7. What is virtual and pure virtual function in c++.
8. What is copy constructor.
9. what is b-tree
10 .diff b/w get post
11. http and https

Skills: Mysql, Database, Java Programming, OOPS Using C++, Algorithms And Data Structures
College Name: NIT Delhi

I applied via Job Portal

Interview Questionnaire 

1 Question

  • Q1. Question were related with java collection, stream, string, string pool, spring,jpa

Interview Preparation Tips

Interview preparation tips for other job seekers - Excellent
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. DSA round containing 2 coding questions along with some Java Questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Design Round along with some puzzles
Round 3 - One-on-one 

(1 Question)

  • Q1. Managerial Round

I was interviewed in Dec 2021.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

Time - afternoon. 
Interviewer jumped straight into interview, formal and comfortable environment. 
1. Interviewer introduction 
2. Interviewee introduction
3. Coding question 1 - difficulty medium, topic - arrays
- explain approach, write code (pseudo code is fine), dry run on given TCS. 
4. Coding question 2 - same as above, only question was different. Slightly more difficult but on arrays only. 
5. Questions on Python & Django - difficulty medium - write code related to queryset on django objects
6. SQL question to code - 10th highest salary.

  • Q1. 

    Reverse Only Letters Problem Statement

    You are given a string S. The task is to reverse the letters of the string while keeping non-alphabet characters in their original position.

    Example:

    Input:
    S = "...
  • Ans. 

    Reverse the letters of a string while keeping non-alphabet characters in their original position.

    • Iterate through the string and store the non-alphabet characters in their original positions

    • Reverse the letters of the string using two pointers technique

    • Combine the reversed letters with the non-alphabet characters to get the final reversed string

  • Answered by AI
  • Q2. 

    Alternate Positive and Negative Numbers

    Given an array arr that contains an equal number of positive and negative elements, rearrange the given array such that positive and negative numbers are arranged a...

  • Ans. 

    Rearrange an array with equal positive and negative numbers alternatively while maintaining relative order.

    • Iterate through the array and separate positive and negative numbers into two separate arrays.

    • Merge the two arrays alternatively into the original array.

    • Ensure the relative order of positive and negative numbers is maintained.

  • Answered by AI
Round 2 - Face to Face 

Round duration - 60 Minutes
Round difficulty - Medium

1. Intro of interviewer
2. Intro of interviewee
3. Questions on Python - decorators, static method, class methods
4. Principal of coding, best practices
5. Question on DB - What is indexing, how to improve, best use of indexing.
6. Questions on django - what is django ORM, What is sandbox, Django models, Django queries.
7. Previous job, what do you do, stack you work on.

Very friendly environment, very pleasing person, loved it.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in PuneEligibility criteria0-1 year experience.PayU interview preparation:Topics to prepare for the interview - Python, Django, Dynamic Programming, Arrays, Graphs, OS, CN, DBMS, SQL, System DesignTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Good at coding (solving, explaining), especially Dynamic Programming questions like knapsack. Focus 70% time on coding
Tip 2 : Apply to jobs through referral not on company site. Very important. 
Tip 3 : Prepare good projects with how to explain in interview.
Tip 4 : Sound very energetic, competitive and some one with eager to learn, so they select you thinking you can be taught things as you have good attitude.
Remember : Good attitude in good coder > Bad attitude in expert coder.

Application resume tips for other job seekers

Tip 1 : Max three, projects, which are interesting to talk about, and you have won something for it. 
Tip 2 : Leave lot of white space, keep content small and in one page

Final outcome of the interviewSelected

I applied via Recruitment Consultant

Interview Questionnaire 

1 Question

  • Q1. Basic Unix commands, ITIL, Oracle queries and few scenario based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared with all your basics

I applied via Company Website

Interview Questionnaire 

2 Questions

  • Q1. Question related to security
  • Q2. Question related to Data Structure

Interview Preparation Tips

Interview preparation tips for other job seekers - Should study about various data encryption algorithms. About spring security. Data structure
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Concurrent modification exception Java multithreading java collection framework oops
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - Aptitude Test 

First round is completely based on aptitude, reasoning, English comprehension and 1 DSA question.

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Aptitude Test 

It was realted to analytical and logic reasoning topics

Round 2 - Coding Test 

It's related to DSA topics

Round 3 - Technical 

(2 Questions)

  • Q1. Types of Polymorphism
  • Ans. 

    Polymorphism in programming refers to the ability of a single function or method to operate on different types of data.

    • There are two main types of polymorphism: compile-time (static) polymorphism and runtime (dynamic) polymorphism.

    • Compile-time polymorphism is achieved through function overloading and operator overloading.

    • Runtime polymorphism is achieved through inheritance and virtual functions.

    • Example of compile-time ...

  • Answered by AI
  • Q2. SQL based questions

Hitachi Payment Services Interview FAQs

How many rounds are there in Hitachi Payment Services Support Engineer interview for freshers?
Hitachi Payment Services interview process for freshers usually has 2 rounds. The most common rounds in the Hitachi Payment Services interview process for freshers are HR and Technical.
How to prepare for Hitachi Payment Services Support Engineer interview for freshers?
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 Hitachi Payment Services. The most common topics and skills that interviewers at Hitachi Payment Services expect are Automation, HR and Networking.

Tell us how to improve this page.

Hitachi Payment Services Support Engineer Interview Process for Freshers

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

FIS Interview Questions
3.9
 • 482 Interviews
PayPal Interview Questions
3.9
 • 207 Interviews
HighRadius Interview Questions
2.9
 • 183 Interviews
Fiserv Interview Questions
3.0
 • 172 Interviews
Razorpay Interview Questions
3.6
 • 148 Interviews
Visa Interview Questions
3.5
 • 138 Interviews
Angel One Interview Questions
3.9
 • 135 Interviews
MasterCard Interview Questions
3.9
 • 134 Interviews
Pine Labs Interview Questions
3.4
 • 109 Interviews
View all
Hitachi Payment Services Support Engineer Salary
based on 14 salaries
₹1.4 L/yr - ₹2.3 L/yr
71% less than the average Support Engineer Salary in India
View more details

Hitachi Payment Services Support Engineer Reviews and Ratings

based on 9 reviews

4.3/5

Rating in categories

4.6

Skill development

4.6

Work-life balance

3.9

Salary

4.6

Job security

4.5

Company culture

4.0

Promotions

4.5

Work satisfaction

Explore 9 Reviews and Ratings
Senior Executive
221 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Executive
200 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
199 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
119 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
104 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Hitachi Payment Services with

FIS

3.9
Compare

Worldline

3.9
Compare

Ingenico Group

3.0
Compare

Verifone

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