1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
grin007 [14]
3 years ago
12

Which clauses in the Software Engineering Code of Ethics are upheld by a whistleblower (check all that apply). a. "Respect confi

dentiality" b. "Only use property in unauthorized ways" c. "Help create an environment supporting ethical conduct" d. "Discloses actual/potential dangers"
Engineering
1 answer:
garri49 [273]3 years ago
6 0

Answer:

c. and d

Explanation:

As a whistle-blower, one of your aim is to guide against unethical dealings of other people , hence you are creating an environment that uphold ethical conduct,

In addition, whistle-blowing will disclose all imminent dangers to the software community thereby preventing security breaches.

You might be interested in
A cylindrical metal specimen having an original diameter of 11.34 mm and gauge length of 53.3 mm is pulled in tension until frac
WINSTONCH [101]

Answer:

a) 70.29 %

b) 37%

Explanation:

percent reduction can be found from:

PR = 100*(π(do/2)^2-π(df/2)^2)/π(do/2)^2

     = 100*(π(11.34/2)^2-π(6.21/2)^2)/π(11.34/2)^2

     =70.29 %

percent elongation can be found from:

EL =L_f - Lo/Lo*100

    = (73.17 -53.3/53.3)*100

    = 37%

5 0
3 years ago
Question # 5
spayn [35]

The statement which best characterizes the relationship between a general contractor and a construction manager is that; A construction manager subcontracts a general contractor to perform <em>work</em>.

A construction project manager is saddled with the responsibility of overseeing the planning and delivery of construction projects.

  • In essence, they ensure that work is completed on time and within budget. Other functions include organising logistics, delegation of work and tracking of spending.

A general contractor otherwise known as the prime contractor is responsible for the day-to-day oversight of a construction site,<em> employment of labour, management of vendors and trades, and most importantly, the communication of information to all involved parties throughout the course of a building project.</em>

  • <em>Ultimately</em><em>,</em><em> </em><em>the </em><em>relationship</em><em> </em><em>between</em><em> </em><em>a </em><em>general contractor and a construction manager is that; A construction manager subcontracts a general contractor to perform work.</em>

<em>Read </em><em>more</em><em>:</em>

<em>brainly.com/question/17157892</em>

3 0
3 years ago
Read two numbers from user input. Then, print the sum of those numbers. Hint -- Copy/paste the following code, then just type co
Softa [21]

Answer:

I am Providing Answer in C Language Program.

Explanation:

Please find attachment regarding code of taking two numbers input and adding them.

I would like to recommend you please use software which supports C language.

#include <stdio.h>

int main () {

int a, b, sum;

printf ("\ nEnter two no:");

scanf ("% d% d", & d, & e);

sum1 = d + e;

printf ("Sum:% d", sum1);

return (0);

}

4 0
3 years ago
A slender rod AB, of weight W, is attached to blocks A and B, which move freely in the guides shown. The blocks are connected by
gregori [183]

Answer:

(a) T = W/2(1-tanθ)  (b) 39.81°

Explanation:

(a) The equation for tension (T) can be derived by considering the summation of moment in the clockwise direction. Thus:

Summation of moment in clockwise direction is equivalent to zero. Therefore,

T*l*(sinθ) + W*(l/2)*cosθ - T*l*cosθ = 0

T*l*(cosθ - sinθ) = W*(l/2)*cosθ

T = W*cosθ/2(cosθ - sinθ)

Dividing both the numerator and denominator by cosθ, we have:

T = [W*cosθ/cosθ]/2[(cosθ - sinθ)/cosθ] = W/2(1-tanθ)

(b) If T = 3W, then:

3W = W/2(1-tanθ),

Further simplification and rearrangement lead to:

1 - tanθ = 1/6

tanθ = 1 - (1/6) = 5/6

θ = tan^(-1) 5/6 = 39.81°

8 0
2 years ago
C++ - Green Crud Fibonacci programThe following program is to be written with a loop. You are to write this program three times
Fynjy0 [20]

Answer:

Below is the required code:

Explanation:

Using for loop

#include <iostream>

using namespace std;

int main()

