Upload Button Icon Add office photos

Filter interviews by

Reynold Infotek Interview Questions and Answers for Experienced

Updated 13 Oct 2023

Reynold Infotek Interview Experiences for Experienced

1 interview found

Interview experience
4
Good
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 - HR 

(1 Question)

  • Q1. All related vto screening
Round 3 - One-on-one 

(1 Question)

  • Q1. Related to technical

Lead Talent Acquisition Interview Questions asked at other Companies

Q1. What type of skills are you sourcing?
View answer (1)

Interview questions from similar companies

IT Developer Interview Questions & Answers

Mphasis user image Ganapathy Palanisamy

posted on 14 Jun 2020

I applied via Naukri.com and was interviewed before Jun 2019. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Salary discussion
  • Q2. It was a production support project. So all the questions were asked about Project issues on AP, PO, Expense And GL modules How will you fix the unique constraints Frequent issues on voucher Voucher lif...

Interview Preparation Tips

Interview preparation tips for other job seekers - Technically prepare well

I applied via Recruitment Consultant and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What is capital market?
  • Ans. 

    Capital market is a financial market where long-term securities like stocks, bonds, and other financial instruments are traded.

    • Capital market is a platform for companies to raise long-term funds from investors.

    • It includes both primary market (where new securities are issued) and secondary market (where existing securities are traded).

    • The capital market is regulated by the Securities and Exchange Board of India (SEBI) i...

  • Answered by AI
  • Q2. What is money market?
  • Ans. 

    Money market refers to a segment of the financial market where short-term borrowing and lending of funds take place.

    • Money market deals with short-term financial instruments such as treasury bills, commercial papers, certificates of deposit, etc.

    • It is a low-risk market as the instruments have a short maturity period and are highly liquid.

    • The interest rates in the money market are determined by the demand and supply of f...

  • Answered by AI
  • Q3. What is IPO?
  • Ans. 

    IPO stands for Initial Public Offering. It is the first time a company offers its shares to the public for investment.

    • IPO is a way for companies to raise capital by selling shares to the public.

    • It is a process where a private company becomes a public company.

    • The shares are sold to institutional investors and retail investors.

    • The price of the shares is determined through a process called book building.

    • Examples of succes

  • Answered by AI
  • Q4. What is a difference between bond and mutual fund?
  • Ans. 

    Bonds are debt securities issued by companies or governments, while mutual funds are investment vehicles that pool money from multiple investors.

    • Bonds are fixed-income securities that pay a fixed interest rate to the bondholder.

    • Mutual funds are a collection of stocks, bonds, and other securities that are managed by a professional fund manager.

    • Bonds are generally considered less risky than stocks, but also offer lower r...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good communication skill, good knowledge of investment banking.

I applied via Referral and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Embedded c memory management
  • Q2. Static, extern, auto,volatile, const and where these variables are stored in memory and in which memory type
  • Q3. Heap memory allocation,
  • Q4. I2C, SPI,UART, freertos and questions based on your experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with C, memory allocations, linked lists and serial communication protocols

