Web development and programming
191828 questions • Page 254 / 3837
1. What is the number of the first “time to live exceeded” packet? 2. Which fiel
1. What is the number of the first “time to live exceeded” packet? 2. Which fields in the IP datagram change from one datagram to the next within this series of ICMP messages sent…
1. What is the order of growth of the following operations for lists implemented
1. What is the order of growth of the following operations for lists implemented with arrays? add to the beginning of a list [ Choose ] O(n) O(n^2) …
1. What is the organization that specifies the standards for HTTP? A. ISO B. ITU
1. What is the organization that specifies the standards for HTTP? A. ISO B. ITU-T C. IETF D. IEEE E. DoD 2. The network span (maximum distance) of a 1GBaseT network (25 meters) i…
1. What is the output of code corresponding to the following pseudocode? Declare
1. What is the output of code corresponding to the following pseudocode? Declare A As Integer Declare B As Float Set A = 2 While <= 3 Set B = 2.5 * A Write B Set B = Int(B) Wri…
1. What is the output of the following C program and Explain WHY??? int x; int *
1. What is the output of the following C program and Explain WHY??? int x; int *ptr; }; } 2. What is the output of the following C program and explain WHY? int k; char c; }; int m…
1. What is the output of the following C++ code? int count = 4;double sum = 0;wh
1. What is the output of the following C++ code? int count = 4;double sum = 0;while(count > 0){ sum = sum + pow(count, 2.0); cout << sum << ' '; count--;}cout <&…
1. What is the output of the following C++ code? int i = 2; int temp = 1; while
1. What is the output of the following C++ code? int i = 2; int temp = 1; while (i < 10) { temp = temp * (i - 1); i = i + 1; } cout << "i = " << i <<…
1. What is the output of the following Java code? int num = 10; boolean found =
1. What is the output of the following Java code? int num = 10; boolean found = false; do { System.out.print(num + " "); if (num <= 2) found = true; else num = num – 4; } while…
1. What is the output of the following code segment? (Write \"infinite loop\" if
1. What is the output of the following code segment? (Write "infinite loop" if the loop never ends.) string str = "stressedOUT"; for (string::size_type index = str.length() - 1; i…
1. What is the output of the following code segment? int array[] = { 8, 6, 9, 7,
1. What is the output of the following code segment? int array[] = { 8, 6, 9, 7, 6, 4, 4, 5, 8, 10 }; System.out.println( "Index Value" ); for ( int i = 0; i < array.length; i+…
1. What is the output of the following code segment? n = 1; while (n
1. What is the output of the following code segment? n = 1; while (n <= 5) cout << n << " "; n++; A) 1 2 3 4 5 B) 1 1 1 ...... and on forever C) 2 3 4 5 6 D) 1 2 3 …
1. What is the output of the following code snippet? Select one: a. b = 100, c =
1. What is the output of the following code snippet? Select one: a. b = 100, c = 101 b. b = 99, c = 101 c. b = 0, c = 100 d. b = 0, c = 101 2. Which of the following is true about…
1. What is the output of the following code? import javafx.beans.property.Intege
1. What is the output of the following code? import javafx.beans.property.IntegerProperty; import javafx.beans.property.SimpleIntegerProperty; public class Test { public static vo…
1. What is the output of the following code? public class Test public static voi
1. What is the output of the following code? public class Test public static void main CString CJ args) try int value 30; if (value 40) throw new Exception ("value is too small");…
1. What is the output of the following program? #include using namesp
1. What is the output of the following program? #include <iostream> using namespace std; int main() { int myNum = 10; int yourNum = 30; if (yourNum % myNum == 3) { yourNum =…
1. What is the output of the following program? 1 def main: 2 x=1 3 y 3.4 4 prin
1. What is the output of the following program? 1 def main: 2 x=1 3 y 3.4 4 print(Before:", X,N", y) 5 change us(x, y) 6 print('inAfter: , x,'t, y) 7 def change _us(a, b): Your an…
1. What is the output of the following program? 2. Draw a state diagram that sho
1. What is the output of the following program? 2. Draw a state diagram that shows the state of the program just before the end of main. Include all local variables and the object…
1. What is the output of the following program? public class One public static v
1. What is the output of the following program? public class One public static void main (String0 args) if (number system out-printin TERROR: Number is less than 1."); else for li…
1. What is the output of the following program? void main(){ int a; printf(%u201
1. What is the output of the following program? void main(){ int a; printf(%u201C%d%u201D,a++); } a.error b.garbage value c.0 d.1 2 . what is the output for the following program?…
1. What is the output of the following program? why? #include #includ
1. What is the output of the following program? why? #include <iostream> #include <string> using namespace std; class Other { int value; public: Other(int n): value(n)…
1. What is the output of the following statements? ArrayList names = new ArrayLi
1. What is the output of the following statements? ArrayList names = new ArrayList(); names.add("Bob"); names.add(0, "Ann"); names.remove(1); names.add("Cal"); names.set(2, "Tony"…
1. What is the output of this code? Ist I50, 70, 11, 13, 1, 9, 29, 31 Ist [1] 3
1. What is the output of this code? Ist I50, 70, 11, 13, 1, 9, 29, 31 Ist [1] 3 del Ist 13 1st [3] = 37 1st [5] = lst [4] print(lst) 150, 3 11. 37, 9, 9, 31 b. 13, 50, 11, 37, 29,…
1. What is the output ofthe following code: (3pts) char findit(char str) char p
1. What is the output ofthe following code: (3pts) char findit(char str) char p str; char t str strlen(str)-1 while (p k t) return p; char data[] Which one is it?"; char p findit …
1. What is the output, if any, of each of the following C++ statements? a. cout
1. What is the output, if any, of each of the following C++ statements? a. cout <<current-> info; b. current = current -> link; cout<<current->info; c. cout&l…
1. What is the overload/view function or even an example of it 2. What are contr
1. What is the overload/view function or even an example of it 2. What are controlling functions or an example of one 3. What are model/lowest level functions or an example PYTHON…
1. What is the percentage overhead of a system that sends 12 seven-bit ASCII cha
1. What is the percentage overhead of a system that sends 12 seven-bit ASCII characters as a block proceeded by 1 start bit, then followed by 1 parity bit and 14 stop bits? The bi…
1. What is the primary problem that comes with using a regular binary search tre
1. What is the primary problem that comes with using a regular binary search tree for maintaining a search tree with data elements that are inserted and deleted dynamically…
1. What is the purpose of the Lululemon Website? (What is the \"call to action\"
1. What is the purpose of the Lululemon Website? (What is the "call to action"?) Who—which target market(s)—is the site designed for? 2. How well does the site follow best practic…
1. What is the purpose of the PC and IR registers? 2. function of the Immed regi
1. What is the purpose of the PC and IR registers? 2. function of the Immed register? 3. Describe the possible sources for data stored in the register file (i.e., the inputs to th…
1. What is the purpose of the following algorithm, assuming s references a Strin
1. What is the purpose of the following algorithm, assuming s references a String? boolean valid = (s != null); int i = 0; char ch; while (valid && i < s.length()) { ch…
1. What is the purpose of using cut in \'Prolog\'? What is the difference betwee
1. What is the purpose of using cut in 'Prolog'? What is the difference between Green and Red cut, explain them using examples. 2. Sort a list of integer numbers in descending ord…
1. What is the result of the following code? import numpy as np x = np.array([1,
1. What is the result of the following code? import numpy as np x = np.array([1,4,5]) y = x print(x + y) (Points : 1) [1,4,5,1,4,5] [2,5,10] [2,8,10] […
1. What is the running space of merge sort? A. (log n) B. (n) C. (n log n) D. (n
1. What is the running space of merge sort? A. (log n) B. (n) C. (n log n) D. (n 2 ) 2. What is the worst case of heap sort in terms of running time? A. (log n) B. (n) C. (n log n…
1. What is the simplest method to connect a Windows 10 host to a Linux server A.
1. What is the simplest method to connect a Windows 10 host to a Linux server A. NIT B. NFS C. DHCP D. samba 2. What …
1. What is the technique of executing instructions in parallel called? 2. Which
1. What is the technique of executing instructions in parallel called? 2. Which component of an operating system is responsible for switching control between tasks? 3. Identify th…
1. What is the truncated value of 78.90 when this SQL statement is executed? SEL
1. What is the truncated value of 78.90 when this SQL statement is executed? SELECT TRUNC(78.90,-2) FROM DUAL; 2. What is the round of value of 78.90 when this SQL statement is ex…
1. What is the truth value ofwhen both p and q are false? 2. What are the conver
1. What is the truth value ofwhen both p and q are false? 2. What are the converse and contrapositive of the statement "If it is sunny, then I will go swimming? 3. Show that andar…
1. What is the typical relationship among the untrusted network, the firewall, a
1. What is the typical relationship among the untrusted network, the firewall, and the trusted network? 2. What is the relationship between a TCP and UDP packet? Will any specific…
1. What is the underlying issue behind end-point security, and why is it becomin
1. What is the underlying issue behind end-point security, and why is it becoming increasingly difficult for companies to address it? Define the problem in your own words using ex…
1. What is the value in the AL register after each shift or rotate instruction?
1. What is the value in the AL register after each shift or rotate instruction? D4h=1101 0100 mov al, 0D4h shr al,1 A. AL=0100 0000 B. AL=0110 1010 C. AL=1110 1010 D. AL= 0000 110…
1. What is the value of ans after the following ML code is executed? fun silly2
1. What is the value of ans after the following ML code is executed? fun silly2 () = let val x = 1 in (let val x = 2 in x+1 end) + (let val y = x+2 i…
1. What is the value of each variable after the if statement? a. int n = 1; int
1. What is the value of each variable after the if statement? a. int n = 1; int k = 2; int r = n; if (k < n) { r = k; } b. int n = 1; int k = 2; int r; if (n < k) { r = k; }…
1. What is the value of requiring the OS to provide status information? 2. What
1. What is the value of requiring the OS to provide status information? 2. What is the difference between a true layered structure and the way that MS-DOS used layering? 3. Why is…
1. What is the value of the arithmatic epxression: a+b%c int a=7; int b=10; int
1. What is the value of the arithmatic epxression: a+b%c int a=7; int b=10; int c=3; 2. a and b are int variables. Which expression always evaluate to the same value? int exp A= a…
1. What is the value of the following numerical expression?( ( ( 6 + ( ( 3 * 2 /
1. What is the value of the following numerical expression?( ( ( 6 + ( ( 3 * 2 / 3 ) + 1 ) % 2 ) / 2 ) % 3 ) 2. How many times does the "t = t + k;" statement execute in the follo…
1. What is the value of the variable ACCUM after the instructions corresponding
1. What is the value of the variable ACCUM after the instructions corresponding to the following pseudocode are executed? ACCUM = 1 COUNT = 0 DOWHILE COUNT <= 4 ACCUM = ACCUM +…
1. What is the value of variable n after the C statements below have been execut
1. What is the value of variable n after the C statements below have been executed? n = 3; m = 5; if ( m – 2 * n <= 0) { n += 2; } else { n--; } 2. What is the value of variabl…
1. What is the worst-case complexity of your dump() method as shown below? Brief
1. What is the worst-case complexity of your dump() method as shown below? Briefly explain the answer, making sure to identify the problem size(s). Thanks!!! 2. Suppose insert an …
1. What is the worst-case time complexity of the reduction below when using an a
1. What is the worst-case time complexity of the reduction below when using an adjacency matrix to represent the graph? Show your work. In this reduction, HC is an algorithm that …
1. What is the worst-case time complexity of the reduction below when using an a
1. What is the worst-case time complexity of the reduction below when using an adjacency matrix to represent the graph? Show your work. In this reduction, HC is an algorithm that …
Subject
Web development and programming
Use Browse or pick another subject.