Upload Button Icon Add office photos

Filter interviews by

Priority Technology Holdings Interview Questions and Answers for Experienced

Updated 21 Jun 2024

Priority Technology Holdings Interview Experiences for Experienced

Popular Designations

4 interviews found

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

There were several basic questions of aptitude

Round 2 - Technical 

(1 Question)

  • Q1. They asked from design pattern, .net basics, entity framework followed by one pattern and one string question.
Round 3 - HR 

(1 Question)

  • Q1. Hr asked very general questions , i think no need to prepare for this round

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best.

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

50 minutes aptitude test

Round 2 - HR 

(2 Questions)

  • Q1. Expectations from company
  • Q2. Can you be available 24 hours, we need this commitment

Interview Preparation Tips

Interview preparation tips for other job seekers - Work here get paid

Associate Product Manager Interview Questions asked at other Companies

Q1. 2. You have water filled Jar X and empty Jar Y. You transferred a portion of water from Jar X to Y using spunch which absorbs A% of water and it pours B% of water in Jar B. After one iteration, Z ml of water is present in Jar Y find water i... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Oct 2022. There were 3 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 - Aptitude Test 

Aptitude, Logical, English

Round 3 - Technical 

(1 Question)

  • Q1. All Questions related to docker and Kubernetes, terraform

Devops Engineer Interview Questions asked at other Companies

Q1. Reverse the StringYou are given a string 'STR'. The string contains [a-z] [A-Z] [0-9] [special characters]. You have to find the reverse of the string. For example: If the given string is: STR = "abcde". You have to print the string "edcba... read more
View answer (3)

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 17 Feb 2021

Interview Questionnaire 

2 Questions

  • Q1. What are DDL commands?
  • Ans. 

    DDL commands are used to define and manage the structure of a database.

    • DDL stands for Data Definition Language.

    • DDL commands are used to create, modify, and delete database objects such as tables, indexes, and views.

    • Examples of DDL commands include CREATE, ALTER, and DROP.

    • DDL commands do not manipulate the data within the database, only the structure.

  • Answered by AI
  • Q2. Difference between Truncate and Delete statement??
  • Ans. 

    Truncate is a DDL statement that removes all rows from a table, while delete is a DML statement that removes specific rows.

    • Truncate is faster than delete as it doesn't generate any rollback information.

    • Truncate cannot be rolled back, while delete can be.

    • Truncate resets the identity of the table, delete does not.

    • Truncate does not fire triggers, delete does.

    • Truncate is non-logged operation, delete is logged.

  • Answered by AI

Skills evaluated in this interview

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)

Priority Technology Holdings interview questions for popular designations

 Software Engineer

 (2)

 Associate Analyst

 (1)

 Associate Product Manager

 (1)

 Business Analyst

 (1)

 Data Analyst

 (1)

 Devops Engineer

 (1)

 Java Developer

 (1)

 Operations Analyst

 (1)

Jobs at Priority Technology Holdings

View all

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before May 2017. There were 6 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. Salary discussion and negotiation
  • Q2. Java related questions were asked.
  • Q3. Selenium waits and some program
  • Q4. Asked about Collection Framework and different usecases
  • Q5. Different testing Methodologies where they checking code skills
  • Q6. Questions around different scenario based coding
  • Q7. Asked about project and work done with the experience
  • Q8. Given exam in some app where you need to write, speak and hear english senetences.

Interview Questionnaire 

5 Questions

  • Q1. What is the difference between Service and Component in Angular
  • Ans. 

    Service provides data and functionality while Component handles UI and user interaction.

    • Service is a singleton object that can be injected into multiple components

    • Component is a directive with a template and styles

    • Service provides data and functionality to components

    • Component handles UI and user interaction

    • Services can be used to share data between components

    • Components can communicate with services using dependency inj

  • Answered by AI
  • Q2. What is the most critical technical challenge you faced in the careet and how did you resolve it
  • Q3. Which is the best to use either the State variables or Properties in ReactJS and why
  • Ans. 

    State variables are best for managing component's internal state, while properties are best for passing data from parent to child components.

    • State variables are mutable and can be changed within the component

    • Properties are immutable and cannot be changed within the component

    • State variables are used to manage the component's internal state

    • Properties are used to pass data from parent to child components

    • State variables ar...

  • Answered by AI
  • Q4. How do you configure the Authentication system in API service and how do you ensure that it is not hacked from external sources
  • Ans. 

    Authentication system in API service must be configured securely to prevent external hacking.

    • Use strong encryption algorithms to store passwords

    • Implement multi-factor authentication

    • Use HTTPS protocol to encrypt data in transit

    • Implement rate limiting to prevent brute force attacks

    • Regularly update and patch the authentication system

    • Use secure coding practices to prevent injection attacks

  • Answered by AI
  • Q5. How the clients of one domain will be made to access the API service? How do the different domains based clients authentication and authorization are managed in the API service
  • Ans. 

    Clients of one domain can access API service through authentication and authorization managed by API service.

    • API service can use OAuth2.0 for authentication and authorization

    • Different domains can have different client IDs and secrets for OAuth2.0

    • API service can use JWT for token-based authentication

    • Cross-Origin Resource Sharing (CORS) can be used to allow access from different domains

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