I applied via Naukri.com and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. What was the architecture used in your project?
  • Q2. What is the IDisposal? Give an example used in the applicstion.
  • Ans. 

    IDisposable is an interface used to release unmanaged resources.

    • It is used to release unmanaged resources like file handles, database connections, etc.

    • It has a single method called Dispose() which is used to release the resources.

    • It is implemented by classes that use unmanaged resources and needs to be disposed of.

    • Example: SqlConnection class implements IDisposable to release the database connection.

    • Example: FileStream...

  • Answered by AI
  • Q3. What is Dependency Injection and how can we inplement those?
  • Ans. 

    Dependency Injection is a design pattern that allows objects to receive dependencies rather than creating them internally.

    • Dependency Injection is used to reduce tight coupling between software components.

    • It allows for easier testing and maintenance of code.

    • There are three types of Dependency Injection: Constructor Injection, Setter Injection, and Interface Injection.

    • Frameworks like Spring and Angular provide built-in s

  • Answered by AI
  • Q4. Write the code to concatenate the value with comma in the given array. int[] arr = {1, 2, 3,4,5}
  • Ans. 

    Concatenate the values in the given integer array with comma.

    • Convert the integer array to string array using Arrays.toString()

    • Use String.join() method to concatenate with comma

  • Answered by AI
  • Q5. Explaination of Interface and Abstract classes.
  • Ans. 

    Interfaces and abstract classes are used for abstraction and defining contracts.

    • Interfaces are a collection of abstract methods that define a contract for a class to implement.

    • Abstract classes are classes that cannot be instantiated and can have both abstract and concrete methods.

    • Interfaces can be implemented by multiple classes, while a class can only inherit from one abstract class.

    • Interfaces are used for loose coupl...

  • Answered by AI
  • Q6. Is it possible to instanciate the abstract class? Explain.
  • Ans. 

    No, abstract classes cannot be instantiated.

    • Abstract classes are incomplete and cannot be instantiated on their own.

    • They can only be used as a base class for other classes.

    • Instantiation of an abstract class will result in a compile-time error.

    • However, concrete classes that inherit from the abstract class can be instantiated.

  • Answered by AI
  • Q7. What is Solid Principle? Give the examples used in your application.
  • Ans. 

    SOLID is a set of principles for object-oriented programming to make software more maintainable and scalable.

    • S - Single Responsibility Principle

    • O - Open/Closed Principle

    • L - Liskov Substitution Principle

    • I - Interface Segregation Principle

    • D - Dependency Inversion Principle

    • Example: Using Single Responsibility Principle to separate UI and business logic

    • Example: Using Open/Closed Principle to extend functionality without mo

  • Answered by AI
  • Q8. Explain about the design pattern used in your application.
  • Ans. 

    We used the Model-View-Controller (MVC) design pattern in our application.

    • MVC separates the application into three interconnected components: the model, the view, and the controller.

    • The model represents the data and business logic of the application.

    • The view displays the data to the user.

    • The controller handles user input and updates the model and view accordingly.

    • MVC promotes separation of concerns and modularity.

    • Examp...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare strongly whatever you have worked practically in your projects.

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. Tell about IoT
  • Ans. 

    IoT stands for Internet of Things, which refers to the network of physical devices, vehicles, home appliances, and other items embedded with sensors, software, and connectivity.

    • IoT enables devices to communicate with each other and with humans, creating a seamless and efficient system.

    • Examples of IoT devices include smart thermostats, fitness trackers, and self-driving cars.

    • IoT has the potential to revolutionize indust...

  • Answered by AI
  • Q2. Differences between IoT and Digital 4.0
  • Ans. 

    IoT and Digital 4.0 are both related to the use of technology, but IoT focuses on connecting devices while Digital 4.0 is about the integration of technology in all aspects of business.

    • IoT is about connecting devices and collecting data for analysis

    • Digital 4.0 is about the integration of technology in all aspects of business

    • IoT is a subset of Digital 4.0

    • IoT is more focused on the physical world while Digital 4.0 is mor...

  • Answered by AI
  • Q3. Process flow in a manufacturing plant
  • Ans. 

    Process flow in a manufacturing plant involves a series of steps to convert raw materials into finished products.

    • Raw materials are received and inspected for quality

    • Materials are then stored in designated areas

    • Production planning and scheduling is done

    • Materials are then moved to the production area

    • Manufacturing process takes place

    • Finished products are inspected and tested

    • Packaging and labeling is done

    • Products are store...

  • Answered by AI

I applied via Naukri.com and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. 1.questions related to projects.
  • Q2. 2. Questions on technical skills.
  • Q3. 3. Why are you planning to switch

Interview Preparation Tips

Interview preparation tips for other job seekers - Very easy questions.
If don't know any question please tell them you don't know.
While explaining project be very confident because it will be face to face round.

I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

