Upload Button Icon Add office photos

Filter interviews by

PK Global Software Technologies Interview Questions, Process, and Tips

Updated 11 May 2023

Top PK Global Software Technologies Interview Questions and Answers

View all 17 questions

PK Global Software Technologies Interview Experiences

Popular Designations

4 interviews found

Interview Questionnaire 

5 Questions

  • Q1. Find the number is even or odd with out using mod(%) operator
  • Ans. 

    Check if a number is even or odd without using mod operator.

    • Use bitwise AND operator with 1 to check the last bit of the number.

    • If the last bit is 0, the number is even. If it's 1, the number is odd.

    • Example: (num & 1) == 0 for even, (num & 1) == 1 for odd.

  • Answered by AI
  • Q2. What is Apigee gateway
  • Ans. 

    Apigee gateway is a platform for managing and securing APIs.

    • It acts as a mediator between the client and the backend services.

    • It provides features like authentication, rate limiting, caching, and analytics.

    • It can be deployed on-premises or in the cloud.

    • It supports various protocols like REST, SOAP, and GraphQL.

    • It helps in API versioning and documentation.

  • Answered by AI
  • Q3. What is hashmap and its internal implementation
  • Ans. 

    HashMap is a data structure that stores key-value pairs and provides constant time complexity for basic operations.

    • HashMap uses hashing to store and retrieve elements

    • It uses an array of linked lists to handle collisions

    • The hash function is used to map the key to an index in the array

    • The internal implementation includes methods like put(), get(), and resize()

  • Answered by AI
  • Q4. What are the features of java 8
  • Ans. 

    Java 8 introduced several new features including lambda expressions, streams, and default methods.

    • Lambda expressions for functional programming

    • Streams for processing large data sets

    • Default methods for backward compatibility

    • Date and Time API improvements

    • Nashorn JavaScript engine

    • Parallel array sorting

    • Type annotations

    • Repeatable annotations

    • Optional class for null checks

    • Base64 encoding and decoding

    • PermGen space replaced wit...

  • Answered by AI
  • Q5. What is the agreement between hashcode and equals menthod
  • Ans. 

    Hashcode and equals method are related to object comparison in Java.

    • Hashcode is used to identify the object and equals method is used to compare two objects.

    • If two objects are equal, their hashcode values must be the same.

    • If two objects have the same hashcode value, it doesn't necessarily mean that they are equal.

    • It is recommended to override both hashcode and equals method when creating custom classes.

  • Answered by AI

Skills evaluated in this interview

Top PK Global Software Technologies Senior Software Engineer Interview Questions and Answers

Q1. What the digin pattern implemented for sting pool?
View answer (2)

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

(3 Questions)

  • Q1. About the project
  • Q2. Questions realted to collections framework, Strings, core java
  • Q3. Write a program to find the distinct characters in the given string sentence
  • Ans. 

    Program to find distinct characters in a given string sentence

    • Create a set to store unique characters

    • Iterate through the string and add each character to the set

    • Return the set of distinct characters

  • Answered by AI
Round 3 - Technical 

(4 Questions)

  • Q1. About micro services
  • Q2. Where do you deploy microservices
  • Ans. 

    Microservices can be deployed on cloud platforms, containers, or on-premise servers.

    • Cloud platforms like AWS, Azure, and Google Cloud provide managed services for deploying microservices.

    • Containers like Docker and Kubernetes can be used to deploy and manage microservices.

    • On-premise servers can also be used to deploy microservices, but require more maintenance and management.

    • The choice of deployment platform depends on ...

  • Answered by AI
  • Q3. How dou you achieve security to microservices
  • Ans. 

    Security to microservices can be achieved through various measures.

    • Implementing authentication and authorization mechanisms

    • Using SSL/TLS for secure communication

    • Implementing rate limiting and throttling to prevent DDoS attacks

    • Implementing input validation and output encoding to prevent injection attacks

    • Implementing logging and monitoring to detect and respond to security incidents

    • Using containerization and orchestratio...

  • Answered by AI
  • Q4. How do you create proxies
  • Ans. 

    Proxies can be created using various programming languages and frameworks.

    • In Java, proxies can be created using the java.lang.reflect.Proxy class.

    • In Python, proxies can be created using the built-in library 'socketserver'.

    • In Node.js, proxies can be created using the 'http-proxy' module.

    • Proxies can be used for load balancing, caching, security, and more.

  • Answered by AI

