Answer:
Gland is an organ that makes one or more substances, such as hormones, digestive juices, sweat, tears, saliva, or milk.
TYPES OF GLANDS :
ENDOCRINE glands release the substances directly into the bloodstream.
EXOCRINE glands release the substances into a duct or opening to the inside or outside of the body.
BRAINLIEST PLEASE
Answer
There are a lot of advantages of web based applications.
Explanation:
Below are the advantages:
- Web based applications can be accessed from device that is connected to the device.
- No physical software required to download, install, update or manage which saves a lot of administration work for large companies.
- Web based software is compatible with any device or platform. The software is delivered through a browser of the users' choice.
- Mobile device applications allow for access to the software when out of the office.
- Direct access to latest information for Employees where every they are located.
Apart from these, there are lot more benefits, like quick and easy updates, centralized data where data is secure and easy to backup. We can reach anybody, anywhere in the world.
Business costs are drastically reduced by spending less time talking to customers over the phone.
Online training can be finished at user's own time and risk.
It's available 24 hours a day, 7 days a week
The software is always up-to-date
Answer:
Each pixel in an image is made up of binary numbers. If we say that 1 is black (or on) and 0 is white (or off), then a simple black and white picture can be created using binary. To create the picture, a grid can be set out and the squares coloured (1 – black and 0 – white).
Answer:
The code is not dereferencing the pointers. You have to place an asterisk in front of the pointer to read the value the pointer points to.
Explanation:
So "if (str1 != str2)" must be "if (*str1 != *str2)".
likewise:
while (*str1 != 0 && *str2 != 0)
and
result = (*str1 == *str2);