Identify the keyword that an object can use to refer to itself. {Ans: this or self}What will be the results of the following code? ARRAY_SIZE ← 5 Create array x [ARRAY_SIZE] FOR (int i = 0, i < length of x, i++) x[i] ← 10 ENDFOR {Ans: All the values in the array are initialized to 10}What is the result of the following expression?10 + 5 * 3 - 20 {Ans: 5}The visibility level of a class field should be. {Ans: private}Select the appropriate data type for a variable to store your GPA, in a statically-typed language: {Ans: double or float}The code that we write as programmers is known as: {Ans: source code}This search compares the target value with the middle element in the collection, then ignores the half of the collection in which the target cannot exist. {Ans: Binary}A field can be of any data type that is legal in the language you are using. {Ans: True}This algorithm works by selecting the smallest unsorted item in the list and then swapping it with the item in the next position to be filled. {Ans: Selection}Programming language syntax is the hardest part