14 Questions

  • Q1. Python is interpreted then why .pyc files are there?
  • Ans. 

    Python compiles source code to bytecode for faster execution, stored in .pyc files.

    • Python interpreter compiles source code to bytecode before execution

    • Bytecode is platform-independent and faster to execute than source code

    • Compiled bytecode is stored in .pyc files for future use and faster startup time

    • If source code is modified, .pyc files are automatically recompiled

  • Answered by AI
  • Q2. Explain Django life cycle.
  • Ans. 

    Django life cycle involves request processing, URL routing, view function execution, template rendering, and response generation.

    • When a request is made, Django checks the URL patterns defined in urls.py file.

    • If a match is found, the corresponding view function is executed.

    • The view function processes the request and returns a response.

    • The response is rendered using a template, if applicable.

    • The final response is sent ba

  • Answered by AI
  • Q3. Explain ownership of the project approach.
  • Ans. 

    Ownership of the project approach refers to taking responsibility for the project's success and making decisions accordingly.

    • The owner of the project approach should have a clear understanding of the project's goals and objectives.

    • They should be able to make informed decisions about the project's direction and prioritize tasks accordingly.

    • The owner should also be accountable for the project's success or failure and be ...

  • Answered by AI
  • Q4. Difference between sort and sorted, dump vs dumps, load vs loads etc.
  • Ans. 

    Difference between sort and sorted, dump vs dumps, load vs loads etc.

    • sort() is a method of list object while sorted() is a built-in function

    • dump() serializes an object to a file while dumps() serializes to a string

    • load() deserializes an object from a file while loads() deserializes from a string

  • Answered by AI
  • Q5. Design patterns in Python?
  • Ans. 

    Design patterns are reusable solutions to common problems in software design.

    • Design patterns provide a structured approach to solving design problems.

    • Python has several design patterns such as Singleton, Factory, Observer, etc.

    • Each design pattern has its own purpose and usage.

    • Design patterns promote code reusability, maintainability, and scalability.

    • Understanding design patterns helps in writing cleaner and more effici

  • Answered by AI
  • Q6. Generator, Iterator, enumeration, Yeild, decorators, closures etc.
  • Q7. Explain dict, tuple, list, set, string etc.
  • Ans. 

    Data structures in Python: dict, tuple, list, set, string

    • dict: unordered collection of key-value pairs

    • tuple: ordered, immutable collection of elements

    • list: ordered, mutable collection of elements

    • set: unordered collection of unique elements

    • string: ordered collection of characters

  • Answered by AI
  • Q8. How many python modules you have used?
  • Ans. 

    I have used multiple python modules for various purposes.

    • I have used NumPy for numerical computations.

    • I have used Pandas for data analysis and manipulation.

    • I have used Matplotlib for data visualization.

    • I have used Flask for web development.

    • I have used Requests for making HTTP requests.

    • I have used BeautifulSoup for web scraping.

    • I have used Scikit-learn for machine learning tasks.

    • I have used TensorFlow for deep learning

  • Answered by AI
  • Q9. Can we use list as dict key?
  • Ans. 

    Yes, but only if the list is immutable.

    • Lists are mutable and cannot be used as dict keys.

    • Tuples are immutable and can be used as dict keys.

    • If a list needs to be used as a key, it can be converted to a tuple.

  • Answered by AI
  • Q10. Explain list slices, starts and ends at.
  • Ans. 

    List slices are a way to extract a portion of a list by specifying start and end indices.

    • List slices are denoted by using square brackets with start and end indices separated by a colon.

    • The start index is inclusive and the end index is exclusive.

    • If the start index is omitted, it defaults to 0. If the end index is omitted, it defaults to the length of the list.

    • Negative indices can be used to count from the end of the li...

  • Answered by AI
  • Q11. Explain Lambda functions. Map, reduce, filter etc.
  • Ans. 

    Lambda functions are anonymous functions that can be passed as arguments to other functions.

    • Lambda functions are also known as anonymous functions because they don't have a name.

    • They are often used as arguments to higher-order functions like map, reduce, and filter.

    • Map applies a function to each element of an array and returns a new array with the results.

    • Reduce applies a function to the elements of an array and return...

  • Answered by AI
  • Q12. Explain memory management of python.
  • Ans. 

    Python uses automatic memory management through garbage collection.

    • Python uses reference counting to keep track of objects in memory.

    • When an object's reference count reaches zero, it is deleted by the garbage collector.

    • Python also uses a cyclic garbage collector to detect and delete objects with circular references.

    • Memory can be managed manually using the ctypes module.

    • Python's memory management is efficient and transp

  • Answered by AI
  • Q13. Explain GIL python.
  • Ans. 

    GIL stands for Global Interpreter Lock, which is a mechanism used in CPython to ensure thread safety.

    • GIL is a mutex that allows only one thread to execute Python bytecode at a time.

    • It is necessary because CPython's memory management is not thread-safe.

    • GIL can cause performance issues in CPU-bound multi-threaded applications.

    • However, it does not affect I/O-bound or multi-process applications.

    • Alternative Python implement...

  • Answered by AI
  • Q14. Explain Threading of Python.
  • Ans. 

    Threading in Python allows multiple threads of execution to run concurrently within a single process.

    • Python's threading module provides a way to create and manage threads.

    • Threads share the same memory space and can access the same variables and data structures.

    • Threading can improve performance for I/O-bound tasks, but not for CPU-bound tasks.

    • Python's Global Interpreter Lock (GIL) limits true parallelism in multi-thread...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident but don't loose hopes sometimes interviewer has different views may be he can't predict those with. But some where these gets matches and we get job. Best of luck.

