In a concurrent system at Infosys, what is a deadlock scenario?
Answer: B
A deadlock occurs when two or more processes are blocked forever, each holding resources the other needs, causing circular dependency.
Q.73Medium
What percentage of Infosys' revenue comes from digital and cloud services as of 2024?
Answer: C
Digital and cloud services represent over 50% of Infosys' revenue in 2024, reflecting the company's focus on modern technology solutions.
Q.74Easy
Which of the following is NOT a pillar of Infosys' core values?
Answer: C
Infosys' core values are Integrity, Agility, Innovation, and Client Success. Aristocracy is not part of their core value system.
Q.75Medium
In microservices architecture used by Infosys, what does the Circuit Breaker pattern prevent?
Answer: B
The Circuit Breaker pattern in microservices prevents cascading failures by stopping requests to a failing service and allowing it time to recover.
Q.76Medium
Which programming paradigm does Infosys predominantly use for cloud-native applications?
Answer: C
Infosys predominantly uses Object-Oriented programming for enterprise applications, though functional programming is increasingly used in cloud-native services.
Q.77Medium
What is the primary advantage of using containerization (Docker) in Infosys' DevOps pipeline?
Answer: B
Docker ensures that applications run consistently across different environments by packaging dependencies, which is crucial for Infosys' global deployment strategies.
Q.78Easy
In Infosys' 2024-25 digital transformation initiatives, which cloud provider has the largest partnership deal?
Answer: B
AWS is Infosys' largest cloud partnership, with significant investments in AWS-based solutions and certifications for employee development.
Q.79Medium
Which design pattern is used when Infosys developers need to ensure only one instance of a database connection pool exists?
Answer: C
The Singleton Pattern ensures that only one instance of a class (like a database connection pool) is created throughout the application lifecycle.
Q.80Hard
What is the expected behavior when a thread calls the wait() method in a synchronized block at Infosys coding standards?
Answer: B
When wait() is called in a synchronized block, the thread releases the object lock and enters a waiting state until notify() or notifyAll() is called.