Skip To Content
    Dashboard
    • Login
    • Dashboard
    • Courses
    • Calendar
    • 0
      Inbox
    Close
    • My Dashboard
    • Assignments
    • Tutorial 8
    2021-22 (Even)
    • Home
    • Modules

    Tutorial 8

    • Due Mar 31, 2022 by 11:59pm
    • Points 10
    • Submitting a file upload
    • Available until Apr 20, 2022 at 11:59pm
    This assignment was locked Apr 20, 2022 at 11:59pm.

    Do as Directed:

    Q - 1 : Summarized Expert System.

    Q - 2 : List out popular examples of the Expert System.

    Q - 3 : List out symptoms of corona and omicron in table form.

    Q - 4 : Create Expert System that detect Simple Fever, Cold, Corona and Omicron based on given        symptoms.

    Take reference of following code that can detect Simple Fever and Cold based on symptoms.

    #include <iostream>
    using namespace std;

    void simpleflu(char,char,char);
    void cold(char,char,char,char,char,char);

    int main()
    {
    char name[50];
    char a,b,c,d,e,f,g,h,i,j,k;
    cout << "Please enter your name.. " << endl;
    cin>> name;
    cout << "Do you have fever? (y/n)"<< endl;
    cin>>a;
    cout << "Do you have headache? (y/n)"<< endl;
    cin>>b;
    cout << "Do you have running nose? (y/n)"<< endl;
    cin>>c;
    cout << "Do you have cough? (y/n)"<< endl;
    cin>>d;
    cout << "Do you have ache? (y/n)"<< endl;
    cin>>e;
    cout << "Do you have chills? (y/n)"<< endl;
    cin>>f;
    cout << "Do you have snezzing? (y/n)"<< endl;
    cin>>g;
    cout << "Do you have sore throat? (y/n)"<< endl;
    cin>>h;
    cold(b,c,d,e,g,h);
    simpleflu(a,b,e);
    return 0;
    }
    void cold(char b,char c,char d,char e,char g,char h)
    {
    if(b =='y' && c =='y' && d =='y' && e =='y' && g ==
    'y' && h == 'y')
    cout<< "You may have Cold."<< endl;
    else
    cout<< "";
    }
    void simpleflu(char a,char b,char e)
    {
    if(a =='y' && b =='y' && e =='y')
    cout<< "You may have flu."<< endl;
    else
    cout<< "";
    }

     

    1648751340 03/31/2022 11:59pm
    Additional Comments:
    Rating max score to > pts

    Rubric

     
     
     
     
     
         
    Can't change a rubric once you've started using it.  
    Find a Rubric
    Find Rubric
    Title
    You've already rated students with this rubric. Any major changes could affect their assessment results.
    Title
    Criteria Ratings Pts
    Edit criterion description Delete criterion row
    This criterion is linked to a Learning Outcome Description of criterion
    view longer description
    threshold: 5 pts
    Edit rating Delete rating
    5 to >0 pts
    Full Marks
    blank
    Edit rating Delete rating
    0 to >0 pts
    No Marks
    blank_2
    This area will be used by the assessor to leave comments related to this criterion.
    pts
      / 5 pts
    --
    Additional Comments
    Total Points: 5 out of 5
    In order to create video or audio recordings your computer needs to be webcam-enabled. If you don't have a webcam on your computer, you can still record audio-only messages by first installing the Google Video Chat plugin.
    Install the Video Plugin
    Don't have a webcam?