Answer:
Affective
Explanation:
Affective Component − This is the second model of customers attitude. This consists of a person’s feelings, sentiments, and emotions for a particular brand or product. They treat them as the primary criteria for the purpose of evaluation. The state of mind also plays a major role, like the sadness, happiness, anger, or stress, which also affects the attitude of a consumer.
in cloud storage we can save data online
Answer:
the data typically stored in cookies includes a unique ID and e-mail address.
Explanation:
A cookie can be defined as a text file created by a website and it comprises of small amounts of data such as username and password.
This ultimately implies that, this small piece of data known as cookies is a unique identification number saved by a web browser and as such are typically used to identify a host computer.
All of the following statements about cookies are true;
I. Cookies can be used to create cross-site profiles of users.
II. Cookies make shopping carts possible by allowing a site to keep track of a user's actions.
III. The more cookies are deleted, the less accurate ad server metrics become.
Answer:
a[i] = a[len(a) - i - 1]
Explanation:
Based on the definition of corresponding elements above,
First element of a list and last element are corresponding :
Using this :
Given a list defined as 'a'
First element of list is at index 0
Last element of a list is at index ; len(a) - 1
For a list containing 10 elements:
Second element corresponds to second to the last element
Second element is at index 1;
Second to the Last element is at index 8
(since indexing starts from 0)
Second element = a[1]
Second to the last element = a[len(a) - i - 1]
Hence,
a[i] = a[len(a) - i - 1]