Explanation:
6579689993 and password is 3250 I RISHAVjoin please I join yar
Answer:
It is true, that in a management information system, the quality of information is determined by its usefulness to users, and its usefulness determines the success of the information system.
Explanation:
A management information system (MIS) is a computerized and centralized database that collects data from many different resources in the organization. And, then processes and organized the data in a way that would be useful and helpful in making a business decision. These days, for both large and small organization, collection of data and use of technology are so prevalent and these organization collecting the data from their businesses resources daily even hourly such as daily sale, daily expense, hourly wages, etc, and then managing it in a way to make a right business decision. A good MIS in an organization gives a competitive advantage because it turns the data into usable and into helpful information that can be used in making business decisions and strategy and to increase profit.
However, the information quality is based on its usefulness to the user or to the organization. Because if the MIS produces the information that is not useful to the user, the information and use of MIS are useless in the organization because the information that is required in making a business decision is not useful.
If the MIS produces the quality information to its user in making the right business decision and organization or user take the right decision that brings profit to the organization. Then, this use of information determines the success of an information system in an organization.
For example:
In a Bakery, the MIS produce the right information in making decision e.g. MIS produce information to bakery owner that on valentine day, most people buy chocolate. Then, the owner tries to meet the demand for chocolate on valentine's day. Therefore, this is the quality of information and it is determined by its usefulness to the bakery owner and its usefulness determines the success of MIS.
Answer:
Explanation:
It knows how to remember data and where to find that data. In other words, it knows how the raw memory works. (RAM).
It understands how to make a program run within the confines of its logical steps in an order that makes the program work the way the user intends.
It can be made to display short cuts, or any icon or picture (not an obvious talent).
It can search for unwanted intruders like ads or viruses.
It can can time events even to the point of getting your coffee ready for you with the proper add on.
Answer:
import java.util.Scanner;
public class Main
{
public static void main(String[] args) {
Scanner ob = new Scanner(System.in);
System.out.println("How many numbers? ");
int n = ob.nextInt();
int[] arr = new int[n];
for (int i=0; i<n; i++) {
System.out.print("Enter the number: ");
arr[i] = ob.nextInt();
}
System.out.println(indexOfLargestElement(arr));
}
public static int indexOfLargestElement(int[] arr) {
int max = arr[0];
int maxIndex = 0;
for (int i=0; i<arr.length; i++) {
if (arr[i] >= max) {
max = arr[i];
maxIndex = i;
}
}
return maxIndex;
}
}
Explanation:
Create a method called indexOfLargestElement that takes one parameter, an array
Initialize the max and maxIndex
Create a for loop iterates throgh the array
Check each element and find the maximum and its index
Return the index
Inside the main:
Ask the user to enter how many numbers they want to put in array
Get the numbers using a for loop and put them inside the array
Call the indexOfLargestElement method to find the index of the largest element in the array
Answer: (D) Must always have a data store if there are paper documents involved.
Explanation:
A system flowchart is basically responsible for displaying the data in the system and also control the flow of data. The system flowchart are basically use various graphic symbol for representing the systematic manner for processing the output.
It basically contain data store in the system if there is data documents present in the system so that it make easy to store the data in the system.
There are basically four symbols that is use to represent in the program flowchart is that are: Firstly start, processing, decision making and then end.