Answer:
Option (c) is the correct answer of this question.
Explanation:
RAM (Random Access Memory) It is a type of computer memory which can also be retrieved and adjusted in either sequence, usually still had to preserve operating memory and bytecode.
It is a type storage device, and maintains the data used when the device is operating.RAM makes file access more frequently compared with certain digital storage types.
  <u>For Example</u>:- PCs, tablets, smartphones ,printers etc.
Other options  are not related to the given scenario.
 
        
             
        
        
        
<span>BCD only goes from digit 0 (0000) to digit 9 (1001), because for 10 you need two digits, so all you've got to do is make a function that produces high for numbers from 10 (1010) to 15 (1111) as follows:
A3 A2 A1 A0   F
 0    0    0    0    0
 0    0    0    1    0
 0    0    1    0    0
 ...........................
 1    0    0    0    0
 1    0    1    0    1
 1    0    1    1    1
 1    1    0    0    1
 1    1    0    1    1
 1    1    1    0    1
 1    1    1    1    1
  
Then simplify the function:
F = A3*A2 + A3*A1
Finally just draw or connect the circuit using NAND</span>
        
             
        
        
        
Answer:
The answer is: Operations.
Explanation:
A database operation accesses to information of a relational database. In this case, Brittany has creates the database operation that select employee information of her company and the database has returned a result set. The SQL statement to perform operations on a database are:
 
        
             
        
        
        
Answer:
The answer is "False"
Explanation:
The data link layer is the protocol layer within a program, which controls data movement into a physical wireless connection. This layer is a second layer, that is also known as a collection of communications applications.
- The server network, in which many clients request, and receive service from a centralized server.
 
- This system provides an interface, that enables a user to request server services and view the server returns results, that's why it is wrong.
 
 
        
             
        
        
        
Answer:
1) 
officeAC = new AirConditioner();
officeAC.turnOn();
2)
officeAC = new AirConditioner();
officeAC.turnOn();
officeAC.setTemp(69);   
Explanation:
1) 
In the first statement a new object of the class AirConditioner whose reference is assigned to the officeAC. new is a keyword which creates an object of the class. 
Next statement uses the method turnOn(). Reference to the new object officeAC is used to invoke this method turnOn().
2) The first two statements works the same as in 1) 
The last statement invokes a method setTemp() using the reference variable and passes the value 69 to this method to set the desired temperature.