14 Questions

  • Q1. Python is interpreted then why .pyc files are there?
  • Ans. 

    Python compiles source code to bytecode for faster execution, stored in .pyc files.

    • Python interpreter compiles source code to bytecode before execution

    • Bytecode is platform-independent and faster to execute than source code

    • Compiled bytecode is stored in .pyc files for future use and faster startup time

    • If source code is modified, .pyc files are automatically recompiled

  • Answered by AI
  • Q2. Explain Django life cycle.
  • Ans. 

    Django life cycle involves request processing, URL routing, view function execution, template rendering, and response generation.

    • When a request is made, Django checks the URL patterns defined in urls.py file.

    • If a match is found, the corresponding view function is executed.

    • The view function processes the request and returns a response.

    • The response is rendered using a template, if applicable.

    • The final response is sent ba

  • Answered by AI
  • Q3. Explain ownership of the project approach.
  • Ans. 

    Ownership of the project approach refers to taking responsibility for the project's success and making decisions accordingly.

    • The owner of the project approach should have a clear understanding of the project's goals and objectives.

    • They should be able to make informed decisions about the project's direction and prioritize tasks accordingly.

    • The owner should also be accountable for the project's success or failure and be ...

  • Answered by AI
  • Q4. Difference between sort and sorted, dump vs dumps, load vs loads etc.
  • Ans. 

    Difference between sort and sorted, dump vs dumps, load vs loads etc.

    • sort() is a method of list object while sorted() is a built-in function

    • dump() serializes an object to a file while dumps() serializes to a string

    • load() deserializes an object from a file while loads() deserializes from a string

  • Answered by AI
  • Q5. Design patterns in Python?
  • Ans. 

    Design patterns are reusable solutions to common problems in software design.

    • Design patterns provide a structured approach to solving design problems.

    • Python has several design patterns such as Singleton, Factory, Observer, etc.

    • Each design pattern has its own purpose and usage.

    • Design patterns promote code reusability, maintainability, and scalability.

    • Understanding design patterns helps in writing cleaner and more effici

  • Answered by AI
  • Q6. Generator, Iterator, enumeration, Yeild, decorators, closures etc.
  • Q7. Explain dict, tuple, list, set, string etc.
  • Ans. 

    Data structures in Python: dict, tuple, list, set, string

    • dict: unordered collection of key-value pairs

    • tuple: ordered, immutable collection of elements

    • list: ordered, mutable collection of elements

    • set: unordered collection of unique elements

    • string: ordered collection of characters

  • Answered by AI
  • Q8. How many python modules you have used?
  • Ans. 

    I have used multiple python modules for various purposes.

    • I have used NumPy for numerical computations.

    • I have used Pandas for data analysis and manipulation.

    • I have used Matplotlib for data visualization.

    • I have used Flask for web development.

    • I have used Requests for making HTTP requests.

    • I have used BeautifulSoup for web scraping.

    • I have used Scikit-learn for machine learning tasks.

    • I have used TensorFlow for deep learning

  • Answered by AI
  • Q9. Can we use list as dict key?
  • Ans. 

    Yes, but only if the list is immutable.

    • Lists are mutable and cannot be used as dict keys.

    • Tuples are immutable and can be used as dict keys.

    • If a list needs to be used as a key, it can be converted to a tuple.

  • Answered by AI
  • Q10. Explain list slices, starts and ends at.
  • Ans. 

    List slices are a way to extract a portion of a list by specifying start and end indices.

    • List slices are denoted by using square brackets with start and end indices separated by a colon.

    • The start index is inclusive and the end index is exclusive.

    • If the start index is omitted, it defaults to 0. If the end index is omitted, it defaults to the length of the list.

    • Negative indices can be used to count from the end of the li...

  • Answered by AI
  • Q11. Explain Lambda functions. Map, reduce, filter etc.
  • Ans. 

    Lambda functions are anonymous functions that can be passed as arguments to other functions.

    • Lambda functions are also known as anonymous functions because they don't have a name.

    • They are often used as arguments to higher-order functions like map, reduce, and filter.

    • Map applies a function to each element of an array and returns a new array with the results.

    • Reduce applies a function to the elements of an array and return...

  • Answered by AI
  • Q12. Explain memory management of python.
  • Ans. 

    Python uses automatic memory management through garbage collection.

    • Python uses reference counting to keep track of objects in memory.

    • When an object's reference count reaches zero, it is deleted by the garbage collector.

    • Python also uses a cyclic garbage collector to detect and delete objects with circular references.

    • Memory can be managed manually using the ctypes module.

    • Python's memory management is efficient and transp

  • Answered by AI
  • Q13. Explain GIL python.
  • Ans. 

    GIL stands for Global Interpreter Lock, which is a mechanism used in CPython to ensure thread safety.

    • GIL is a mutex that allows only one thread to execute Python bytecode at a time.

    • It is necessary because CPython's memory management is not thread-safe.

    • GIL can cause performance issues in CPU-bound multi-threaded applications.

    • However, it does not affect I/O-bound or multi-process applications.

    • Alternative Python implement...

  • Answered by AI
  • Q14. Explain Threading of Python.
  • Ans. 

    Threading in Python allows multiple threads of execution to run concurrently within a single process.

    • Python's threading module provides a way to create and manage threads.

    • Threads share the same memory space and can access the same variables and data structures.

    • Threading can improve performance for I/O-bound tasks, but not for CPU-bound tasks.

    • Python's Global Interpreter Lock (GIL) limits true parallelism in multi-thread...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident but don't loose hopes sometimes interviewer has different views may be he can't predict those with. But some where these gets matches and we get job. Best of luck.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Why do you left the previous organisation?
  • Q2. Explain about the process you worked for

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep it simple and communication is the key and try to be humble as possible.

