
Data science helps to understand and analyse the actual scenario and help to take fruitful decisions.
Answer:
One major benefit effective communication has in resolving a conflict is the resultant reduction in anxiety, whether within a family or in the workplace. ... Using effective verbal – and nonverbal – communications further contributes to a successful resolution of conflict, either between individuals or within a group.
I hope it is helpful for you ......
<h3>Mark me as Brainliest ......</h3>
Answer:
<h3>Photography changed our vision of the world by providing more access to more images drawn from more places and times in the world than ever before. Photography enabled images to be copied and mass-distributed. The media-sphere was burgeoning. ... Photography's nearly 200 year history has been exciting.</h3>
Explanation:
<h3>i hope this help more</h3>
Answer:
#include <stdio.h>// header file
int main() // main function definition
{
int number; // variable declaration
scanf("%d",&number); // user input for number
if(number%2==0) // check the number to even.
printf("Number is a even number"); // print the message for true value
else
printf("Number is a odd number"); // print the message for false value.
return 0; // return statement.
}
Output:
- If the user inputs is 2 then the output is "Number is a even number".
- If the user inputs is 3 then the output is "Number is a odd number".
Explanation:
- The above program is to check the even and odd number.
- The first line of the program is used to include the header file which helps to understand the functions used in the program.
- Then there is the main function that starts the execution of the program.
- Then there is a variable declaration of number which is declared as an integer which takes the integer value because the program needs the integer only.
- Then the scanf function is used to take the inputs from the user.
- Then the if condition check that the number is divisible by 2 or not.
- If it is divisible print "even number" otherwise print "odd-number".