Answer:
Option D is the correct answer.
Explanation:
Answer:
#include <bits/stdc++.h>
using namespace std;
// main function
int main()
{
// variables
double mexico = 114;
double usa = 312;
double mexicoRate = .0101;
double usaRate = .0015;
// calculate population after every year until mexico population exceed the usa populationn
while (usa>mexico)
{
// print the population
cout<<"Mexico's population ::"<<mexico<<" million."<<endl;
cout<<"USA's population ::"<<usa<<" million."<<endl;
// update the population
mexico+=mexico*mexicoRate;
usa-=usa*usaRate;
}
return 0;
}
Explanation:
Declare and initialize mexico and usa with their initial population.Also declare and initial their increase and decrease rate.Find the population of both the country each year until mexico population exceeds the usa population.
Output:
Mexico's population ::114 million.
USA's population ::312 million.
Mexico's population ::115.151 million.
USA's population ::311.532 million.
.
.
.
Mexico's population ::270.546million.
USA's population ::274.213 million.
Mexico's population ::273.278million.
USA's population ::273.802 million.
Answer:
- Transform binary or unary M:N relationship or associative entity with its own key.
Explanation:
Transform binary relation is described as the method through which a decimal can easily be converted into binary while the unary relationship is described as a relationship in which both the two participants occurs from the same entity.
In the given case, 'transform binary or unary M:N relationship' can be created using 'the primary key linked with the relationship plus any non-key aspects of the relationship and the primary keys of the related entities' as it displays the existence of a relationship between the occurrences of a similar set of the entity i.e. associative entity here.
Answer:
C) chain
Explanation:
Small group network comprises of a vertical, direct, chain, all channel and box network
The vertical network is a network that is made for some specific purpose or goal of the business organization.
The direct network is a network that is directly interrelated to each other.
The chain network is that network in which the formal chain of command follows through which proper communication can be done in all the departments without any barriers to a communication network
It also shows that each member can communicate the person below and above their position only in a vertical hierarchy. It follows the top-down approach
This all channel network follows an informal communication network through which anyone can communicate with anyone at any time with following any chain of the business organization
The box network covers all the things in one network. Like - various software, packages, etc
In the given case Peter is asking permission from the supervisor and supervisor is discussing with the department director, is showing the formal chain of command that's why according to the given scenario the most appropriate answer is chain network.