Which of the following function declarations receives a pointer to a two-dimensional array of integers with five rows and ten columns?

A. void fun(int ary[10][5]);
B. void fun(int ary[5][10];
C. void fun(int* ary[5];
D. void fun(int** ary;
E. void fun(int** ary[5];


Answer: D

Computer Science & Information Technology

You might also like to view...

What are the pin assignments for 1Gbps and 10Gbps?

What will be an ideal response?

Computer Science & Information Technology

Find the error(s) in the following code. The method should have a Synthesizer object say, “Hello, here are the instructions to run the application.” This should happen when the user clicks the Instructions JButton. The speechSynthesizer variable references a Synthesizer object, which is declared as an instance variable.

``` 1 private void instructionsJButtonActionPerformed( ActionEvent event ) 2 { 3 speechSynthesizer.setSpeakingRate( 100.0f ); 4 speechSynthesizer.speakPlainText( 5 "Hello, here are the instructions to run the application" ); 6 7 } // end method instructionsJButtonActionPerformed ```

Computer Science & Information Technology

Good information gathering can make the difference in achieving a successful pen test

Indicate whether the statement is true or false.

Computer Science & Information Technology

What is the binary equivalent of the decimal number 7?

A. 1001 B. 0111 C. 0011 D. 1010

Computer Science & Information Technology