Answer:
Technology use must be aligned to the standards. Technology must be integrated into daily learning,
Explanation:
Technology use must be aligned to the standards. Technology must be integrated into daily learning, not used as an add-on to instruction to match personal learning needs. Students need opportunities to use technology collaboratively. Technology must support project based learning and include real-world simulations.
Answer:
No.
Explanation:
Data mining is a process that involves extracting large data from a database to be used in data analytics. It is a tool in analytics for provision of wanted data.
It uses databases, statistics, machine learning and pattern recognition to extract, clean and cluster data based on data types classification. It involves integration of data rather than just a simple transformation.
Answer:
Once you have a data source connected to your document, adding merge fields is a way to personalize a document with information from the data source.
Feedbacks
perhaps !!
<span>The feedback loop allows the receiver to communicate with the sender in the imc process.</span>
the following C++ function will return true if the given non - negative number is multiple of 5 or 3 else it will return false.
bool function( int x ){
// variable to check if it is multiple of both or not
int number =0;
if(3%x == 0){
number++;
}
if(5%x == 0){
number++;
}
// Now returning by deciding
if( number <=1)
return true;
else
return false
}