A terminology which is used to describe selecting and viewing information stored in a database is known as query.
<h3>What is query?</h3>
A query can be defined as a computational request, selection and view of the data that are stored in a database table, from existing queries, or even from a combination of both a database table and existing queries.
In this scenario, we can infer and logically conclude that query is a terminology that is typically used to describe selecting and viewing of information that are stored in a database.
Read more on query here: brainly.com/question/25266787
#SPJ12
Answer:
The correct answer for the given question is 24
Explanation:
In the given question the value of variable i entered by the user is 25 i.e the value of i is 25 control checks the condition of if block which is false .So control moves to the else block and executed the condition inside the else block means it executed i-- decrements the value of i by 1 means i is 24
Following are the program of java :
import java.util.*;// import package
public class Main // main class
{
// main method
public static void main(String[] args)
{
int i = 0; // variable declaration
Scanner in = new Scanner(System.in); // creating class of scanner class
System.out.print("Enter a number: ");
i = in.nextInt(); // user input
if (i > 25) // check if block
{
i++; // increment the value of i
}
else
{
i--; // decrement the value of i
}
System.out.println(i); // display i
}
}
Output:
Enter a number:25
24
The answer should be C
Getting rid of racism
Hope this helps