Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by PCS-Global Team. If you also belong to the team, you can get access from here

PCS-Global Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

PCS-Global Interview Questions, Process, and Tips

Updated 29 Nov 2024

Top PCS-Global Interview Questions and Answers

View all 12 questions

PCS-Global Interview Experiences

Popular Designations

18 interviews found

Software Developer Interview Questions & Answers

user image Rajesh Bhosale

posted on 8 Sep 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. How Java Works ?
  • Ans. 

    Java is a high-level programming language that follows the principle of 'write once, run anywhere' using the Java Virtual Machine (JVM).

    • Java code is compiled into bytecode, which is then executed by the JVM.

    • Java is platform-independent, meaning the same code can run on any device with a JVM.

    • Java supports object-oriented programming concepts like classes, objects, and inheritance.

    • Java has a rich set of libraries and fra...

  • Answered by AI
  • Q2. Difference Between Final , Finally , and Finalize in Java .
  • Ans. 

    Final is a keyword used to declare constants, Finally is a block of code that always executes, and Finalize is a method used for cleanup.

    • Final is used to declare constants in Java.

    • Finally is a block of code that always executes, typically used in try-catch-finally blocks.

    • Finalize is a method in Java used for cleanup operations before an object is garbage collected.

  • Answered by AI
  • Q3. Tell Me Difference Between Error And Exception and how exception is handled in java ?
  • Ans. 

    Error is a compile-time issue, while exception is a runtime issue. Exceptions are handled using try-catch blocks in Java.

    • Error is a compile-time issue, detected by the compiler. Exception is a runtime issue, occurring during program execution.

    • Errors are generally caused by the environment in which the application is running, while exceptions are caused by the application itself.

    • In Java, exceptions are handled using try...

  • Answered by AI

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed before Nov 2023. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a Salesforce Developer with 5 years of experience in developing custom solutions for clients.

    • 5 years of experience in Salesforce development

    • Strong knowledge of Apex, Visualforce, and Lightning components

    • Experience in integrating Salesforce with external systems

    • Certified Salesforce Developer

    • Passionate about creating efficient and scalable solutions

  • Answered by AI
  • Q2. Tell me about your project
  • Q3. What are your tech skill
  • Ans. 

    I have strong technical skills in Salesforce development, including Apex, Visualforce, Lightning components, and Salesforce integrations.

    • Proficient in Apex programming language for developing custom business logic in Salesforce

    • Experience in creating Visualforce pages for custom user interfaces

    • Knowledge of Lightning components for building modern and responsive UIs

    • Familiarity with Salesforce integrations using REST and ...

  • Answered by AI
  • Q4. Some questions on from your CV
  • Q5. Anything to discuss

Salesforce Developer Interview Questions asked at other Companies

Q1. Write a trigger to update contact when accounts phone changed.
View answer (5)
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - HR 

(3 Questions)

  • Q1. Tell me about yourself.
  • Q2. Your strengths and weaknesses.
  • Q3. You have to pay money for the training period.

Interview Preparation Tips

Interview preparation tips for other job seekers - This company is doing a scam in the name of hiring freshers, wasting so much time, and staging a real-time experience which everything looks like a real thing. After that, they are asking for around 5900 rupees (the original amount of 5000 + GST) for training purposes. Please do not get yourself into a scam like this.

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Simple banking system in java

Round 2 - HR 

(1 Question)

  • Q1. No questions, they.asked

Interview Preparation Tips

Interview preparation tips for other job seekers - After coding round they will assure you to provide a training session which will be for 3 months for this training session they asked for paying 5,900rs after that they will provide employment id .. after 3 months they will pay based on your performance and the salary will be 5k to 15k based on your project

Software Developer Trainee Interview Questions asked at other Companies

Q1. 1. Tell me about your self 2. Difference Between c & c++. 3. what is class? 4. what is object? 5. what is polymorphism? types of polymorphism explain real example of polymorphism. 6. what is inheritence? Difference between multiple &amp... read more
View answer (2)

PCS-Global interview questions for popular designations

 Software Developer

 (3)

 Software Developer Trainee

 (3)

 Trainee

 (3)

 Executive Accountant

 (1)

 Java Full Stack Developer

 (1)

 Java Software Engineer

 (1)

 Salesforce Developer

 (1)

 Senior Java Developer

 (1)

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Introduction to the same as a friend

Senior Java Developer Interview Questions asked at other Companies

Q1. Delete Kth node From EndYou have been given a singly Linked List of 'N' nodes with integer data and an integer 'K'. Your task is to remove the Kth node from the end of the given Linked List. For example: The given linked list is 1 -> 2 -... read more
View answer (4)

Trainee Interview Questions & Answers

user image Anonymous

posted on 31 Jan 2024

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

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

Round 1 - Technical 

(1 Question)

  • Q1. What Is Inheritance? Difference between Java and c++?
  • Ans. 

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

    • Inheritance allows code reuse and promotes code organization.

    • In Java, classes can only inherit from a single class (single inheritance), while in C++, classes can inherit from multiple classes (multiple inheritance).

    • Java uses the 'extends' keyword to implement inheritance, while C++ uses the ':' ...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Tell me about Yourself
  • Q2. What is your short-term and lifeterm goals?

Skills evaluated in this interview

Trainee Interview Questions asked at other Companies

