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 Software Developer Interview Questions and Answers for Freshers

Updated 8 Sep 2024

PCS-Global Software Developer Interview Experiences for Freshers

1 interview found

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.

Interview questions from similar companies

Interview Preparation Tips

Round: Group Discussion
Experience: They check my skills also my mind skills with cross questioning
Tips: Consentration on questions

Round: Problem Statement
Experience: They check my skills also my mind skills with cross questioning
Tips: Consentration on questions

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

I applied via Indeed and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. About myself and my working skills and my previous experience
  • Q2. What is expected salary
  • Q3. Are willing to reloacte
  • Ans. 

    Yes, I am willing to relocate for the right opportunity.

    • I am open to relocating for a position that aligns with my career goals

    • I have relocated for previous job opportunities and am comfortable with the process

    • I understand the importance of being flexible and adaptable in the tech industry

  • Answered by AI
Round 2 - Coding Test 

C#,Dotnet MVC,Webform ,sql server, write code ,they give task ask about and explanation.

Round 3 - HR 

(2 Questions)

  • Q1. Policy term and conditions and expectation
  • Q2. Why i am leaving privious organization

Interview Preparation Tips

Interview preparation tips for other job seekers - Good experience about my interview and job at chandigarh university
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 - One-on-one 

(1 Question)

  • Q1. Question about multidimensional array and basic from core
Round 3 - One-on-one 

(1 Question)

  • Q1. Talk about your past expeience

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are a techie or software developer don't join this company, it's better to be jobless than be here as you lose your confidence, Lala Seth company h C4 ki if you missed to greet or wish them you will be fired immediately and top of it managers and TL will keep on saying "Hum upar fight kar rhe h" kissey or kab bs ye ni pata.

Interview Questionnaire 

3 Questions

  • Q1. Regarding Cadd
  • Q2. Asked me about some tools
  • Q3. About me

Interview Preparation Tips

Round: Test
Experience: General

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

I applied via Approached by Company and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Codes of countries cities
  • Ans. 

    The codes of countries and cities are unique identifiers used for various purposes.

    • Country codes are typically two-letter codes assigned by the International Organization for Standardization (ISO). For example, the country code for the United States is 'US'.

    • City codes can vary depending on the system used. Some cities may have official codes assigned by government authorities, while others may use codes based on airpor...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Read geography well

Interview Questionnaire 

2 Questions

  • Q1. About project
  • Q2. Spring boot

I applied via Job Portal and was interviewed before Sep 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Array, String problem and java , c

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic knowledge of java and c++

I applied via Recruitment Consultant and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. In the first round, questions were mainly related to the code written in the coding round. 1 take home assignment was given that has to be submitted within 1 week. So the questions were related to that.
  • Q2. In the second round, 1 live coding session was there along with that some general software enginnering questions related to git. Couple of logical reasoning questions were also asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to write questions in a notebook and build your answer, it helps a lot. This advice is mainly for logical reasoning and coding related questions. (This interview is taken through video call during pandemic, so no white board available)

I appeared for an interview before Mar 2021.

Round 1 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was a technical round with questions on DBMS.

  • Q1. What is data integrity?
  • Ans. 

    Data integrity refers to the accuracy, consistency, and reliability of data throughout its lifecycle.

    • Data integrity ensures that data is accurate and consistent in storage and transmission.

    • It involves maintaining the quality and reliability of data over time.

    • Methods for ensuring data integrity include checksums, encryption, and error detection codes.

    • Examples of data integrity violations include data corruption, unautho

  • Answered by AI
  • Q2. What is a trigger in the context of a database management system?
  • Ans. 

    A trigger is a special type of stored procedure that automatically executes when certain events occur in a database.

    • Triggers are used to enforce business rules, maintain data integrity, and automate repetitive tasks.

    • They can be triggered by INSERT, UPDATE, or DELETE operations on a table.

    • Examples of triggers include auditing changes to a table, updating related tables when a record is modified, or enforcing referential

  • Answered by AI
  • Q3. What is the difference between clustered and non-clustered indexes in a database management system?
  • Ans. 

    Clustered indexes physically order the data in the table, while non-clustered indexes do not.

    • Clustered indexes determine the physical order of data in the table, while non-clustered indexes do not.

    • A table can have only one clustered index, but multiple non-clustered indexes.

    • Clustered indexes are faster for retrieval of data, especially range queries, compared to non-clustered indexes.

    • Non-clustered indexes are stored se...

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical interview round with questions on DBMS.

  • Q1. What is the difference between UNION and UNION ALL in SQL?
  • Ans. 

    UNION combines and removes duplicates, UNION ALL combines without removing duplicates.

    • UNION merges the result sets of two or more SELECT statements and removes duplicates.

    • UNION ALL merges the result sets of two or more SELECT statements without removing duplicates.

    • UNION is slower than UNION ALL as it involves removing duplicates.

    • Example: SELECT column1 FROM table1 UNION SELECT column1 FROM table2;

    • Example: SELECT column...

  • Answered by AI
  • Q2. What are the functions of a cursor in PL/SQL?
  • Ans. 

    A cursor in PL/SQL is used to retrieve and process multiple rows of data one at a time.

    • Allows iteration over a result set

    • Retrieves data row by row

    • Can be used to update or delete rows in a table

    • Must be declared, opened, fetched, and closed

  • Answered by AI
  • Q3. Write a SQL query to fetch the nth highest salary from a table.
  • Ans. 

    SQL query to fetch the nth highest salary from a table

    • Use the ORDER BY clause to sort salaries in descending order

    • Use the LIMIT clause to fetch the nth highest salary

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

This was a managerial round with typical behavioral problems.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPACerner Corporation interview preparation:Topics to prepare for the interview - SQL, Database Management Systems, OOPS, DSA, System DesignTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Since this was a SQL post, I would suggest you to get the basics intact and try practicing few queries.
Tip 2 : Must do Previously asked Interview as well as Online Test Questions.
Tip 3 : Go through all the previous interview experiences from Codestudio and Leetcode.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

PCS-Global Interview FAQs

How many rounds are there in PCS-Global Software Developer interview for freshers?
PCS-Global interview process for freshers usually has 1 rounds. The most common rounds in the PCS-Global interview process for freshers are HR.
What are the top questions asked in PCS-Global Software Developer interview for freshers?

Some of the top questions asked at the PCS-Global Software Developer interview for freshers -

  1. Tell Me Difference Between Error And Exception and how exception is handled in ...read more
  2. Difference Between Final , Finally , and Finalize in Jav...read more
  3. Case study in java and pyt...read more

Tell us how to improve this page.

PCS-Global Software Developer Interview Process for Freshers

based on 1 interview

Interview experience

1
  
Bad
View more
PCS-Global Software Developer Salary
based on 32 salaries
₹0.6 L/yr - ₹3.5 L/yr
75% less than the average Software Developer Salary in India
View more details

PCS-Global Software Developer Reviews and Ratings

based on 15 reviews

3.3/5

Rating in categories

3.3

Skill development

3.2

Work-life balance

3.1

Salary

3.3

Job security

3.2

Company culture

3.2

Promotions

3.2

Work satisfaction

Explore 15 Reviews and Ratings
Software Developer
32 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

Frankfinn Institute of Air Hostess Training

3.9
Compare

Amity University

3.6
Compare

Chandigarh University

4.1
Compare

Orchids International School

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