What is the format used for IP addresses called?
What will be an ideal response?
Dotted decimal.
Computer Science & Information Technology
You might also like to view...
If you do not want a slide appear during the presentation, switch to Normal view, right-click the slide, then click __________ on the shortcut menu.
A. Cut Slide B. Lock Up Slide C. Remove Slide D. Hide Slide
Computer Science & Information Technology
Consider the following function definition:
``` void tripler(int& n) { n = 3*n; } ``` Given this definition, which of the following are acceptable function calls? int a[3] = {3,4,5}, number = 2; a) tripler(a[2]); b) tripler(a[3]); c) tripler(a[number]); d) tripler(a); e) tripler(number);
Computer Science & Information Technology