Answer:
Control bus 
Explanation:
A control bus is a PC bus that is utilized by the CPU to speak with gadgets that are contained inside the PC. This happens through physical associations, for example, links or printed circuits.
The CPU transmits an assortment of control sign to parts and gadgets to transmit control sign to the CPU utilizing the control bus. One of the principle targets of a transport is to limit the lines that are required for communication
An individual bus licenses communication between gadgets utilizing one information channel. The control transport is bidirectional and helps the CPU in synchronizing control sign to inside gadgets and outer segments. It is included interfere with lines, byte empower lines, read/compose sign and status lines.
 
        
             
        
        
        
Physical component means Computer Hardware which you can touch and non Physical component means Software, which you can not touch. nonphysical component designed specially for physically component. like Microsoft company designed Software according the Hardware for example Microsoft windows 64 bit could not install on which 32 bit Architecture Hardware.
        
             
        
        
        
Answer:
Go for an interview before quitting your job.
Explanation:
You don't want to lose your job, do you? :)
 
        
                    
             
        
        
        
Answer:
Explanation:
The following code is written in Java and runs a thread every 45 seconds that adds the two counters together and saves them in an integer variable called register. Then prints the variable. If this code runs 5 times it automatically breaks the loop. This can be changed or removed by removing the breakLoopCounter variable.
  public static void add_Counters(int counterOne, int counterTwo) {
        int register = 0;
        int breakLoopCounter = 0;
        try {
            while (true) {
                register += counterOne + counterTwo;
                System.out.println(register);
                Thread.sleep(45000);
                breakLoopCounter += 1;
                if (breakLoopCounter == 5) {
                    break;
                }
            }
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }