Answer:
Option A i.e., snack = Fruit.orange;
Explanation:
It is the user-defined data type which is mainly used to initialize the names or titles to integral constants so in the following statement 'Fruit' is the enumerate data type function and its values are the followings given in the statement, 'snack' is the variable of the function 'fruit' that is an enum type, so the initialization is done by the following type in the Java Programming Language.
Answer: given in the explanation
Explanation:
Data mining is referred as an automated processing tool used for sorting and analyzing enormous data and information which indeed are ``aimed towards effectively identifying trends and patterns and establishing relationships to solve business problems and generate new opportunities. Furthermore data mining techniques also helps to predict what’s going to happen in the future and act accordingly to take benefit of forthcoming tendencies.
Data mining is applied to a variety of large-scale data-processing activities such as collecting, extracting, warehousing and analyzing data. It also includes decision-support applications and technologies such as business artificial intelligence and machine learning and is used in varied areas of business research such as product development, sales and marketing etc.
Data mining is for taking advantage of data to predict
;
- Mathematical algorithms, and, data are used for predictive analytics. One can capture information, and, use it to model sales pattern, trends, and, customer behaviour
- Data mining uses algorithms to extract, and, analyze information; discover hidden patterns
- It uses data patterns, and, is thus closely tied to machine learning
- Historical & current information is used to predict future trends
Data mining can be used for the following:
- Data mining in gas & oil operations - Mining data in gas & oil operations involves committing to key technologies, and, processes; and, embracing new ways of thinking & problem-solving. Firms can use exploratory data analysis, modelling techniques & model development; approaches to put models into production
- Big data - Performance computing & advanced analytics
- Magic Quadrant - Evaluate 16 vendors to identify the right ones
- Heavy reading, network analytics - Optimize network; evaluate network performance; provide targeted marketing; fine-tune capacity.
Answer:
Answered below
Explanation:
Class Unique{
public static void main(String args[]){
int myArray[] = {1, 2, 3, 4};
int newArray[];
int i;. int j; int k;
for(i = 0; i < myArray.length; I++)
for(j = 0; j< myArray.length; j++)
for(k = 0; k< myArray.length; k++){
if(i != j && j!= k && i != k ){
newArray.add(myArray[i] + myArray[j] + myArray[k]);
}
}
int count = 0;
for(int m = 0; m < newArray.length; m++){
count++;
}
System.out.print(newArray, count)
}
}
Answer:
Following are the statement in C++ language :
#include <iomanip> // header file
using namespace std; // namespace
int main() // main method
{
int x1,x2,x3,x4,x5; // variable declaration
cout<<" Enter the 5 sucessive integer:";
cin>>x1>>x2>>x3>>x4>> x5; // taking 5 input from user
cout<<right;
// prints each of its own line and form a right-justified
cout<<setw(5)<< x1 << "\n" << setw(5) << x2 << "\n" <<setw(5) << x3 << "\n" << setw(5) << x4 << "\n" << setw(5) << x5 << "\n";
return(0);
}
Output:
Enter the 5 sucessive integer: 45
23
445
6
8
45
23
445
6
8
Explanation:
Description of program is given below
- Declared a 5 integer value x1,x2,x3,x4,x5 respectively.
- Read the 5 integer value from user by using cin funtion.
- Finally Print these 5 value in its own line and form a right-justified by using setw() function on it