Google Analytics, this is a common one but there are others that do the same thing.
 
        
             
        
        
        
Answer:
Explanation:
The following code is written in Java. It asks the user for an input and saves it in a String variable. Then it loops through all the characters in the string and counts the spaces. Finally, it prints the total number of spaces in the String.
 public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        System.out.println("Enter Line Now:");
        String userInput = in.nextLine();
        int spaceCount = 0;
        for (int x = 0; x < userInput.length(); x++) {
            if (userInput.charAt(x) == ' ') {
                spaceCount++;
            }
        }
        System.out.println(spaceCount);
    }
 
        
             
        
        
        
Using the knowledge in computational language in C++ it is possible to write a code that Find the Average of the sum of prime numbers between 1 to any given number
<h3>Writting in C++ code:</h3>
<em />
<em>#include <iostream></em>
<em>using namespace std;</em>
<em>bool isPrime(int n){</em>
<em>   for(int i = 2; i < n/2; i++){</em>
<em>      if(n%i == 0){</em>
<em>         return false;</em>
<em>      }</em>
<em>   }</em>
<em>   return true;</em>
<em>}</em>
<em>int findPrimeSum(int n){</em>
<em>   int sumVal = 0;</em>
<em>   for(float i = 2; i <= n; i++){</em>
<em>      if(isPrime(i))</em>
<em>         sumVal += i;</em>
<em>   }</em>
<em>   return sumVal;</em>
<em>}</em>
<em>int main(){</em>
<em>   int n = 15;</em>
<em>   cout<<"The sum of prime number between 1 to "<<n<<" is "<<findPrimeSum(n);</em>
<em>   return 0;</em>
<em>}</em>
See more about C++ code at brainly.com/question/19705654
#SPJ1
 
        
             
        
        
        
Answer: True
Explanation:
A language is said to be closed under a operation here the complement is the operation then if upon application of that operation to any members of that language always yields a member of that language.
regular languages are closed under complement. A proof of the statement is 
If a regular language 'L' is regular then there is a DFA X recognizing that regular language 'L'. to show that L' (compliment) is regular we need to have another DFA X' recognizing L'.
The initial state and transition function of both the DFAs are same except their accepting state. Then we can say that X' accepts L'.
So, we can say that regular languages are closed under complement.
 
        
             
        
        
        
The most common drive
letter where Windows stores most data and programs is "C".<span>
<span>In the beginning the computers used to have two floppy drives
which were named as A and B. Later when hard drives added up to the
technology, it was written as "C" because A and B were floppy drives
already :) </span></span>