Answer:
Vertical exchanges are typically used only to buy and sell materials required for an organization's support activities- False
Answer:
hope this helps. I am also a learner like you. Please cross check my explanation.
Explanation:
#include
#include
using namespace std;
int main()
{
int a[ ] = {0, 0, 0}; //array declared initializing a0=0, a1=0, a3=0
int* p = &a[1]; //pointer p is initialized it will be holding the address of a1 which means when p will be called it will point to whatever is present at the address a1, right now it hold 0.
int* q = &a[0]; //pointer q is initialized it will be holding the address of a0 which means when q will be called it will point to whatever is present at the address a0, right now it hold 0.
q=p; // now q is also pointing towards what p is pointing both holds the same address that is &a[1]
*q=1
; //&a[0] gets overwritten and now pointer q has integer 1......i am not sure abut this one
p = a; //p is now holding address of complete array a
*p=1; // a gets overwritten and now pointer q has integer 1......i am not sure abut this one
int*& r = p; //not sure
int** s = &q; s is a double pointer means it has more capacity of storage than single pointer and is now holding address of q
r = *s + 1; //not sure
s= &r; //explained above
**s = 1; //explained above
return 0;
}
The best answer to the question that is being presented above would be letter d. One of the biggest risks involved in using electronic mail or e-mail is the amount of junk mail you get from unsolicited, spamming, and phishing e-mail addresses.
<span>Artificial Intelligence is a huge field. </span>
Answer:
I'll answer this question with a Pseudocode
<em>1. Start</em>
<em>2. Input Length</em>
<em>3. Surface Area1 = Length * Length</em>
<em>4. Surface Area2 = 6 * Surface Area1</em>
<em>5. Volume = Length * Length * Length</em>
<em>6. Print Surface Area1</em>
<em>7. Print Surface Area2</em>
<em>8. Print Volume</em>
<em>9. Stop</em>
<em />
Explanation:
The first line starts the Pseudocode
The second line accepts input for Length of the cube
The third line calculates the surface area of 1 side
The fourth line calculates the surface area of the cube
The fifth line calculates the volume of the cube
The sixth to ninth line prints the calculated parameters
The Pseudocode ends on line 9