Answer:A and B are correct. one must take care to avoid violation of ethical codes regarding conflicts of interest and dual or multiple relationships
Explanation:
A conflict of interest (COI) is a situation in which a person or organization is involved in multiple interests, financial or otherwise, and serving one interest could involve working against another.
Answer:
//Program was implemented using C++ Programming Language
// Comments are used for explanatory purpose
#include<iostream>
using namespace std;
unsigned int second_a(unsigned int n)
{
int r,sum=0,temp;
int first;
for(int i= 1; I<=n; i++)
{
first = n;
//Check if first digit is 3
// Remove last digit from number till only one digit is left
while(first >= 10)
{
first = first / 10;
}
if(first == 3) // if first digit is 3
{
//Check if n is palindrome
temp=n; // save the value of n in a temporary Variable
while(n>0)
{
r=n%10; //getting remainder
sum=(sum*10)+r;
n=n/10;
}
if(temp==sum)
cout<<n<<" is a palindrome";
else
cout<<n<<" is not a palindrome";
}
}
}
Explanation:
The above code segments is a functional program that checks if a number that starts with digit 3 is Palindromic or not.
The program was coded using C++ programming language.
The main method of the program is omitted.
Comments were used for explanatory purpose.
Answer: r = 0.8081; s = -0.07071
Explanation:
A = (150i + 270j) mm
B = (300i - 450j) mm
C = (-100i - 250j) mm
R = rA + sB + C = 0i + 0j
R = r(150i + 270j) + s(300i - 450j) + (-100i - 250j) = 0i + 0j
R = (150r + 300s - 100)i + (270r - 450s - 250)j = 0i + 0j
Equating the i and j components;
150r + 300s - 100 = 0
270r - 450s - 250 = 0
150r + 300s = 100
270r - 450s = 250
solving simultaneously,
r = 0.8081 and s = -0.07071
QED!
5 is the correct one to choose for this
Answer:
L = 475.718
T = 240.89 ft
M = 23.0195
LC = 472.728
R = 1225 ft
Explanation:
See the attached file for the calculation.