Skills evaluated in this interview

Top PK Global Software Technologies Senior Software Engineer Interview Questions and Answers

Q1. What the digin pattern implemented for sting pool?
View answer (2)

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)

I applied via Naukri.com and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - Technical 

(8 Questions)

  • Q1. What was your role in the team that you worked on
  • Ans. 

    I was responsible for leading the testing efforts and ensuring the quality of the software.

    • Led the testing team and coordinated with developers and stakeholders

    • Developed test plans, test cases, and executed them

    • Performed manual and automated testing

    • Identified and reported bugs and worked closely with developers to resolve them

    • Conducted regression testing and ensured software stability

    • Collaborated with cross-functional

  • Answered by AI
  • Q2. Explain STLC and SDLC
  • Ans. 

    STLC is a process of testing software while SDLC is a process of developing software.

    • STLC stands for Software Testing Life Cycle

    • It involves planning, designing, executing and reporting of tests

    • SDLC stands for Software Development Life Cycle

    • It involves planning, designing, developing, testing and maintaining software

    • STLC is a subset of SDLC

    • STLC ensures that the software meets the specified requirements and is of high qu

  • Answered by AI
  • Q3. Given a requirement and asked to frame scenarios and test cases
  • Q4. Why clients go for automation testing and what is my role in regression testing
  • Ans. 

    Clients opt for automation testing to save time and cost. My role in regression testing is to ensure that the software still works after changes.

    • Automation testing saves time and cost by reducing manual effort

    • Regression testing ensures that the software still works after changes

    • My role in regression testing is to create and execute automated test cases

    • I also analyze test results and report defects to the development te

  • Answered by AI
  • Q5. Action converting requirements to test cases
  • Ans. 

    Converting requirements to test cases involves analyzing requirements, identifying test scenarios, and creating test cases.

    • Analyze requirements to understand the functionality

    • Identify test scenarios based on requirements

    • Create test cases for each scenario

    • Ensure test cases cover all possible scenarios

    • Review and refine test cases as needed

  • Answered by AI
  • Q6. Test Management tools used
  • Ans. 

    We use a variety of test management tools depending on the project requirements.

    • For agile projects, we use JIRA for test case management and execution.

    • For performance testing, we use LoadRunner and JMeter.

    • For automation testing, we use Selenium and Appium.

    • For defect tracking, we use Bugzilla and HP ALM.

    • We also use custom-built tools for specific project needs.

  • Answered by AI
  • Q7. Functional modules worked on
  • Ans. 

    Worked on functional modules related to e-commerce and financial services.

    • Developed and tested payment gateway integration module

    • Implemented order management and tracking module

    • Worked on inventory management and stock tracking module

  • Answered by AI
  • Q8. Explain Defect life cycle
  • Ans. 

    Defect life cycle is the process of identifying, reporting, prioritizing, fixing, and verifying defects in software.

    • Defect is identified by testers during testing

    • Defect is reported to development team

    • Development team prioritizes and fixes the defect

    • Fixed defect is verified by testers

    • If defect is not fixed, it goes back to development team

    • If defect is fixed, it is closed

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

(3 Questions)

  • Q1. About the technology I worked on
  • Q2. Complete lifecycle of testing
  • Ans. 

    The complete lifecycle of testing involves planning, designing, executing, and reporting.

    • Planning: Define test objectives, scope, and strategy.

    • Designing: Create test cases and test data.

    • Executing: Run tests and record results.

    • Reporting: Analyze results and report defects.

    • Retesting: Verify fixes and retest defects.

    • Regression testing: Ensure changes do not impact existing functionality.

  • Answered by AI
  • Q3. Agile and waterfall testing methoddology