Q1. Ques1: There is a big file of words which is dynamically changing. We are continuously adding some words into it. How would you keep track of top 10 trending words at each moment? Ques2:Write a function that returns the length of the longes... read more
View answer (2)
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

English test and email writing

Round 2 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. How much expectation you have

Interview Preparation Tips

Interview preparation tips for other job seekers - need to know about candidates rejection reason

Executive Accountant Interview Questions asked at other Companies

Q1. What is P2P cycle , 3 way match , and what will you do if Approvals are missing in case of Non PO Invoices.
View answer (4)

Trainee Interview Questions & Answers

user image Anonymous

posted on 31 Jan 2024

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

(2 Questions)

  • Q1. What is Java ? What is Inheritance?
  • Ans. 

    Java is a popular programming language known for its platform independence.

    • Java is an object-oriented language.

    • It was developed by Sun Microsystems.

    • Java programs are compiled into bytecode and run on a Java Virtual Machine (JVM).

    • Java supports inheritance, which allows classes to inherit properties and behaviors from other classes.

    • Inheritance promotes code reusability and helps in creating a hierarchical class structure

  • Answered by AI
  • Q2. What is Joins? Difference between right join and Left Join?
  • Ans. 

    Joins are used in databases to combine rows from two or more tables based on a related column between them.

    • Joins are used to retrieve data from multiple tables in a single query.

    • Right join returns all the rows from the right table and the matching rows from the left table.

    • Left join returns all the rows from the left table and the matching rows from the right table.

    • In right join, if there is no match, NULL values are re...

  • Answered by AI

Skills evaluated in this interview

Trainee Interview Questions asked at other Companies

Q1. Ques1: There is a big file of words which is dynamically changing. We are continuously adding some words into it. How would you keep track of top 10 trending words at each moment? Ques2:Write a function that returns the length of the longes... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Easy round anyone can pass this test

Round 2 - Technical 

(2 Questions)

  • Q1. Oops, Try catch, overloading overriding
  • Q2. Even the interviewer don't know the answer. Just be like kiladi kingfisher. You will get the job
Round 3 - HR 

(1 Question)

  • Q1. You education background thats all

Interview Preparation Tips

Interview preparation tips for other job seekers - If you get the job they reject it or use that offer letter to bargain. Well you can't bargain with salary negotiation. Because you won't get the salary or stipend in you entire life in PCS Global. Thats also they mention in offer letter. Don't fall for false accuranced company. Best of luck.

Java Full Stack Developer Interview Questions asked at other Companies

Q1. Coding question - 1. Create a immutable class of orders. What happens when two objects are created out of it. 2.Using the immutable orders create a set of orders and how will you sort these out. 3.Given a List of list of string of integers ... read more
View answer (1)
Interview experience
1
Bad
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. Java based que for formality only
Round 3 - HR 

(1 Question)

  • Q1. General conversation.

Interview Preparation Tips

Interview preparation tips for other job seekers - I have never seen this type of fake company
They will take your interview and then give you direct joining.
After that they talk about training with no stipend money and training will be free of cost.
No training duration, No money, No salary packege.
Lastly they call you to take your call leter and that time they ask 10,000 money for training cost.

They will give you another offer for HR post with 2000 salary only for one month if you are female candidate to trap other candidates.

Please dont play with already frustrated candidate in this recession period.
Thank you!!

Software Developer Trainee Interview Questions asked at other Companies

Q1. 1. Tell me about your self 2. Difference Between c & c++. 3. what is class? 4. what is object? 5. what is polymorphism? types of polymorphism explain real example of polymorphism. 6. what is inheritence? Difference between multiple &amp... read more
View answer (2)

PCS-Global Interview FAQs

How many rounds are there in PCS-Global interview?
PCS-Global interview process usually has 1-2 rounds. The most common rounds in the PCS-Global interview process are HR, Technical and Resume Shortlist.
How to prepare for PCS-Global 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 PCS-Global. The most common topics and skills that interviewers at PCS-Global expect are Java, Python, Application Programming, Software Development and Information Technology.
What are the top questions asked in PCS-Global interview?

Some of the top questions asked at the PCS-Global interview -

  1. What is class, object, abstraction, encapsulation in Java. Give real time examp...read more
  2. What is your weak point and strong poin...read more
  3. 2.what is the difference between constructor and meth...read more
How long is the PCS-Global interview process?

The duration of PCS-Global interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

PCS-Global Interview Process

based on 13 interviews

Interview experience

2.8
  
Poor
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
Cyient Interview Questions
3.6
 • 284 Interviews
View all

PCS-Global Reviews and Ratings

based on 108 reviews

3.5/5

Rating in categories

3.7

Skill development

3.6

Work-life balance

3.2

Salary

3.4

Job security

3.5

Company culture

3.4

Promotions

3.4

Work satisfaction

Explore 108 Reviews and Ratings
Software Developer
33 salaries
unlock blur

₹0.6 L/yr - ₹3.5 L/yr

Data Analyst
20 salaries
unlock blur

₹0.7 L/yr - ₹3 L/yr

Software Engineer Trainee
17 salaries
unlock blur

₹1 L/yr - ₹3.5 L/yr

Junior Software Developer
15 salaries
unlock blur

₹0.9 L/yr - ₹2 L/yr

Software Engineer
14 salaries
unlock blur

₹1.3 L/yr - ₹4.3 L/yr

Explore more salaries
Compare PCS-Global with

Infosys

3.6
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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