Answer:
The correct answer for the given question is option(d).
Explanation:
Solution Explorer is found in Microsoft Visual Studio.When we create a project in the c# or another programming language the solution explorer window is used. The Solution Explorer takes care of the projects and files.
Solution Explorer displays an overall view of the current project. In the Solution Explorer we can delete or add the file in the project. The Solution Explorer window displays the list that is contained in the current solution.
- Option(a),Option(b) and Option(c) are the incorrect option for the Solution Explorer window.
- So, Option(d) is the correct answer for the solution explorer.
Answer:
when user wants duplicate copy of the object
Explanation:
Encapsulation are one of the key foundations of object-oriented programming (OOP). It involves the bundling of data or information with the methods and various techniques which operate on that data.
It can be used in hiding the true values or state of a structured data object that is in a class, preventing unauthorized parties' direct access to them.
The circumstances that can be allowed in returning a reference to the existing Engine is when user wants duplicate copy of the object.
Answer:
Development task is the correct answer to the given question.
Explanation:
The database administrator is responsible for managing the database management system . The overall security of the database is depended on the database administrator.
The Development task include the following function
- Verification of the data model that is used by the database management system .
- Check the user input it means validating the data.
- Defining the overall requirement to create the model.
- Providing backup when the data is loss .
So the Development task is the correct answer.
Following are the program to calculate even digits sum:
<h3>Program:</h3>
#include <iostream>//header file
using namespace std;
int main()//main method
{
int a[10],s=0,i;//defining an array and an integer variable
cout<<"Enter array values: ";//print message
for(i=0;i<=9;i++)//defining a loop that input array value
{
cin>>a[i];//input array value
}
for(int i=0;i<=9;i++)//defining loop that check array value
{
if(a[i]%2==0)//defining if block that checks even number condition value
{
s=s+a[i];//adding even number value
}
}
cout<<"The sum of even number is: "<<s;//print even number sum value
return 0;
}
Program Explanation:
- Defining a header file.
- Defining the main method.
- Inside the main method, an integer array "a", and two integer variable "s,i" is declared.
- In the next step, a for loop is declared that input the array value, and after input value another loop is declared that check even number value in array.
- In this loop it adds array value and after adding the value a print method is declared that prints its value.
Output:
Please find the attached file.
Find out more information about the even number here:
brainly.com/question/4184435