Answer:
Correct answer is
clicking on item will display a dailogbox/ more options
Explanation:
In web site menus have limited space.To add all items menus are grouped in categories and only category names are shown while there subsets are displayed in a drop down list upon hovering on them.
Some time designer user three dot indication which indicates there are more options available in a hidden side bar or dialog menu which opens upon clicking the ellipse.
It appears that the local network connection (ethernet, Wi-Fi, etc.) is working but the gateway to the WAN is down.
Answer:
Counting the number of elements in the array list smaller than temp.
Explanation:
We have an array list,a previously initialized integer temp and a an integer c initialized with 0.
In the code a for loop is used to iterate over the array and it is checking if the element at jth index is less than temp if it is then increasing the variable c by 1.
Hence when the loop ends the c will be having the count of the integers in array list that are smaller than temp.
Answer:

•Hardware
•Software
•Data
•Procedures
•Input Unit
•Output Unit
•CPU(Central Processing Unit)
•Connectivity
•Primary Memory
•Motherboard
•GPU(Graphics Processing Unit)
•Solid State Drive (SSD) or Hard Disk Drive (HDD)
•RAM
Explanation:

A boolean operator is one of those: and, or, not
true and true gives you true
<span>false and false gives you false
</span><span>false and true gives you false
</span><span>true and false gives you false
</span>true or true gives you true
true or false gives you true
false or true gives you true
false or false gives you false
not true gives you false
not false gives you true