Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Help me Select one answer for each following question: REAL X, Y X = 3 Y = SIN(X

ID: 2995202 • Letter: H

Question

Help me

Select one answer for each following question: REAL X, Y X = 3 Y = SIN(X) PRINT Y In the pseudocode fragment shown, l.ne 3 is most accurately descended as a(n): declaration. assignment. command. function. If a numerical array is declared as integer, and the last memory location is a[5], what is the size of this array? (The integer is 4 bytes.) 24 20 16 4 If a character array is declared and assigned as char a[] = "sin"; what is the last character in this array? 'n' '' ' ' ' ' If a variable is used only in a function, but is not able to be accessed by oilier functions, the variable must be declared as: public private global local If a variable is used by not only in a class, but also is able to be accessed by classes, the variable must be declared as: global local public private

Explanation / Answer

1) A. declaration

2) total no. of elements = 5+1(because first element is a[0]) =6

total size= 6*4 = 24

3) last elementin a chracter array is always null i.e ''

4) local

5) global