Answer: • Ensure that the video card is compatible with the expansion slot
• Install video drivers from CD and then install updated drivers from the internet
• Configure the PC to use the integrated graphics if available and needed
Explanation
Your question isn't complete as you didn't put the options but I got the options online and the correct answers have been provided.
The installation and configuration for the high-end video card suitable for gaming will include:
• Ensure that the video card is compatible with the expansion slot
• Install video drivers from CD and then install updated drivers from the internet
• Configure the PC to use the integrated graphics if available and needed
So that they can lower the I2R losses
Answer:
public class array{
public static void main(String []args){
int[] array = {2,4,7,1,9};
int num_vals = array.length;
for(int i=0;i<num_vals;i++){
System.out.println(array[i] + " ");
}
for(int i=num_vals-1;i>=0;i--){
System.out.println(array[i] + " ");
}
}
}
Explanation:
First create the class in the java programming.
Then create the main function and declare the array with values.
Store the size of array in num_vals variable by using the function array.length.
create a for loop to iterate the each element in the array and then print on the screen with spaces and newline.
it traverse the loop from first to last.
Then, again create the for loop to iterate the each element in the array and then print on the screen with spaces and newline but the traversing start from last to first.
Answer:
hope you like it
Explanation:
Two types of power supplies exist, DC-DC and AC-DC. DC-DC power supplies allow you to plug in electrical devices into car outlets or similar sources that supply direct current, or DC, power. These power supplies are not the most commonly used, though.
Classification of Power Supply and Its Different Types
OUTPUT = DC OUTPUT = AC
INPUT = AC Wall wart Bench power supplies Battery charger Isolation transformer Variable AC supply Frequency changer
INPUT = DC DC-DC converter Inverter Generator UPS
Answer:
B. How many programming statements the program contains
Explanation:
If a program is intended to be able to process large amounts of data, then the ability of the program to process larger data sets is heavily affected by
- execution time
- size of memory the program requires
- storage space the program requires as it runs.
The length of the statements the program contains does not much affect program performance.