Upload Button Icon Add office photos

Filter interviews by

Altiostar Member Technical Staff Interview Questions and Answers

Updated 19 Jun 2023

8 Interview questions

A Member Technical Staff was asked
Q. How do structs and pointers store data?
Ans. 

Structs store data in a contiguous block of memory, while pointers store memory addresses.

  • Structs store data in a sequential manner in memory

  • Pointers store memory addresses of variables

  • Example: struct Person { char name[20]; int age; }; Person p; int *ptr = &p.age;

A Member Technical Staff was asked
Q. What is structure padding?
Ans. 

Structure padding is the insertion of empty bytes between structure members to ensure proper alignment.

  • Padding is added to align data types on memory boundaries for efficiency.

  • It helps in optimizing memory access and improving performance.

  • For example, a structure with int, char, and double members may have padding to align them properly.

Member Technical Staff Interview Questions Asked at Other Companies

Q1. Next Smallest Palindrome Problem Statement Find the next smallest ... read more
asked in Salesforce
Q2. Buy and Sell Stock Problem Statement Imagine you are Harshad Meht ... read more
Q3. Check Permutation Problem Statement Given two strings 'STR1' and ... read more
asked in Salesforce
Q4. Longest Happy String Problem Statement Given three non-negative i ... read more
asked in Salesforce
Q5. Optimal Strategy for a Coin Game You are playing a coin game with ... read more
A Member Technical Staff was asked
Q. Considering the scheduler as a function, what are its inputs, outputs, and functionality?
Ans. 

A scheduler is a function that manages the execution of tasks or processes.

  • Inputs: tasks or processes to be scheduled, priority or order of execution

  • Output: schedule or order in which tasks or processes will be executed

  • Functioning: determines the order of execution based on predefined criteria or algorithms

A Member Technical Staff was asked
Q. Explain what SPS is and its scheduling mechanism.
Ans. 

SPS stands for Scheduling Policy Subsystem. It is responsible for managing the scheduling of processes in an operating system.

  • SPS is a component of the operating system that handles process scheduling.

  • It determines the order in which processes are executed on the CPU.

  • SPS uses various scheduling algorithms to make decisions.

  • Some common scheduling algorithms include First-Come, First-Served (FCFS), Round Robin, and ...

A Member Technical Staff was asked
Q. Explain the UE attach procedure.
Ans. 

The Ue attach procedure is a process in cellular networks where a user equipment (UE) establishes a connection with the network.

  • The UE sends an attach request to the network.

  • The network validates the request and assigns a temporary identifier to the UE.

  • The network updates its location information for the UE.

  • The network sends an attach accept message to the UE.

  • The UE acknowledges the attach accept message.

  • The netwo...

A Member Technical Staff was asked
Q. Explain RAT1 allocation.
Ans. 

RAT1 allocation is a process of assigning resources to a specific RAT1 (Radio Access Technology 1) network.

  • RAT1 allocation involves assigning resources such as frequency bands, time slots, and channel codes to a specific RAT1 network.

  • It is used in cellular networks to manage the allocation of resources for different radio access technologies.

  • For example, in a LTE (Long-Term Evolution) network, RAT1 allocation dete...

A Member Technical Staff was asked
Q. How does CQI play a role in downlink MCS selection?
Ans. 

CQI plays a crucial role in downlink MCS selection.

  • CQI stands for Channel Quality Indicator.

  • It is a measurement of the quality of the wireless channel between the base station and the user equipment.

  • Based on the CQI, the base station determines the appropriate modulation and coding scheme (MCS) for downlink transmission.

  • Higher CQI values indicate better channel conditions and allow for higher MCS with higher data ...

Are these interview questions helpful?
A Member Technical Staff was asked
Q. Storage classes in C
Ans. 

Storage classes in C define the scope and lifetime of variables.

  • There are four storage classes in C: auto, register, static, and extern.

  • Auto variables are local to the block they are declared in and have automatic storage duration.

  • Register variables are stored in CPU registers for faster access.

  • Static variables retain their value between function calls.

  • Extern variables are declared outside of any function and can ...

Altiostar Member Technical Staff Interview Experiences

2 interviews found

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

I applied via Recruitment Consulltant and was interviewed in May 2023. 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 - Coding Test 

Written manually on paper. 40 questions

Round 3 - Technical 

