Answer:
The explaination of this question is given below in the explanation section
Explanation:
The following steps are used to create a workbook.
1- Go to start menu and search about EXCEL (application software) and then click on it to open.
If you already opened a EXCEL's workbook, and you want to create a new workbook, then you follow the following steps:
- Click the File tab.
- Click New.
- Under Available Templates, double-click Blank Workbook. Keyboard shortcut To quickly create a new, blank workbook, you can also press CTRL+N.
A new workbook will be created.
Answer:
A. 0
Explanation:
RAID level zero refers to disk arrays with striping at the level of blocks, but without any redundancy.
RAID ZERO (disk striping) : This is the process of dividing a body of data into blocks and also spreading the data blocks across multiple storage devices, such as hard disks or solid-state drives (SSDs), in a redundant array of independent disks (RAID) group.
We must be careful of when retrieving messages/data from mobile devices in public because of Bluebugging. It is a form of attack through the use of Bluetooth. It is more than just Bluesnarling and Bluejacking. It goes beyond, allowing the thieves to take control of a device.
<u>Explanation:</u>
Hey there! you need not to panic about it ,your program didn't have Driver program i.e main program! the correct & working code is given below:
// C++ program to count even digits in a given number .
#include <iostream>
using namespace std;
// Function to count digits
int countEven(int n)
{
int even_count = 0;
while (n > 0)
{
int rem = n % 10;
if (rem % 2 == 0)
even_count++;
n = n / 10;
}
cout << "Even count : "
<< even_count;
if (even_count % 2 == 0 )
return 1;
else
return 0;
}
// Driver Code
int main()
{
int n;
std::cin >>n;
int t = countEven(n);
return 0;
}