Is the <span>Boot Options window.</span>
Answer:
a) 10
b) 1
C) 10
D) 1
E) 20
F) 10
Explanation:
a) The largest number of records that could appear in one bin
= 10
B) The smallest number of records that could appear in one bin
= 1
C) The largest number of records that cab appear in one bin
= 10
d) smallest number
= 1
e) With frequency = 20. the largest number of records that could appear in one bin with equal width discretization (10 bins)
= 20
f ) with equal height discretization
= 10
Answer: Safe mode loads Windows with a minimum configuration and can create a stable environment when Windows gets corrupted
Explanation:
Answer:
Following is the program in C language :
#include <stdio.h> // header file
#define n 5 // macro
int main() main function
{
int a[n],k1; // variable and array declaration
printf("Enter the element:\n");
for(k1=0;k1<n;++k1) //iterating the loop
{
scanf("%d",&a[k1]);//Read the values by user
}
printf("Output in Reverse Order:\n");
for(k1=n-1;k1>=0;--k1)//iterating the loop
{
printf(" %d ",a[k1]); //Display the values
}
return 0;
}
Output:
Enter the element:
4
3
45
67
89
Output in Reverse Order: 89 67 45 3 4
Explanation:
Following is the description of the program
- Define a macro "n" with value 5 after the header file.
- Declared an array "a" and defined the size of that array by macro i.e "n".
- Read the value by the user by using scanf statement in the array "a"
- Finally In the last for loop display the values of array "a" by space.
The rule of thumb that predicts that the number of transistors on a CPU will double every two years is called Moore's law.<span> The father of the Moore's law is Intel co-founder Gordon </span>Moore in 1965. This law states that <span>the number of transistors per square inch on integrated circuits had doubled every year since their invention.</span>