Answer:Their motherboards,battery packs and circuits.
Mother boards are green tech plates that help connect and make a device work,they have sod (melted metal) to hold wires and buttons to it.
Answer:
Hence the correct option is option a) define both structures and then create a data member of the nested structure type within the other structure.
Explanation:
To make Address nested to Employee, we've to define Address structure before and out of doors Employee structure and make an object of Address structure inside Employee structure.
For example, we may need to store the address of an entity employee in a structure.
Answer:
D. Distracts the users from core message.
Explanation:
During web development using bright and glaring font colors is often associated with highlighting the key content of the website.
For instance, one can often observe that organisation's logo are presented using bright and glaring font colors or in some other case main key buttons in websites are made attractive using bright colors.
Best example for illustration purpose here is font and colors used by Google for creating Doodle. Google Doodle are always created by using combination of bright and glaring font colors whereas other information on page is presented using light and simple fonts.
Hence the correct option is D.
Answer:
int SmallestNumber(int num1, int num2, int num3){
int smallest;
if (num1 >num2){
smallest=num2;
}
else {
smallest=num1;
}
if(smallest <num3){
smallest=num3;
}
}
int LargestNumber(int num1, int num2, int num3){
int largest;
if (num1 <num2){
largest=num2;
}
else {
largest=num1;
}
if(largest>num3){
largest=num3;
}
}
void main(){
int num1,num2,num3;
printf("enter values");
scanf("%d%d%d",&num1,&num2,&num3);
int smallest=SmallestNumber(num1,num2,num3);
int largest=LargestNumber(num1,num2,num3);
}
Explanation:
we are comparing first two numbers and finding largest among those. After getting largest comparing that with remaining if it is greater then it will be largest of three. Same logic applicable to smallest also