{

    //Initial crud size

    int init = 0;

    int newCrud;

    int next=0;

    //Number of days to simulate

    int no_days;

    int day;

    cout << "Enter initial amount of green crud: ";

    cin >> newCrud;

    cout << "Enter number of days to simulate: ";

    cin >> no_days;

    for (day = 10; day<=no_days; day++)

    {

         if (day % 10 == 0)

         {

             next = newCrud + init;

         }

             newCrud = init;

             init = next;

    }

    if (no_days < 5)

    cout << "\nCrud reproduce only after 5 days minimum.Hence the current amount is "

    << newCrud << " pounds.";

    else

    cout << "On day " << no_days << " you have " << init

    << " pounds of green crud." << endl;

    cout << "\nWould you like to continue? (y or n): ";

    cin >> ans;

         return 0;

}

Output:

         Enter initial amount of green crud: 5

         Enter number of days to simulate: 220

    On day 220 you have 10485760 pounds of green crud.

Using while loop

Program:

#include <iostream>

using namespace std;

int main()

{

    char ans='y';

    while (ans == 'Y' || ans == 'y')

    {

         //Initial crud size

         int init = 0;

         int newCrud;

         int next=0;

         //Number of days to simulate

         int no_days;

         int day;

         cout << "Enter initial amount of green crud:

         ";

         cin >> newCrud;

         cout << "Enter number of days to simulate:

         ";

         cin >> no_days;

         for (day = 10; day<=no_days; day++)

         {

             if (day % 10 == 0)

             {

                  next = newCrud + init;

             }

                  newCrud = init;

                  init = next;

         }

         if (no_days < 5)

         cout << "\nCrud reproduce only after 5 days

         minimum.Hence the current amount is "

         << newCrud << " pounds.";

         else

         cout << "On day " << no_days << " you have "

         << init

         << " pounds of green crud." << endl;

         cout << "\nWould you like to continue? (y or

         n): ";

         cin >> ans;

    }

    return 0;

}

Output:

Enter initial amount of green crud: 5

Enter number of days to simulate: 220

On day 220 you have 10485760 pounds of green crud.

Would you like to continue? (y or n): y

Enter initial amount of green crud: 5

Enter number of days to simulate: 225

On day 225 you have 10485760 pounds of green crud.

Using do while loop

Program:

#include <iostream>

using namespace std;

int main()

{

    char ans;

    do

    {

         //Initial crud size

         int init = 0;

         int newCrud;

         int next=0;

         //Number of days to simulate

         int no_days;

         int day;

         cout << "Enter initial amount of green crud: ";

         cin >> newCrud;

         cout << "Enter number of days to simulate: ";

         cin >> no_days;

         for (day = 10; day<=no_days; day++)

         {

             if (day % 10 == 0)

             {

                  next = newCrud + init;

             }

                  newCrud = init;

                  init = next;

         }

         if (no_days < 5)

         cout << "\nCrud reproduce only after 5 days

         minimum.Hence the current amount is "

         << newCrud << " pounds.";

         else

         

         cout << "On day " << no_days << " you have " <<

         init << " pounds of green crud." << endl;

         cout << "\nWould you like to continue? (y or n):

         ";

         cin >> ans;

    } while (ans == 'Y' || ans == 'y');

    return 0;

}

Output:

Enter initial amount of green crud: 5

Enter number of days to simulate: 220

On day 220 you have 10485760 pounds of green crud.

Would you like to continue? (y or n): y

Enter initial amount of green crud: 5

Enter number of days to simulate: 225

On day 225 you have 10485760 pounds of green crud.

7 0
3 years ago
Other questions:
  • A jetliner flying at an altitude of 10,000 m has a Mach number of 0.5. If the jetliner has to drop down to 1000 m but still main
    11·1 answer
  • If you are a government authority what extend will you modify the existing policy
    11·1 answer
  • How can endurance athletes best delay muscle fatigue during training? a. By avoiding sports drinks during exercise b. By eating
    6·2 answers
  • Chemical materials that are transported are called..
    8·1 answer
  • Calculate the potential energy in kJ of a human body (70 kg) possesses on top of the Empire State Building (1,250 ft tall).
    7·1 answer
  • As described in "A Note About Bacterial Reproduction -- and the "Culture Bias,"" the organism Epulopisciumdoes not divide by bin
    12·1 answer
  • What is the standard deviation of the following data set:
    7·1 answer
  • What does abbreviation vom stand for
    14·2 answers
  • Hello it's my new id<br>I am numu ​
    15·1 answer
  • scrapers are used to haul dirt from a borrow pit to the cap of a landfill. the estimated cycle time for the scrapers is 9.5 minu
    14·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!