Upload Button Icon Add office photos

Filter interviews by

REDICO Interview Questions and Answers for Freshers

Updated 9 Aug 2022

REDICO Interview Experiences for Freshers

1 interview found

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 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. Thank you sir for giving me this Golden opportunity to introduce myself My name is Nitin Kumar I am from Rampur my father is a farmer my mother is a housewife my qualification is MBA completed Frome IFTMU Moradabad in 2020 specialisation operations management and marketing 3 Year Experince Of Field Supervisor in Madhusudan P.v.t Ltd.
  • Answered Anonymously
  • Q2. My greatest weaknesses
  • Ans. “I sometimes have trouble saying ‘no’ and end up overwhelmed by my workload. Earlier in my career, I would take on so many projects that I’d work evenings and weekends. It was stressful. I realised this was counterproductive so I started using workload management tools and setting better expectations for myself and my teammates.”
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - In today's time, people consider it very important to know many things for more jobs option, sometimes it brings benefits and sometimes it also causes huge loss. That is why it is necessary to bring specialization in one field so that if someone needs some help in that field then you can do it. That way you can be the best in that area.

Production Supervisor Interview Questions asked at other Companies

Q1. What is the responsibility of production supervisor?
View answer (45)

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. All related to domain javascript/react,
  • Q2. Fallback in lazy loading,optimization techniques/for API call
  • Ans. 

    Fallback in lazy loading is important for optimizing API calls to ensure a smooth user experience.

    • Implementing a loading spinner or placeholder while content is being loaded asynchronously

    • Using a default value or cached data if the API call fails

    • Implementing error handling to gracefully handle any issues with the API call

  • Answered by AI
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Lovely Professional University (LPU) and was interviewed in Nov 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Train,percentage,work

Round 2 - Coding Test 

Array , string , basic

Round 3 - Technical 

(1 Question)

  • Q1. Basic dsa question and oops
Round 4 - HR 

(1 Question)

  • Q1. About company and traditaion question

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare basic dsa like array string , basic math question in programming and oops and sudo code in oops
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Referral and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What's the size of class with and without virtual function ?
  • Ans. 

    The size of a class with virtual functions is larger than the size of a class without virtual functions due to the additional overhead of virtual function tables.

    • Classes with virtual functions have an additional pointer to the virtual function table (vtable) which increases their size.

    • The size of a class without virtual functions is determined by the size of its data members and any padding added for alignment.

    • For exam...

  • Answered by AI
  • Q2. Reverse a linked list, benefit of reversing a doubly linked list ?
  • Ans. 

    Reversing a linked list involves changing the direction of pointers, while reversing a doubly linked list allows for traversal in both directions.

    • To reverse a linked list, iterate through the list and change the direction of pointers to point to the previous node instead of the next node.

    • In a doubly linked list, reversing allows for traversal in both directions, making operations like deletion and insertion more effici...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - C++(core) and OOPs

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. JS - closures , hoisting, event loop ,
  • Q2. Mongodb - sharding , clutering
Round 2 - Coding Test 

Javascript programs - check sum , sql vs mongodb , system desgin

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Some basic aptitude and quants questions were asked with 2 coding questions.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Basic questions on oops
  • Q2. Exception and exception handling
Round 3 - Gaming round 

(2 Questions)

  • Q1. Solve problems by using Function
  • Q2. Solve problems using loops
Round 4 - HR 

(1 Question)

  • Q1. Just basic hr questions
Round 5 - Behavioral 

(1 Question)

  • Q1. Reasoning questions

SWE Intern Interview Questions & Answers

DraftKings user image Anonymous

posted on 2 Oct 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

OA with OOP questions

Round 2 - Coding Test 

1 hr pair programming on hackerrank

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

I applied via Naukri.com and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Assignment 

20 verbal and 1 essay about Last day of the college

Round 2 - Technical 

(2 Questions)

  • Q1. Regression Testing, Adhoc Testing, UAT, SDLC and Perfomance testing
  • Q2. About Games Pub g Explanation
Interview experience
3
Average
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Not Selected

I applied via LinkedIn

Round 1 - HR 

(2 Questions)

  • Q1. Why do you want to work at EA
  • Q2. Describe a time you have a conflict
Round 2 - Technical 

(2 Questions)

  • Q1. What happens when you use a copy constructor in C++
  • Ans. 

    Using a copy constructor in C++ creates a new object by copying the values of another object.

    • Copy constructor is a special member function that creates a new object as a copy of an existing object.

    • It is invoked when a new object is created from an existing object.

    • Example: MyClass obj1; MyClass obj2 = obj1; // Copy constructor is called to create obj2 as a copy of obj1.

  • Answered by AI
  • Q2. When to use pointer/reference
  • Ans. 

    Pointers/references are used to pass memory addresses instead of values, for efficiency and to modify data directly.

    • Use pointers when you need to modify the original data passed to a function

    • Use references when you want to avoid copying large data structures

    • Pointers are commonly used in dynamic memory allocation

    • References are used in function parameters to avoid unnecessary copying

    • Example: int x = 10; int *ptr = &x; *p

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

Based on DSA in C# be thorough with heap tree and map from dsa

Interview Preparation Tips

Interview preparation tips for other job seekers - They conducted the 1st round in HackerEarth platform and it was proctored. They asked from Aptitude (Profit and Loss, SI & CI, Investment) Logical (Arrangement) and few Data sufficient questions but mostly it was from DSA in C# Like time complexity of search and sort algorithms (refer hackerearth platform), heaps trees and maps questions don't worry it was standard. And all the best

REDICO Interview FAQs

How many rounds are there in REDICO interview for freshers?
REDICO interview process for freshers usually has 2 rounds. The most common rounds in the REDICO interview process for freshers are Resume Shortlist and One-on-one Round.

Tell us how to improve this page.

Interview Questions from Similar Companies

Pole To Win Interview Questions
3.5
 • 52 Interviews
Light & Wonder Interview Questions
3.8
 • 29 Interviews
PurpleTalk Interview Questions
3.9
 • 25 Interviews
Electronic Arts Interview Questions
4.2
 • 22 Interviews
IDZ Digital Interview Questions
3.8
 • 22 Interviews
Games24x7 Interview Questions
3.8
 • 18 Interviews
View all

REDICO Reviews and Ratings

based on 2 reviews

4.0/5

Rating in categories

5.0

Skill development

5.0

Work-Life balance

5.0

Salary & Benefits

5.0

Job Security

5.0

Company culture

5.0

Promotions/Appraisal

4.0

Work Satisfaction

Explore 2 Reviews and Ratings
Compare REDICO with

Pole To Win

3.5
Compare

International Game Technology

3.3
Compare

Ubisoft Entertainment

3.8
Compare

Aristocrat Technologies

3.9
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