The correct answer to this open question is the following.
Although there are no options attached we can say the following.
Do earthquakes ever happen in Malaysia?
Yes, they do. And they are very frequent and high in intensity.
For instance, the Sabah earthquake in 2015.
On June 5, 2015, the region of Malaysia was hit by a strong earthquake, 6.0 of magnitude on the Ritcher scale. The telluric movement lasted 30 seconds and caused much destruction.
Experts and scientists confirm that this had been the strongest earthquake since the one presented in 1976.
Because we can get manufacturing faster than usual
Answer:
me desculpe mais eu preciso de pontos para ajudr meu irmão autista
Answer:
The answer to this question is given below in the explanation section.
Explanation:
This program is written in C++.
#include <iostream>
using namespace std;
int main()
{
string word;// variable for taking user input
int cond;// to set condition true if user preses the stop and exit from loop
cout<<"Enter word: \n";
cin>>word;
do// start while loop
{
if(word=="stop" || word =="STOP" || word == "Stop")// if user enter word stop, then program exit
{
cond=0;
}
else//otherwise loop continue
{
cout<<" You Entered "+ word +"\n";
cout<<"Enter word: \n";
cin>>word;
cond=1;
}
}
while(cond == 1);// if user don't enter word "stop" loop run continuesly.
cout<<"Program exit";
return 0;
}
This is false.
What is cardinality?
Cardinality refers to the entity instances for which it is eligible to participate in a relationship instance. There are two types of cardinality, maximum and minimum.
What is maximum cardinality?
- The maximum cardinality of a relationship is the maximum number of instances of entity B that may be associated with each instance of entity A.
- Maximum cardinality: maximum number of entity instances that can participate in a relationship.
- One-to-One [1:1]
- One-to-Many [1:N]
- Many-to-Many [N:M]
To know more about maximum cardinality , refer:
brainly.com/question/18090451
#SPJ4