Upload Button Icon Add office photos

Filter interviews by

G4S Technology Interview Questions and Answers

Updated 11 Aug 2024

G4S Technology Interview Experiences

Popular Designations

3 interviews found

Interview Questionnaire 

1 Question

  • Q1. How can you mitigate if Project moviing slow and completion period expired.
  • Ans. 

    Mitigate slow project completion after deadline.

    • Identify the root cause of the delay

    • Re-evaluate the project plan and timeline

    • Allocate additional resources if necessary

    • Communicate with stakeholders and manage expectations

    • Implement risk management strategies

    • Consider alternative solutions such as phased delivery or scope reduction

  • Answered by AI

Regional Project Manager Interview Questions asked at other Companies

Q1. How can you mitigate if Project moviing slow and completion period expired.
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Accounts related questions
  • Q2. Work related questions
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Feb 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 - Group Discussion 

It was useless out of job questions were asked irrelevant to the profile. They were asking GL from OTC person whuch was completely irrelevant

Round 3 - One-on-one 

(2 Questions)

  • Q1. Introduction about your past experiences
  • Q2. Journal entries belongs to RTR domain was not meant for OTc person

Interview Preparation Tips

Interview preparation tips for other job seekers - Please do research before joining any company ERP/ software they use are they technically sound or not if they work on latest technology else you will end up doing manual work and leads to frustration

Senior Accounts Executive Interview Questions asked at other Companies

Q1. How To Prepare Cash Flow, What Is GR-IR, Which Type of Invoice Booking Has Done, What TDS Rate Do You Know.
View answer (1)

Interview questions from similar companies

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

Interview Questionnaire 

1 Question

  • Q1. What is Excel what is vlookup what is your strength and weakness

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest and bold

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 140 minutes
Round difficulty - Medium

Test timing was at 2:00 pm , it was conducted in a college and the environment was good for the test. Camera was a primary part of test, so no suspicious activity.

  • Q1. 

    Sum of Two Numbers Represented as Arrays

    Given two numbers in the form of two arrays where each element of the array represents a digit, calculate the sum of these two numbers and return this sum as an ar...

  • Ans. 

    Given two numbers represented as arrays, calculate their sum and return the result as an array.

    • Iterate through the arrays from right to left, adding digits and carrying over if necessary

    • Handle cases where one array is longer than the other by considering the remaining digits

    • Ensure the final sum array does not have any leading zeros

  • Answered by AI
Round 2 - Face to Face 

Round duration - 20 minutes
Round difficulty - Easy

The round was conducted at around 12 p.m. I was called at the college location and then it was conducted. The interviewer was quite polite and frank.

Round 3 - HR 

Round duration - 8 minutes
Round difficulty - Easy

This round was conducted right after finishing and clearing the technical round at the same place and on the same day.

Interview Preparation Tips

Eligibility criteriaAbove 60 %Wipro Limited interview preparation:Topics to prepare for the interview - OOPS, Data Structures, Database Concepts, Coding problemsTime required to prepare for the interview - 2-3 monthsInterview preparation tips for other job seekers

Tip 1 : Practice atleast 2-3 Coding problems daily so your logic building becomes stronger.
Tip 2 : Exercise problems based on OOPS concepts and others too.
Tip 3 : If you can have your own project built, then it's the major point and will act as a plus point.

Application resume tips for other job seekers

Tip 1 : Your resume should be in standard form, short and simple will be more effective.
Tip 2 : Whatever you have learned, you need to mention it in your resume as that will be your primary source of selection and having project on your resume is important.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Apr 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic questions only ... regarding job and experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident ... always say the truth ... never try to fake your details

I applied via Campus Placement and was interviewed before Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Description of project
  • Ans. 

    The project involved designing and implementing a new network infrastructure for a large corporation.

    • Conducted a thorough analysis of the existing network infrastructure

    • Designed a new network architecture that met the company's needs

    • Implemented the new network infrastructure with minimal disruption to business operations

    • Tested and optimized the new network to ensure optimal performance

    • Provided ongoing support and maint

  • Answered by AI
  • Q2. Your previous experince

