What's new

Reviewer [FREE] Chegg Unlock #1

Answer 1

a.

Flux = ∫(B·dA)

Since neither the magnetic field nor the area are changing with time,

Flux = BA cos(θ) = (0.270 T)(π(0.0650 m)2) cos(0°) = 3.58 x 10-3 Wb



b.

Again,

Flux = BA cos(θ) = (0.270 T)(π(0.0650 m)2) cos(52.1°) = 2.20 x 10-3 Wb



c.

Again,

Flux = BA cos(θ) = (0.270 T)(π(0.0650 m)2) cos(90°) = 0
 

Answer 2

F = q(v x B). So a = q/m * (v x B) = 1.22*10^-8/1.81/10^-3*3*10^4*1.63 = 0.33 m/s^2. Direction is -ve z.
 

Answer

C++:
#include <iostream>

#include <string>

 

using namespace std;

 

int main()

{

    string price[5], quantity[5];

    int total[5], total_ammount=0, discount;

    cout<<"Add item[Y/N]: ";

    string response;

    cin>>response;

    int n=0;

    while(response=="Y" and n<5){

        cout<<"Enter price: ";

        cin>>price[n];

        cout<<"Enter quantity: ";

        cin>>quantity[n];

        total[n]=stoi(price[n])*stoi(quantity[n]);

        total_ammount=total_ammount+total[n];

        n++;

        cout<<"Add more items[Y/N]: ";

        cin>>response;

    }

    

    cout<<"OFFICIAL RECIEPT"<<endl;

    cout<<"Item   Price    Qty   Total"<<endl;

    for(int i=0;i<n;i++){

        cout<<i+1<<"     "<<price[i]<<"      "<<quantity[i]<<"     "<<total[i]<<endl;

    }

 

    if(total_ammount>5000){

        discount=0.70*total_ammount;

    }

    else if(total_ammount>2500){

        discount=0.50*total_ammount;

    }

    else if(total_ammount>1000){

        discount=0.35*total_ammount;

    }

    else{

        discount=0.15*total_ammount;

    }

    cout<<"discount = "<<discount<<endl;

    cout<<"TOTAL php"<<total_ammount-discount<<endl;

    return 0;

}

 

Answer 1

Following are the 10 steps for detailed audit process :-

1. Gather information about audit subject

2. Determine audit criteria

3. Break the universe into pieces

4. Identify inherent risks

5. Refine audit objective and sub-objectives as well as Identify controls and assess control risk

6. Choose methodologies

7. Formalize the audit program

8. Perform & document audit methodologies

9. Draft findings

10. Finalize report.
 

Answer 2

1620897428402.png
 

Attachments

Users search this thread by keywords

  1. hotel reservation system
Back
Top