Find Interview Questions for Top Companies
Alpha-e Barcode Solutions Interview Questions and Answers
Ques:- Implement a specialStack class which should support O(1) push O(1) pop and should return minimum element in the stack in O(1) time
Right Answer:
```python
class SpecialStack:
def __init__(self):
self.stack = []
self.min_stack = []

def push(self, value):
self.stack.append(value)
if not self.min_stack or value <= self.min_stack[-1]:
self.min_stack.append(value)

def pop(self):
if self.stack:
value = self.stack.pop()
if value == self.min_stack[-1]:
self.min_stack.pop()
return value
return None

def get_min(self):
if self.min_stack:
return self.min_stack[-1]
return None
```
Ques:- Which of the following numbers cannot be represented accurately in > binary? > a) 0.1 b) 6.5 c) 1/16 d)1.32 e) 0.590625 (not sure abt option e) > > 1. a only > 2. a and b > 3. a, b and d > 4. a, b and e > (not sure about option 3)
Ques:- You need to create a new group called sales with Bob, Mary and Joe as members. Which of the following would accomplish this?Choose one:a. Add the following line to the /etc/group file: sales:44:bob,mary,joeb. Issue the command groupadd sales.c. Issue the command groupadd -a sales bob,mary,joed. Add the following line to the /etc/group file: sales::44:bob,mary,joe
Ques:- How are the “activity time” estimates done?
Right Answer:

Activity time estimates are done by analyzing the scope of the project, consulting with team members and subject matter experts, using historical data from similar projects, and applying estimation techniques such as expert judgment, analogous estimating, parametric estimating, or three-point estimating.

Ques:- What does Scope management involve?
Right Answer:
Scope management involves defining, controlling, and managing all the work required to complete a project successfully. This includes identifying project requirements, documenting them, and ensuring that all necessary tasks are included while preventing scope creep.
Ques:- How do project scheduling help achieve project execution?
Right Answer:
Project scheduling helps achieve project execution by organizing tasks, allocating resources, setting deadlines, and establishing a timeline, which ensures that the project stays on track, meets deadlines, and efficiently utilizes resources.
Ques:- What is SCR?
Right Answer:
SCR stands for Software Change Request. It is a formal request to modify a software system, typically used to document and manage changes in a project.
Ques:- What was your achievement with the previous company?
Right Answer:
In my previous company, I successfully led a project that improved our software's performance by 30%, resulting in increased customer satisfaction and a 15% boost in sales.
Ques:- Why do you want to change the current organization
Right Answer:
I want to change my current organization to seek new challenges, grow my skills, and find opportunities that align better with my career goals and values.
Ques:- What is the GDP growth of India?
Right Answer:
As of my last update, India's GDP growth rate for the fiscal year 2022-2023 was approximately 7.2%. Please check the latest data for the most current figure.
AmbitionBox Logo

What makes Takluu valuable for interview preparation?

1 Lakh+
Companies
6 Lakh+
Interview Questions
50K+
Job Profiles
20K+
Users