Please use your own words do not copy and paste do some res
Please use your own words, do not copy and paste !!!
do some research on Selecting the Proper Kinds of Windows answer the following questions. Write at least one paragraph for each question and remember each paragraph must contain three or more sentences.
Name the concept that you consider the most important and explain why?
Which three concepts (or ideas) from this concept will you use in your programming and why?
Solution
Ans 1)
According to me , the concept of pointers is most important in term of programming. Pointers are the special variables in programming that are used to hold the address of another variables. Pointers are important because of following reasons:
1. Used in passing the parameters by the references.
2. Pointers are used to access the array elements.
3. Used for implementing the various data structures like linklist , tree and graphs.
Ans 2)
The three concepts (or ideas) are mentioned below:
1.) From pointers we can create the data containers like stack, linklist, tree and graphs. These data containers can be used in multiple applications.
2.) Concept of pointers can be used in allocating the memory of any object dynamically. Its also useful in various runtime applications.
3.) Concepts of pointers can also be used in message passing in various applications