(5 Questions)

  • Q1. What is structure padding
  • Ans. 

    Structure padding is the insertion of empty bytes between structure members to ensure proper alignment.

    • Padding is added to align data types on memory boundaries for efficiency.

    • It helps in optimizing memory access and improving performance.

    • For example, a structure with int, char, and double members may have padding to align them properly.

  • Answered by AI
  • Q2. How do structs and pointers store data
  • Ans. 

    Structs store data in a contiguous block of memory, while pointers store memory addresses.

    • Structs store data in a sequential manner in memory

    • Pointers store memory addresses of variables

    • Example: struct Person { char name[20]; int age; }; Person p; int *ptr = &p.age;

  • Answered by AI
  • Q3. Error producing questions
  • Q4. Storage classes in C
  • Ans. 

    Storage classes in C define the scope and lifetime of variables.

    • There are four storage classes in C: auto, register, static, and extern.

    • Auto variables are local to the block they are declared in and have automatic storage duration.

    • Register variables are stored in CPU registers for faster access.

    • Static variables retain their value between function calls.

    • Extern variables are declared outside of any function and can be ac...

  • Answered by AI
  • Q5. Linux processes, fork, zombie, orphan

Skills evaluated in this interview

Interview Questionnaire 

7 Questions

  • Q1. Explain Ue attach Procedure?
  • Ans. 

    The Ue attach procedure is a process in cellular networks where a user equipment (UE) establishes a connection with the network.

    • The UE sends an attach request to the network.

    • The network validates the request and assigns a temporary identifier to the UE.

    • The network updates its location information for the UE.

    • The network sends an attach accept message to the UE.

    • The UE acknowledges the attach accept message.

    • The network up...

  • Answered by AI
  • Q2. Explain what is SPS and its scheduling mechamism
  • Ans. 

    SPS stands for Scheduling Policy Subsystem. It is responsible for managing the scheduling of processes in an operating system.

    • SPS is a component of the operating system that handles process scheduling.

    • It determines the order in which processes are executed on the CPU.

    • SPS uses various scheduling algorithms to make decisions.

    • Some common scheduling algorithms include First-Come, First-Served (FCFS), Round Robin, and Prior...

  • Answered by AI
  • Q3. Consider scheduler as an function, tell its inputs and output and functioning
  • Ans. 

    A scheduler is a function that manages the execution of tasks or processes.

    • Inputs: tasks or processes to be scheduled, priority or order of execution

    • Output: schedule or order in which tasks or processes will be executed

    • Functioning: determines the order of execution based on predefined criteria or algorithms

  • Answered by AI
  • Q4. Explain RAT1 allocation
  • Ans. 

    RAT1 allocation is a process of assigning resources to a specific RAT1 (Radio Access Technology 1) network.

    • RAT1 allocation involves assigning resources such as frequency bands, time slots, and channel codes to a specific RAT1 network.

    • It is used in cellular networks to manage the allocation of resources for different radio access technologies.

    • For example, in a LTE (Long-Term Evolution) network, RAT1 allocation determine...

  • Answered by AI
  • Q5. Some mathematical Puzzles related to time and work problems
  • Q6. Handover procedure Detaills
  • Q7. How does CQI play a role in downlink mcs selection
  • Ans. 

    CQI plays a crucial role in downlink MCS selection.

    • CQI stands for Channel Quality Indicator.

    • It is a measurement of the quality of the wireless channel between the base station and the user equipment.

    • Based on the CQI, the base station determines the appropriate modulation and coding scheme (MCS) for downlink transmission.

    • Higher CQI values indicate better channel conditions and allow for higher MCS with higher data rates...

  • Answered by AI

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Altiostar?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Company Website and was interviewed before Oct 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Your Personal Details, Your Qualifications?
  • Ans. This answer must be basied on you resume.
  • Answered Anonymously
  • Q2. Why IndiaMart?
  • Ans. 

    IndiaMart is a leading B2B marketplace, connecting buyers and suppliers, fostering growth and innovation in the Indian economy.

    • Strong market presence: IndiaMart is one of the largest online B2B marketplaces in India, with millions of registered users.

    • Diverse product range: The platform offers a wide variety of products across multiple categories, catering to various industries.

    • Empowering SMEs: IndiaMart supports small ...

  • Answered by AI
  • Q3. What are you skills and how you would implement them while working with us?
  • Ans. 

    I possess strong analytical, communication, and teamwork skills, which I will leverage to drive success in your organization.

    • Analytical Skills: I excel in data analysis, demonstrated by my previous project where I improved efficiency by 20% through data-driven decisions.

    • Communication: I have experience presenting complex ideas clearly, as shown in my role where I led team meetings and reported to stakeholders.

    • Teamwork:...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Natural and Original while interviewing

I applied via Naukri.com and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Technical

Interview Preparation Tips

Interview preparation tips for other job seekers - Be reliable

I applied via Naukri.com and was interviewed in Sep 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What is your achievements which is you proud of??

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep camp and give true answers

