Search engines. (I'm Misty btw if you want to know)
        
             
        
        
        
Answer:
Las cosas que hoy en día se hacen apoyadas en aplicaciones y el software se hacían de manera manual, artesanal o empírica, es decir, antes del avenimiento de la era digital, las tareas que hoy se han automatizado o informatizado se realizaban de forma analógica, mediante procesos con una participación humana mucho más fuerte. 
Así, por ejemplo, en el entrenamiento, la medición de variables por parte de los entrenadores respecto de los atletas era procesada de forma manual: la comparación de las distintas estadísticas era recopilada en formato físico, y analizada en forma personal por profesionales idóneos para tal tarea, mientras que hoy en día esa tarea se ha automatizado y es llevada a cabo por programas informáticos específicos. 
A su vez, respecto de la tecnología, por ejemplo, el análisis de las variables de mercado y la subida o bajada de distintos valores era sistemáticamente analizada en forma manual, mientras hoy en día diversos programas permiten realizar un análisis técnico y financiero en forma digital. 
 
        
             
        
        
        
Answer:
//here is code in java.
import java.util.*;
class Solution
{
// main method of class
 public static void main (String[] args) throws java.lang.Exception
 {
    try{
     // declare an initialize first string variables
      String st1="hello";
      // declare an initialize first string variables
      String st2="world";
      // create another string variable 
     String st3;
     // exchange the value of both string variables
     st3=st1;
     st1=st2;
     st2=st3;
     System.out.println("value of first String after exchange: "+st1);
     System.out.println("value of second String after exchange: "+st2);
    }catch(Exception ex){
        return;}
 }
 }
Explanation:
declare and initialize two string variables.Create another string variable "st3". first assign value of "st1" to "st3" after then value of "st2" to "st1" and then  assign value of "st3" to "st2". This will exchange the values of both the string.
Output:
value of first String after exchange: world
value of second String after exchange: hello
 
        
                    
             
        
        
        
 
a.on , off
 
In most computer processors, electron movement is controlled by tiny switches that turn this flow of electricity on and off...zero represents off and one represents on