Black holes correct.......
Answer:
Because some students think that teachers give you hard things so you could pass to go to a grade, if you study you might pass
Answer:
Data not integrated.
Explanation:
The Integration of data is the method of integrating data from various outlets into one consistent, coherent view.Integration starts with the process of intake, which involves steps such as washing, ETL simulation and integration.
The data which is not represent primary key/foreign key relationship such a data is known data not integrated In this given question the BI is analysed the data from the ERP system and other from e-commerce system as well as from networking application the data is not described in primary key/foreign key relationships this kind of data is known as data not integrated .
Answer:
#include <iostream>
using namespace std;
int main()
{
int myArray[] = {-11,3,-8,30,-2,0,5,7,-100,44};
int n = sizeof(myArray)/sizeof(myArray[0]);
for(int i=0;i<n;i++){
if(myArray[i]>=0){
cout<<myArray[i]<<endl;
}
}
return 0;
}
Explanation:
First include the library iostream in c++ programming for using the input/output function.
Then, create the main function and define the array with the elements which contain both positive element as well negative elements.
after, use the for loop for traversing the array and inside the loop take the conditional statement for check if element in the array is positive.. if it true then print the element on the screen with separate line.