Answer:
Option(c) is the correct answer to the given question .
Explanation:
The Project responsibilities section is responsible of the planning of project.
Following are the Roles of the Project Responsibilities
- To check the objective of the project goals.
- Works with customers and to define and meet client needs and the overall objective .
- Cost estimation and expenditure production of the project
- Ensure the fulfillment of the client .Analysis and enterprise risk management. and Tracking the progress of project.
All the others options are not responsible of the planning of project that's why Option(c) is the correct answer .
no longer returns an error but your math seems to have something wrong with it, always returns 0
Console.WriteLine("Enter a percentage here");
int Percent = int.Parse(Console.ReadLine());
Console.WriteLine("Enter your number here");
int Number = int.Parse(Console.ReadLine());
int result = Percent / 100 * Number;
When you go to the mail go to file and click new it should be in there as search folder
The correct answer is C. Typeover mode
This is when you select a
text and can then type over it and it automatically replaces it with
what you're writing. It also creates a little box that lets you edit the
selected part easily if that's what you need with things like bold or
italic or change the text color.
Answer:
hope this helps and do consider giving a brainliest to the ans if it helped.
Explanation:
//program to check if the entered grid is magic square or not
/**c++ standard libraries
*/
#include<bits/stdc++.h>
using namespace std;
/**function to check whether the entered grid is magic square or not
*/
int isMagicSquare(int arr[3][3]){
int i,j,sum=0,sum1=0,rsum,csum;
for(i=0;i<3;i++){
sum+=arr[i][i];
sum1+=arr[i][2-i];
}
if(sum!=sum1){
return 0;
}
for(i=0;i<3;i++){
rsum=0;
csum=0;
for(j=0;j<3;j++){
rsum+=arr[i][j];
csum+=arr[j][i];
}
if(sum!=rsum){
return 0;
}
if(sum!=csum){
return 0;
}
}
return 1;
}
/** main function to get user entries and
* call function
* and print output
*/
int main(){
int i,j,arr[3][3]={0};
for(i=0;i<3;i++){
for(j=0;j<3;j++){
cout<<"Enter the number for row "<<i<<" and column "<<j<<" : ";
cin>>arr[i][j];
}
}
int ret = isMagicSquare(arr);
if(ret==1){
cout<<"This is a Lo Shu magic square"<<endl;
}
else{
cout<<"This is not a Lo Shu magic square"<<endl;
}
return 0;
}