Answer:
window software is a platform made by windows that is written in JavaScript and visual basic ,c
Explanation:
window software is a platform made by windows that is written in JavaScript and visual basic ,c .
Microsoft Windows, commonly referred to as Windows, is a group of several proprietary graphical operating system families, all of which are developed and marketed by Microsoft. Each family caters to a certain sector of the computing industry
In order for Rob to connect to the network,be must check all the connections he has in order to verify if it is physical problem or not. Let Rob check the wires and all the necessary devices like the routers and switches. If its not physical problem then check if the packets have gone out to the different layers of the network.
448
divide 16 and 2 and you get 8 and then
8×8×7= 448
Answer:
C++.
Explanation:
Dynamic array consists of a pointer that, by default, points to the first element of the array. If the array name is foo, its first element's value can be accessed through foo[0] or *foo and foo[1] or *(foo + 1) and so on.
To find out if pointer ptr is pointing to any element of the intArray, we need to access each array element's address. We can do that by removing the asterisk from the element i.e. (foo + 1).
////////////////////////////////////////////////////////////////////////////////////
int withinArray(int * intArray, int size, int * ptr) {
for (int i = 0; i < size; i++) {
if (ptr == (intArray + i)) {
return 1;
}
return 0;
}
The answer is A but I don't see how this is suppose to be for Computers and tech ?