Round 3 - HR 

(7 Questions)

  • Q1. What are your salary expectations?
  • Ans. 

    I expect a competitive salary based on my experience and skills.

    • I have extensive experience in software testing and have worked on complex projects.

    • I have a strong understanding of testing methodologies and tools.

    • I have successfully led testing teams and delivered high-quality software products.

    • I am confident in my abilities and believe I can contribute significantly to the company's success.

    • I am open to discussing sal...

  • Answered by AI
  • Q2. Share details of your previous job.
  • Ans. 

    I worked as a Senior Software Engineer Testing in my previous job.

    • Led a team of testers to ensure the quality of software products

    • Developed and executed test plans, test cases, and test scripts

    • Performed manual and automated testing

    • Identified and reported software defects

    • Collaborated with developers to resolve issues

    • Participated in code reviews and provided feedback

    • Implemented continuous integration and deployment proce...

  • Answered by AI
  • Q3. Why should we hire you?
  • Ans. 

    I have extensive experience in software testing and a strong track record of delivering high-quality products.

    • I have a deep understanding of testing methodologies and best practices.

    • I have successfully led testing efforts for complex software projects.

    • I am skilled in test automation and have developed efficient testing frameworks.

    • I have a strong attention to detail and a meticulous approach to testing.

    • I am a quick lear...

  • Answered by AI
  • Q4. Why are you looking for a change?
  • Ans. 

    Seeking new challenges and growth opportunities in a different organization.

    • Looking for a change to expand my skill set and knowledge.

    • Seeking a more challenging and dynamic work environment.

    • Interested in working with new technologies and tools.

    • Want to contribute to a different organization's success.

    • Seeking better career growth and advancement opportunities.

  • Answered by AI
  • Q5. Where do you see yourself in 5 years?
  • Ans. 

    In 5 years, I see myself leading a team of software engineers, driving innovation and delivering high-quality testing solutions.

    • Leading a team of software engineers

    • Driving innovation in testing methodologies

    • Delivering high-quality testing solutions

    • Continuously learning and staying updated with the latest technologies

    • Contributing to the growth and success of the organization

  • Answered by AI
  • Q6. What are your strengths and weaknesses?
  • Ans. 

    My strengths include attention to detail, problem-solving skills, and ability to work well in a team. My weaknesses include being overly critical of my own work and sometimes struggling with time management.

    • Strength: Attention to detail - I have a keen eye for spotting even the smallest errors or inconsistencies in software.

    • Strength: Problem-solving skills - I enjoy analyzing complex problems and finding efficient solu...

  • Answered by AI
  • Q7. Tell me about yourself.
  • Ans. 

    I am a Senior Software Engineer Testing with expertise in testing and quality assurance.

    • Experienced in designing and implementing test strategies for complex software systems.

    • Proficient in various testing methodologies and tools, including manual and automated testing.

    • Skilled in identifying and resolving software defects and ensuring high-quality deliverables.

    • Strong knowledge of test planning, test case development, an...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If u attend interview u will get a job. No efficient officials in company even to interview.
For example- if u are getting interviewed for x technology, just search for x technology interview questions in Google. Click on very first url and prepare answers only on those. Interviewer is skilled enough to ask those questions only.

Skills evaluated in this interview

Top PK Global Software Technologies Senior Software Engineer Testing Interview Questions and Answers

Q1. Why clients go for automation testing and what is my role in regression testing
View answer (1)

Senior Software Engineer Testing Interview Questions asked at other Companies

Q1. Sorting Characters by Frequency Given a string S, sort this string in increasing order based on the frequency of its characters. If two characters have the same frequency, the character with a lesser ASCII value should appear first. Return ... read more
View answer (1)

