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
Indian Startups
2w
a senior executive
One of the best sources for Startup investment: DAHEJ(DOWRY)
You won't believe my senior has a good corporate job with over 10 years of experience. But suddenly resigned just a few days after his wedding. We all thought maybe he got married and wants to spend his time with his wife, and decided to go to his place to give him a proper farewell. All of us got shocked after knowing that he left because his father-in-law gifted him a fat cash amount and a car in the name of "blessings." He’s using the money to fund his startup and the car for "business movement." I mean seriously? People are now using dowry as startup capital and walking around acting like CEOs, playing boss with someone else’s money. Bas, shaadi karo aur apne sapne chalu karo, courtesy sasural. I don't know feeling inspired? Or disgusted?
Got a question about Altiostar?
Ask anonymously on communities.

Interview questions from similar companies

Team Lead Interview Questions & Answers

BigBasket user image akrshita chauhan

posted on 6 Feb 2022

I applied via Referral and was interviewed before Feb 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 - HR 

(6 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Share details of your previous job.
  • Q4. Why should we hire you?
  • Q5. Why are you looking for a change?
  • Q6. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Confedence label should be 💯 correct

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

Interview Questionnaire 

2 Questions

  • Q1. Why you want to change a job
  • Ans. 

    I'm seeking new challenges and opportunities for growth that align with my career goals and values.

    • Desire for professional growth: I want to take on more leadership responsibilities, as I have successfully led projects in my current role.

    • Alignment with company values: I admire your company's commitment to innovation and community service, which resonates with my personal values.

    • Seeking new challenges: I feel that I hav...

  • Answered by AI
  • Q2. Do you think you can work with us

I applied via Referral and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Discipline or performance? Wht you will i choose?
  • Ans. 

    I would choose performance, as it drives results, but discipline is essential for sustainable success.

    • Performance leads to tangible results; for example, a high-performing team can exceed targets and drive growth.

    • Discipline ensures consistency; a disciplined approach can prevent burnout and maintain quality over time.

    • Balancing both is crucial; a disciplined team can perform consistently, while a focus solely on perform...

  • Answered by AI
  • Q2. Discipline as it related to performance

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through 14 principles of amazon leadership

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
Are these interview questions helpful?

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
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Jun 2022. There were 4 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 - Aptitude Test 

English sentence formation

Round 3 - Group Discussion 

Amazons latest innovation

Round 4 - Aptitude Test 

Hearing and typing test

Interview Preparation Tips

Interview preparation tips for other job seekers - If you’re applying for a job with Amazon, first you should already know about the company. Second you should have all the skills required before joining as an advantage.

I appeared for an interview before Feb 2021.

Round 1 - HR 

(1 Question)

  • Q1. What are your strengths and weaknesses?
Round 2 - Technical 

(1 Question)

  • Q1. How did you save fund for the organization from the obsolete equipment.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Bold Be Confident..and proud of what you have.

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