Answer:
key differences between linux and windows operating system linux is free and open resource whereas windows is a commercial operating system whose source code is inaccessible windows is not customizable as against linux is customizable and a user can modify the code and can change it looks and feels
Explanation:
I hope this helps
Answer:
<u>PCIe</u> is used for video card installation on Laptop.
Explanation:
Good quality applications, videos and games required graphics card for better results. These card can be installed on laptops, that required some ports.
PCI-e is a slot, that is used in laptop for video or graphic card interface. Video card or graphic card is used to enable high quality video or graphics on Laptop.
PCI- E stand for Peripheral Component Interconnect Express. It work as serial communication interface for high speed device.
Good question. When one Endorces or "Hires/ payes" someone again for a job/thing they did. I think. :)
Answer:
Option c is the correct answer for the above question.
Explanation:
- The array is used to holds multiple variables and the assignment operator can assign only a single variable at a time. So if a user wants to assign the whole array value into other array value then he needs to follow the loop.
- The loop iteration moves on equal to the size of the array. It is because the array value moves into another array in one by one. It means the single value can move in a single time. So the moving processor from one array to another array takes n times if the first array size is n.
- The above question asked about the processor to move the element from one array to another and the processor is a loop because the loop can execute a single statement into n times. So the C option is correct while the other is not because--
- Option 'a' states about one assignment operator which is used for the one value only.
- Option b states about the equality operator which is used to compare two values at a time.
- Option d states any of these but only option c is the correct answer.
- Option 'e' states none of these but option c is the correct.
Answer:
Check the explanation
Explanation:
In C, int requires 4 butes to sotre a integer number. that means it requires 4*8 = 32 bits. The maximum number can be stored using 32 bits is
The first digit is used for sign. decimal equivalent to this number can be computed as
=
=
That means int can store a up to 2147483646.
Testing with C code
#include<stdio.h>
int main()
{
int a = 2147483647; // a with max number
printf("%d\n",a);// printing max number
a = a+1;// adding one to the number
printf("%d\n",a);// printing the number after adding one
return 0;
}
THE OUTPUT
$ ./a.out
2147483647
-2147483648