I applied via Job Portal and was interviewed before Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What the digin pattern implemented for sting pool?
  • Ans. 

    The digin pattern implemented for string pool is a technique to reuse string objects to optimize memory usage.

    • String pool is a cache of string objects stored in memory.

    • When a string is created, it is first checked if it already exists in the pool.

    • If it does, a reference to the existing string object is returned instead of creating a new one.

    • This helps in reducing memory consumption and improving performance.

    • Examples: S...

  • Answered by AI
  • Q2. Basic questions of Java
  • Q3. How you worked in your previous company work flow

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident to your Answers

Skills evaluated in this interview

Top PK Global Software Technologies Senior Software Engineer Interview Questions and Answers

Q1. What the digin pattern implemented for sting pool?
View answer (2)

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)

PK Global Software Technologies interview questions for popular designations

 Senior Software Engineer

 (3)

 Senior Software Engineer Testing

 (1)

Interview questions from similar companies

Interview Preparation Tips

Round: Resume Shortlist
Experience: A telephonic of technical round basics about C concepts and Embedded C Concepts in order to call for next round .

I applied via Other and was interviewed in Nov 2017. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Brief Role on job and tools and technology I worked with day to day activity
  • Ans. 

    As a Senior Software Engineer, I worked with various tools and technologies to develop and maintain software applications.

    • Developed and maintained software applications using Java, Python, and C++ programming languages

    • Used Agile methodology for software development and collaborated with cross-functional teams

    • Worked with various tools such as Git, JIRA, Jenkins, and Docker for version control, issue tracking, continuous...

  • Answered by AI
  • Q2. In-depth technical interview which went around 40 min. since i had 8 years of experience
  • Q3. Fully technical
  • Q4. Salary discussion and Document verification.

Interview Preparation Tips

Round: Resume Shortlist
Experience: Keywords that I put in of the technology, tools , experience.. (I guess )

General Tips: Just stay calm. Do not show fake experience, Speak genuinely, Answer to the point and explain if you have to add on more depending on your experience. Do not be over confident. Speak start to the eyes
Skills: Communication, Problem Solving, Analytical Skills, Leadership, Presentation Skills, Decision Making Skills
Duration: 1-3 Months

Interview Preparation Tips

Round: Technical Interview
Experience: Has a 1 hr interview. He asked the Qs on my experience, what I have put in my resume. Its good conversation with interviewer.

Round: HR Interview
Experience: In HR interview he asked about my salary and what he is going to offer me. I left for the day. There is no response for 5 days from the HR. After a week I got the call my HR and discussion was happened about the salary again and said to upload some documents. I did it. There is no response for 4 days again. I got call again after 4 days and this time she said there is no suitable position for my experience so she is going to reject my application. Its very painful to listen like this.

I applied via Recruitment Consultant and was interviewed in Jul 2018. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What is the biggest challenge you faced in developing azure solution?
  • Ans. 

    The biggest challenge in developing Azure solution was managing the complexity of the cloud environment.

    • Managing the complexity of the cloud environment

    • Ensuring scalability and reliability

    • Integrating with existing systems

    • Securing the solution

    • Optimizing cost

    • Example: Migrating a legacy application to Azure

  • Answered by AI
  • Q2. In azure data factory how would you implement the functionality of tumbling window without actually using that feature already available?
  • Ans. 

    Implementing tumbling window in Azure Data Factory without using the feature

    • Create a pipeline with a trigger that runs at the desired interval

    • Use a lookup activity to retrieve the data for the current window

    • Use a foreach activity to iterate over the retrieved data

    • Perform the required operations on the data within the foreach activity

    • Write the output to the desired destination

  • Answered by AI
  • Q3. What would be your suggestion for implementation in azure data factory v2?
  • Ans. 

    My suggestion for implementation in Azure Data Factory v2 is to use the Mapping Data Flow feature.

    • Utilize Mapping Data Flow for complex data transformations

    • Take advantage of the visual interface to design and debug data flows

    • Leverage the built-in data integration capabilities with other Azure services

    • Use data flow parameters and expressions for dynamic transformations

    • Monitor and optimize data flow performance using dat

  • Answered by AI
  • Q4. I was given a project scenario and was requested to choose from below cluster or cluster less , hive or u-sql?