I applied via Company Website and was interviewed in May 2019. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. About your self
  • Q2. About your previous company and job profile
  • Q3. How do you relate your previous job profile with the profile you are applying
  • Q4. Any thing extra ordinary you have done in your previous company (s) that has changed your business
  • Ans. 

    Implemented a new customer feedback system that increased customer satisfaction by 20%

    • Implemented a new customer feedback system to gather insights and improve customer experience

    • Analyzed feedback data to identify common issues and areas for improvement

    • Implemented changes based on feedback to address customer concerns and enhance overall satisfaction

    • Trained team members on how to effectively use the new system and inte...

  • Answered by AI
  • Q5. Hobbies and all

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident
Have proper knowledge about your work experience
Make your CV precis and do adhere to it
Be honest

I applied via Walk-in 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 - Group Discussion 

HR told about the company on the first day, how it works, told the rules, showed the management and a lot

Interview Preparation Tips

Topics to prepare for Amazon Associate interview:
  • Safery
  • Environment
  • Cleaning
Interview preparation tips for other job seekers - There is nothing to worry, if you have the desire to work and have passion, then you can work anywhere.
Are these interview questions helpful?

Interview Questionnaire 

1 Question

  • Q1. Inbound & Outbound operation

I applied via Naukri.com

Interview Questionnaire 

2 Questions

  • Q1. Why Amazon?
  • Ans. 

    Amazon's innovation, customer focus, and diverse opportunities align with my career goals and values.

    • Customer Obsession: Amazon prioritizes customer satisfaction, evident in initiatives like Prime and personalized recommendations.

    • Innovation: The company is a leader in technology and logistics, constantly pushing boundaries with services like AWS and drone delivery.

    • Diversity of Roles: Amazon offers a wide range of caree...

  • Answered by AI
  • Q2. What do you expect from Amazon?
  • Ans. 

    I expect Amazon to foster innovation, provide growth opportunities, and maintain a customer-centric culture.

    • Opportunities for professional development, such as training programs and mentorship.

    • A collaborative work environment that encourages teamwork and idea sharing.

    • Access to cutting-edge technology and resources to drive innovation.

    • A strong focus on customer satisfaction, ensuring that every decision prioritizes the ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be open to anything, and keep your expectations low as your expectations might kill you. Just relax and take everything in a healthy way

I applied via Campus Placement and was interviewed before Jan 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Tell me about ur hobby in brief ?
  • Ans. 

    I enjoy hiking, reading, and cooking, which help me relax and stay creative while fostering personal growth.

    • Hiking: I explore local trails every weekend, enjoying nature and staying fit.

    • Reading: I read a mix of fiction and non-fiction, currently diving into historical novels.

    • Cooking: I experiment with new recipes, recently trying my hand at Italian cuisine.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I share this question because intervier ask again and agin this question so keep in mind don't change your hobby in any rounds make sure this question is mandatory

Altiostar Interview FAQs

How many rounds are there in Altiostar Member Technical Staff interview?
Altiostar interview process usually has 3 rounds. The most common rounds in the Altiostar interview process are Resume Shortlist, Coding Test and Technical.
What are the top questions asked in Altiostar Member Technical Staff interview?

Some of the top questions asked at the Altiostar Member Technical Staff interview -

  1. Consider scheduler as an function, tell its inputs and output and functioni...read more
  2. How does CQI play a role in downlink mcs select...read more
  3. Explain what is SPS and its scheduling mechami...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.0
 • 5.4k Interviews
Flipkart Interview Questions
3.9
 • 1.5k Interviews
Swiggy Interview Questions
3.7
 • 474 Interviews
PolicyBazaar Interview Questions
3.7
 • 472 Interviews
BigBasket Interview Questions
3.9
 • 399 Interviews
Meesho Interview Questions
3.7
 • 368 Interviews
Lenskart Interview Questions
3.2
 • 362 Interviews
CARS24 Interview Questions
3.5
 • 361 Interviews
View all
Altiostar Member Technical Staff Salary
based on 16 salaries
₹12 L/yr - ₹18.6 L/yr
9% less than the average Member Technical Staff Salary in India
View more details
Member Technical Staff
16 salaries
unlock blur

₹12 L/yr - ₹21 L/yr

System Administrator
3 salaries
unlock blur

₹6.5 L/yr - ₹7.2 L/yr

Senior Member of Technical Staff
3 salaries
unlock blur

₹30 L/yr - ₹60 L/yr

Explore more salaries
Compare Altiostar with

Amazon

4.0
Compare

Flipkart

3.9
Compare

Amazon Development Centre India

4.0
Compare

Indiamart Intermesh

3.6
Compare
write
Share an Interview