Answer:
the answer is Self=color()
Explanation:
A color not mixed or variegated. Webster's Revised Unabridged Dictionary, published 1913 by G.
The purpose of the refresh button is to "refresh" the page to either start the page over or update the page entirely. For example, refreshing can update your email account which may show you new emails. It can also be used to start the page over in case technical difficulties are occurring. Hope this helped :)
Answer:
true i guess......
Explanation: sorry if this is wrong
The factors that limit a technological design can be physical and social. The physical limitations are constraints due to nature itself. They include natural laws and properties of materials.
Social limitations on the other hand <span>are limitations that arise as a result of the society we are living in and include the ease of use, safety, attractiveness, and <span>cost.</span></span>
Answer:
The two main differences between arrays and structures are as following according to me :-
1. Array is collection of data elements of same data type while a structure is collection of variables of different data types.
2.Array is a primitive data type while structure is a user defined data type.
There are other differences also which are as following:-
1. The size of array is fixed while the size of structure is not fixed as structure can contain different variables of different data types.
2.array is declared as following :-
int array [100];
where 100 is the size of the array means it can store up to 100 integer values.
struct class{
int roll_number;
char *name;
int admission_no;
};
3.Traversing and searching in an array is easy and fast while it is difficult and slow in structures.