Ask Question
3 October, 08:36

Int [] val = { 3, 10, 44 };

val[1] = 55;

1) 55 10 44

2) 3 10 55

3) 3 55 10

4) 3 55 44

Q1

+3
Answers (1)
  1. 3 October, 12:24
    0
    1)

    Explanation:

    val[1] represents the first value of the table 'val', which at first is 3. The table val is at first 3, 10, 44.

    val[1] = 55; means that we just changed that first value (3) in the table to 55.

    What's the table now?

    55, 10, 44, rather than 3, 10, 44
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “Int [] val = { 3, 10, 44 }; val[1] = 55; 1) 55 10 44 2) 3 10 55 3) 3 55 10 4) 3 55 44 Q1 ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers