Weka - Data mining Tool W eka is a tool for big data and data mining. It is used to various classification, experiments, and analysis over large data sets. Installation Guide -weka You can download Weka from here and follow the normal installation procedure. After completion you will get following window, here you can begin your classification or experiment on different data sets with Weka.
C-program (sequence) Mark sheet
15. Write a Program to input name, class and marks in five Subjects like English, math, Nepali, account, Computer science Find Total, percentage, division, remarks The condition of division is.. : Percentage / Division: per> = 75 / Distinction, per> = 60 AND per <75 / First per> = 45 AND per <60 / Second, per> = 35 AND per <45 / Third and Below-35 / Fail.#include <stdio.h>
#include <conio.h>
void main ()
{
char name [50];
int clas, eng, nep, math, acc, cscience, total;
float per;
printf ("Enter the name of student:");
scanf ("% s", & name);
printf ("Enter the class:");
scanf ("% d", & clas);
printf ("Enter the marks in English, Nepali, Math, Account and Computer Science.");
scanf ("% d% d% d% d% d", & eng, & nep, & math, & acc, & cscience);
printf ("\ t \ nName =% s", name);
printf ("\ t \ nClass =% d", clas);
printf ("\ nEnglish = \ t% d", eng);
printf ("\ nNepali = \ t% d", nep);
printf ("\ nMath = \ t% d", math);
printf ("\ nAccount = \ t% d", acc);
printf ("\ nComputer Science = \ t% d", cscience);
printf ("\ n ===============================");
total = eng + nep + math + acc + cscience;
per = total / 5;
printf ("Total = \ t% d", total);
printf ("Percentage = \ t% f", per);
if (eng> = 35 && nep> = 35 && math> = 35 && acc> = 35 && cscience> = 35)
printf ("\ nRemarks: PASSED");
else
printf ("\ nRemarks: FAILED");
if (per> = 75)
printf ("Division: Distnction");
else if (per> = 60 && per <75)
printf ("Division: First");
else if (per> = 45 && per <60)
printf ("Division: Second");
else if (per> = 35 && per <45)
printf ("Division: Third");
else
printf ("Division: Fail");
getch ();
}
can you give output of the program
ReplyDelete