Interview Preparation Tips

Interview preparation tips for other job seekers - Well prepare for your resume

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

Interview Questionnaire 

1 Question

  • Q1. Its for FP&A process and the major questions were from the basics of FP&A. How it starts and how its ends and Previous job roles.

Interview Preparation Tips

Interview preparation tips for other job seekers - It's quite a moderate interview but be prepare for more rounds of technical interviews.

I applied via Referral and was interviewed before Jun 2021. There were 2 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 - One-on-one 

(1 Question)

  • Q1. Situation Based Basic formulas rolls and responsibilities

Interview Preparation Tips

Interview preparation tips for other job seekers - Great leadership team to work with, Good learning,

I was interviewed before Jun 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 180 minutes
Round difficulty - Easy

It was an mcq + coding round. There were aptitude and ouput based question in mcq. And coding questions were easy

  • Q1. 

    Find the Duplicate Number Problem Statement

    Given an integer array 'ARR' of size 'N' containing numbers from 0 to (N - 2). Each number appears at least once, and there is one number that appears twice. Yo...

  • Ans. 

    Find the duplicate number in an array of integers from 0 to (N-2).

    • Iterate through the array and keep track of the frequency of each number using a hashmap.

    • Return the number with a frequency greater than 1 as the duplicate number.

    • Time complexity can be optimized to O(N) using Floyd's Tortoise and Hare algorithm.

  • Answered by AI
  • Q2. 

    Reverse String Operations Problem Statement

    You are provided with a string S and an array of integers A of size M. Your task is to perform M operations on the string as specified by the indices in array A...

  • Ans. 

    Given a string and an array of indices, reverse substrings based on the indices to obtain the final string.

    • Iterate through the array of indices and reverse the substrings accordingly

    • Ensure the range specified by each index is non-empty

    • Return the final string after all operations are completed

  • Answered by AI
Round 2 - Video Call 

Round duration - 60 Minutes
Round difficulty - Easy

It was technical + hr round. there were 2 people as interviewer. They stated from intro and asked some basic puzzles and hr questions. After that they asked about my projects, technologies and some ds algo and dbms questions.

Interview Preparation Tips

Eligibility criterianaAccenture interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice aptitude
Tip 2 : Focus on practicing coding
Tip 3 : Learn from mistakes

Application resume tips for other job seekers

Tip 1 : Mention some projects that you have done
Tip 2 : Try to have skills that are required for the role

Final outcome of the interviewSelected

Skills evaluated in this interview

G4S Technology Interview FAQs

How many rounds are there in G4S Technology interview?
G4S Technology interview process usually has 2 rounds. The most common rounds in the G4S Technology interview process are One-on-one Round, Resume Shortlist and Group Discussion.
What are the top questions asked in G4S Technology interview?

Some of the top questions asked at the G4S Technology interview -

  1. How can you mitigate if Project moviing slow and completion period expire...read more
  2. Journal entries belongs to RTR domain was not meant for OTc per...read more
  3. Accounts related questi...read more

Tell us how to improve this page.

G4S Technology Interview Process

based on 4 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

Accenture Interview Questions
3.8
 • 8.2k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
Siemens Interview Questions
4.1
 • 420 Interviews
Cisco Interview Questions
4.1
 • 372 Interviews
Bosch Interview Questions
4.2
 • 331 Interviews
Johnson Controls Interview Questions
3.6
 • 262 Interviews
View all

G4S Technology Reviews and Ratings

based on 24 reviews

4.1/5

Rating in categories

4.3

Skill development

4.4

Work-life balance

4.2

Salary

4.5

Job security

4.3

Company culture

4.0

Promotions

4.1

Work satisfaction

Explore 24 Reviews and Ratings
Security Guard
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Risk Analyst
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Security Officer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Project Engineer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Supervisor
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare G4S Technology with

Honeywell Automation

3.8
Compare

Siemens

4.1
Compare

Schneider Electric

4.1
Compare

Johnson Controls

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