Answer:
30 djjjjj*fjfktdyldydxpitdotdtiotdtod
Answer:
Project managers use status reports to keep stakeholders informed of progress and monitor costs, risks, time and work. Project status reports allow project managers and stakeholders to visualize project data through charts and graphs.
Answer:
Check where the file originates from, and if it is a trusted source or his own workbook, click Enable Content.
Explanation:
Answer:
/ declare the necessary header files.
#include <iostream>
#include <string>
#include <vector>
using namespace std;
// declare the main function.
int main()
{
// declare a vector.
vector<string> words;
vector<int> counts;
// declare variables.
int size;
string str;
cin >> size;
// start the for loop.
for(int i = 0; i < size; ++i)
{
// input string.
cin >> str;
words.push_back(str);
}
// start the for loop.
for(int i = 0; i < size; ++i)
{
int count = 0;
// start the for loop.
for(int j = 0; j < words.size(); ++j)
{
// check the condition.
if(words[j] == words[i])
{
count++;
}
}
counts.push_back(count);
}
// start the for loop.
for(int i = 0; i < size; ++i)
{
// display result on console.
cout << words[i] << "\t" << counts[i] << endl;
}
return 0;
}
Explanation:
Answer:
Each object of this class has its own copy of GREETING
Explanation:
option c: Each object of this class has it’s own copy of GREETING
This is the only false statement. When a variable is preceded by the Static key word only one copy of that variable is created, no matter the amount of object created from the instance of that class.
option a: Each object of this class can access GREETING, this is true.
option b: The value of GREETING can’t be changed in any methods, this is true because GREETING is preceded by the keyword final.
option d: GREETING.length() = 2, this is true because the method length() is use to get the length of the string "Hi" which is 2.
option e: GREETING.toUpperCase() = "HI", this is also true because the method toUpperCase() convert all the character of "Hi" to uppercase.
Note: All these are peculiar to java programming language.