Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


what is a stack

Answers were Sorted based on User's Feedback



what is a stack ..

Answer / srilatha

STACK IS A COLLECTION R HEAP OF ELEMENTS IN FIRST IN LAST
OUT METHOD.

Is This Answer Correct ?    17 Yes 2 No

what is a stack ..

Answer / naresh lingampally

Stack is a data structure ,a last in, first out (LIFO)
abstract data type.
A stack can have any abstract data type as an element, but
is characterized by only two fundamental operations: push
and pop. The push operation adds to the top of the list,
hiding any items already on the stack, or initializing the
stack if it is empty. The pop operation removes an item from
the top of the list, and returns this value to the caller. A
pop either reveals previously concealed items, or results in
an empty list.

Is This Answer Correct ?    5 Yes 0 No

what is a stack ..

Answer / eresh

stack is a part of ram memory

Is This Answer Correct ?    3 Yes 2 No

what is a stack ..

Answer / nashiinformaticssolutions

A linear data structure that executes operations in Last In First Out (LIFO) order is referred to as a stack.
Only the topmost element in a stack can be accessed, followed by the bottom element.

Is This Answer Correct ?    0 Yes 0 No

what is a stack ..

Answer / glibwaresoftsolutions

A linear data structure that executes operations in Last In First Out (LIFO) order is referred to as a stack.
Only the topmost element in a stack can be accessed, followed by the bottom element.

Is This Answer Correct ?    0 Yes 0 No

what is a stack ..

Answer / hr@tgksolutions.com

A linear data structure that executes operations in Last In First Out (LIFO) order is referred to as a stack.
Only the topmost element in a stack can be accessed, followed by the bottom element.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

what is compiler

7 Answers  


How do I copy files?

0 Answers  


void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply

0 Answers  


What are comments and how do you insert it in a C program?

0 Answers  


Why clrscr is used after variable declaration?

0 Answers  


Do you know the purpose of 'register' keyword?

0 Answers  


Explain what is the benefit of using an enum rather than a #define constant?

0 Answers  


What is the process of writing the null pointer?

0 Answers  


Can you assign a different address to an array tag?

0 Answers  


Write a program to find factorial of a number using recursive function.

0 Answers   Global Logic, TCS,


write C code to reverse a string such that if i/p is "abc defg hij klmno pqrs tuv wxyz" and the o/p should be "cba gfed jih onmlk srqp vut zyxw"

2 Answers  


What is the output of the program given below #include<stdio.h> main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }

21 Answers   ADITI, Student, TCS,


Categories