Skills evaluated in this interview

CRMLQ Interview Questions & Answers

iEnergizer user image Anonymous

posted on 13 Sep 2020

Interview Questionnaire 

10 Questions

  • Q1. Tell me something about yourself
  • Q2. What is customer service
  • Q3. How was your weekend
  • Q4. Why you want this job
  • Q5. Why should I hire you
  • Q6. Where do you stay
  • Q7. Technical questions about process
  • Q8. How will you perform
  • Q9. How you can see yourself after one year
  • Q10. How much you know about ienergizer

Interview Questionnaire 

1 Question

  • Q1. As usual, introduce yourself..? and few resume questions like strengths? Skills? and technical questions like basic questions on which field we are joining? moderate level and few core level questions ba...

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay bold and calm in each and every answers you provide, if you are not aware of answers which is correct or not, please don't answer your thought process, just say i know bit on this topic better i try for next question. it they tap on the same question again answer it in giving basic level knowledge to til moderate level knowledge on the question asked.

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

Interview Questionnaire 

3 Questions

  • Q1. What are the achievement you have got in your life.
  • Q2. Why you think you are different from other?
  • Q3. What's your choice /hobby ...

Interview Preparation Tips

Interview preparation tips for other job seekers - No stress ,smile,be positive,no over think,be loyal what you are talking,

Priority Technology Holdings Interview FAQs

How many rounds are there in Priority Technology Holdings interview for experienced candidates?
Priority Technology Holdings interview process for experienced candidates usually has 2-3 rounds. The most common rounds in the Priority Technology Holdings interview process for experienced candidates are Aptitude Test, Technical and HR.
How to prepare for Priority Technology Holdings interview for experienced candidates?
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 Priority Technology Holdings. The most common topics and skills that interviewers at Priority Technology Holdings expect are MySQL, SQL, Java, SQL Server and C#.
What are the top questions asked in Priority Technology Holdings interview for experienced candidates?

Some of the top questions asked at the Priority Technology Holdings interview for experienced candidates -

  1. What are DDL comman...read more
  2. Difference between Truncate and Delete statemen...read more
  3. Second round : Asked profile related , BA profile questions , talked about thei...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 Priority Technology Holdings interviews
Job Portal
Campus Placement
50%
50%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

Accenture Interview Questions
3.9
 • 8k Interviews
Amazon Interview Questions
4.1
 • 4.9k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Deloitte Interview Questions
3.8
 • 2.8k Interviews
FIS Interview Questions
3.9
 • 469 Interviews
PayPal Interview Questions
3.9
 • 206 Interviews
Fiserv Interview Questions
3.2
 • 166 Interviews
ACI Worldwide Interview Questions
4.3
 • 11 Interviews
Global Payments Interview Questions
4.2
 • 10 Interviews
View all

Fast track your campus placements

View all

Priority Technology Holdings Reviews and Ratings

based on 51 reviews

3.1/5

Rating in categories

2.8

Skill development

3.0

Work-Life balance

3.1

Salary & Benefits

3.2

Job Security

2.7

Company culture

2.7

Promotions/Appraisal

2.7

Work Satisfaction

Explore 51 Reviews and Ratings
Analyst
33 salaries
unlock blur

₹2.4 L/yr - ₹7.9 L/yr

Software Engineer
25 salaries
unlock blur

₹4.7 L/yr - ₹13 L/yr

Associate Engineer
18 salaries
unlock blur

₹5 L/yr - ₹10 L/yr

Team Lead
14 salaries
unlock blur

₹4.9 L/yr - ₹21.3 L/yr

Senior Software Engineer
13 salaries
unlock blur

₹7 L/yr - ₹28.8 L/yr

Explore more salaries
Compare Priority Technology Holdings with

Fiserv

3.2
Compare

FIS

3.9
Compare

Global Payments

4.2
Compare

WEX Inc

2.3
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