Interview Questionnaire 

2 Questions

  • Q1. Describe the situation where you have gone out of the box to help the customer.
  • Ans. 

    I once went out of the box to help a customer by personally delivering their order when the delivery service failed.

    • Delivery service failed to deliver a customer's order

    • To ensure customer satisfaction, I personally delivered the order

    • Customer was delighted with the extra effort

  • Answered by AI
  • Q2. If you get such questions in interviews always try to be short and clear in framing sentences. Always use Star technique to answer such questions. Situation task action result.

Reynold Infotek Interview FAQs

How many rounds are there in Reynold Infotek interview for experienced candidates?
Reynold Infotek interview process for experienced candidates usually has 3 rounds. The most common rounds in the Reynold Infotek interview process for experienced candidates are Resume Shortlist, HR and One-on-one Round.
How to prepare for Reynold Infotek interview for experienced candidates?
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 Reynold Infotek. The most common topics and skills that interviewers at Reynold Infotek expect are Javascript, Java, SQL, Web Technologies and AWS.
What are the top questions asked in Reynold Infotek interview for experienced candidates?

Some of the top questions asked at the Reynold Infotek interview for experienced candidates -

  1. All related vto screen...read more
  2. Related to techni...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

DXC Technology Interview Questions
3.7
 • 795 Interviews
Mphasis Interview Questions
3.4
 • 780 Interviews
Nagarro Interview Questions
4.0
 • 754 Interviews
Publicis Sapient Interview Questions
3.5
 • 600 Interviews
GlobalLogic Interview Questions
3.7
 • 561 Interviews
View all

Reynold Infotek Reviews and Ratings

based on 4 reviews

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-Life balance

4.2

Salary & Benefits

4.2

Job Security

5.0

Company culture

4.2

Promotions/Appraisal

5.0

Work Satisfaction

Explore 4 Reviews and Ratings
Talent Acquisition Executive
4 salaries
unlock blur

₹1.5 L/yr - ₹3.4 L/yr

Lead Talent Acquisition
4 salaries
unlock blur

₹2 L/yr - ₹2.8 L/yr

Talent Acquisition Specialist
3 salaries
unlock blur

₹2 L/yr - ₹2.3 L/yr

Explore more salaries
Compare Reynold Infotek with

DXC Technology

3.7
Compare

Mphasis

3.4
Compare

Nagarro

4.0
Compare

Hexaware Technologies

3.6
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