Answer:
Following is the program in C++ language
#include <iostream> // header file
#include <iomanip> // header file
using namespace std; // namespace std;
void problem2() // function definition
{
int num ; // variable declaration
cout << "Enter the Number: ";
cin >> num; // Read the input by user
cout << "Resulatant is:";
for(int k = 0; k <num; k++) // iterarting the loop
{
std::cout << std::setw(num); // set width
std::cout <<"*"; // print *
}
}
int main() // main function
{
problem2();// function calling
return 0;
}
Output:
Enter the Number: 3
Resulatant is: * * *
Explanation:
Following is the description of program
- Create a function problem2().
- Declared a variable "num" of "int" type .
- Read the input in "num" by the user .
- Iterating the for loop and set the width by using setw() and print the asterisk.
- In the main function calling the problem2().
Answer:
he intentado encender la computadora mono
Explanation:
Answer:
An Enterprise System
Explanation:
An enterprise system also refered to as an enterprise software is a computer software application used to handle the needs of a business or an enterprise examples are schools, production companies, government ministries and departments, charities etc.
The software provides all the business oriented services for the enterprise, services such as payment processing, students' information management, automated billing and payments etc.
Because enterprises will typically have different departments, the software is able to collect data from all the key business processes across all the departments into a single database which is useable according to different access privilages by all other parts of the enterprise.
Answer:
Explanation:
1. Sustainability and scale
2. Lack of knowledge
3. Pace of change
4. Funding
5. Changing roles and norms
Answer:
C. The main method proceeds to the next statement following the t3.join(); statement
Explanation:
join() method allows the thread to wait for another thread and completes its execution. If the thread object is executing, then t3.join() will make that t is terminated before the program executes the instruction. Thread provides the method which allows one thread to another complete its execution. If t is a thread object then t.join() will make that t is terminated before the next instruction. There are three overloaded functions.
join()
join(long mills)
join(long millis, int Nanos)
If multiple threads call the join() methods, then overloading allows the programmer to specify the period. Join is dependent on the OS and will wait .