Answer:
grid computing
Explanation:
Based on the information provided within the question it can be said that this technology is typically known as grid computing. Like mentioned in the question, this is a type of processor architecture in which various computer resources are combines from different domains in order to work together towards a common main objective. Which is exactly what SETI has done by using many individual's computers to essentially create one supercomputer capable of handling all the data.
 
        
             
        
        
        
Answer:
Check the explanation
Explanation:
#include <iostream>
using namespace std;
void hex2dec(string hex_num){
int n = 0;
//Loop through all characters in string
for(int i=0;i<hex_num.size();i++){
//take ith character
char c = hex_num[i];
//Check if c is digit
if(c>='0' && c<='9'){
n = 16*n + (c-48);
}
//Convert c to decimal
else{
n = 16*n + (c-55);
}
}
cout<<hex_num<<" : "<<n<<endl;
}
int main()
{
hex2dec("EF10");
hex2dec("AA");
return 0;
}
The Output can be seen below :
 
        
             
        
        
        
Answer: DAP stands for directory access protocol .It is a protocol that is used for accessing the information from the directory of X.500 protocol. 
LDAP(Lightweight directory access protocol) is the software protocol that is present for the simplification process of the X.500 protocol and to make it light-weighted .It is basically a version of DAP in a lightweight form.
 
        
             
        
        
        
Answer:
A binary system is a system that functions on zeros and ones (0's and 1's). 
A decimal system is an Arabic numeric system that has 10 as its base and uses a dot which is also called a decimal point to show fractions.
Differences
- A decimal uses ten different digits which is 0-9 while a binary system uses just two digits 0 and 1
- Decimal system was historically a Hindu-Arabic system while the binary system is just an Arabic system
Similarities
- They are capable of performing arithmetic operations
-  They both can be represented in decimal form
 
        
             
        
        
        
This is a java program with a class called Sum1.
Explanation:
While loop is used to add 10 number. 
import java.util.Scanner;
public class Sum 1
{
    public static void main(String args[])
    {
        int number, count, sum = 0;
        Scanner s = new Scanner(System.in);
        System.out.print("Enter the number:");
        number = s.nextInt();
        while(number > 0)
        {
            count = number % 10;
            sum = sum + n;
            number = number / 10;
        }
        System.out.println("Sum of Digits:"+sum);
    }
}