Interview Preparation Tips

General Tips: Be pretty confident on the current project you are working on. It's ok that you do not know the complete technology but you should have the complete picture of stuff you are working on. Be clear as to why are using specific technology for your project and not the other one. For example, i worked on azure and drilled my way to understand the edge azure has over aws. I did good work onto why are we using hive language and azure data ware house for our project instead of using u-sql and azure SQL data base. Do not bluff, better be humble to accept that we are not fully aware of something and given a chance to work on, we will. And last thing, smile and appreciate the effort put in by interviewer.
Skills: Coding Skills, Datawarehousing, Azure data factory, Problem Solving, Analytical Skills
Duration: <1 week

Skills evaluated in this interview

I applied via Walk-in and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What is C++
  • Ans. 

    C++ is a high-level programming language used for developing system software, application software, device drivers, and video games.

    • C++ is an extension of the C programming language.

    • It supports object-oriented programming concepts like classes, inheritance, polymorphism, and encapsulation.

    • C++ is used in developing operating systems, browsers, databases, and other software applications.

    • It is known for its performance an...

  • Answered by AI
  • Q2. What is Link List
  • Ans. 

    A data structure that stores a sequence of elements in a linear order.

    • Consists of nodes that contain data and a pointer to the next node.

    • Can be singly linked or doubly linked.

    • Used for implementing stacks, queues, and hash tables.

    • Example: Singly linked list - 1 -> 2 -> 3 -> null

    • Example: Doubly linked list - null <- 1 <-> 2 <-> 3 -> null

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't go

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. Technical stuff from SDH,MPLS,VLAN,IP tables etc
  • Q2. Under which principle does VLAN work?
  • Ans. 

    VLAN works under the principle of network segmentation.

    • VLAN separates a physical network into multiple logical networks.

    • It improves network performance, security, and management.

    • VLAN tags packets with a unique identifier to identify the network they belong to.

    • Example: VLAN can be used to separate guest and employee networks in a company.

  • Answered by AI
  • Q3. What is current CTC and expected CTC
  • Ans. 

    The question asks about the candidate's current and expected salary.

    • Be honest and transparent about your current salary.

    • Research the market rates for your role and level of experience to determine a reasonable expected salary.

    • Consider other benefits and perks besides the base salary.

    • Avoid discussing salary expectations too early in the interview process.

    • Focus on the value you can bring to the company rather than just t

  • Answered by AI

Skills evaluated in this interview

PK Global Software Technologies Interview FAQs

How many rounds are there in PK Global Software Technologies interview?
PK Global Software Technologies interview process usually has 3 rounds. The most common rounds in the PK Global Software Technologies interview process are Technical, One-on-one Round and HR.
How to prepare for PK Global Software Technologies 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 PK Global Software Technologies . The most common topics and skills that interviewers at PK Global Software Technologies expect are Auditing, External Audit, ISMS, ISO 27001 and Information Security Management.
What are the top questions asked in PK Global Software Technologies interview?

Some of the top questions asked at the PK Global Software Technologies interview -

  1. What the digin pattern implemented for sting po...read more
  2. Find the number is even or odd with out using mod(%) opera...read more
  3. Why clients go for automation testing and what is my role in regression test...read more

Tell us how to improve this page.

PK Global Software Technologies Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 810 Interviews
Globant Interview Questions
3.8
 • 172 Interviews
View all

PK Global Software Technologies Reviews and Ratings

based on 5 reviews

2.8/5

Rating in categories

2.7

Skill development

3.7

Work-life balance

3.1

Salary

2.6

Job security

2.7

Company culture

2.8

Promotions

2.8

Work satisfaction

Explore 5 Reviews and Ratings
Senior Software Engineer
24 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Technical Lead
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Technical Manager
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare PK Global Software Technologies 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