The first step in accessing database information is to establish a ____ with the database. a. pipeline b. dialog c. connection d. data exchange path\

Answers

Answer 1

Answer:

C

Explanation:

To access any database you of course need to establish a connection with it, which then proceeds to the user verification process of the data implemented.


Related Questions

Compare and Contrast IPv4 and IPv6. Find examples of companies who are currently using IPv6. What are some of the benefits of using IPv6 over IPv4 and vice versa.

Answers

Answer/Explanation:

IPv4 address field is of 32-bits while the address field of IPv6 is 128-bits.The IPv4 requires a packet size of 576 bytes with optional fragmentation whereas, IPv6 uses 1280 bytes without fragmentation.IPv6 is preferred over IPv4 because of its large address range. IPv4 uses 32-bit source and destination address and we are running out of addresses. To solve this issue, Internet Engineering Task Force has devised a solution by introducing IPv6 which uses 128-bits address field. It is being said that if we convert the water bodies present on earth into deserts and then we assign each particle of desert with an address even then the addresses of IPv6 won't end.IPv6 provides flexible options and extensions.IPv6 provides multi broadcast while, IPv4 just provides broadcast.Internet has switched from IPv4  to IPv6.

Data governance consists of? A. the processes, methods, and techniques to ensure that data is of high quality, reliable, and unique (not duplicated), so that downstream uses in reports and databases are more trusted and accurate B. the overarching policies and processes to optimize and leverage information while keeping it secure and meeting legal and privacy obligations in alignment with organizationally stated business objectives; C. established frameworks and best practices to gain the most leverage and benefit out of IT investments and support the accomplishment of business objectives D. None of the above

Answers

Answer:

A. the processes, methods, and techniques to ensure that data is of high quality, reliable, and unique (not duplicated), so that downstream uses in reports and databases are more trusted and accurate

Explanation:

Data governance consists of the processes, methods, and techniques to ensure that data is of high quality, reliable, and unique (not duplicated), so that downstream uses in reports and databases are more trusted and accurate. Master data management (MDM) tools can assist in this effort.

Once the definitions of these three information-related governance disciplines are clear, their differences become more distinct.

Explain how increasingly standardized data, access to third-party datasets, and current trends in hardware and software are collectively enabling a new age of decision making?

Answers

Answer and Explanation:

The information revolution has had profound impacts on decision-making allowing more informed decision as a result of "stone throw" information reach- in our pockets, the desk, the TV, and the vast number of technologies that make this possible.

Standardized data which involves data formatted to bring uniformity and be easily understood and compared by programs and people , access to rich, outsider dataset and less tasking and flexible plus powerful programming have all contributed to empowering another time of information driven decision-making that are less prone to errors and mistakes.

Advances in data storage techniques and the rapidly declining costs of data storage threaten​ ________. A. organizational procedures B. individual privacy C. growth in mobile devices D. network advances E. analytical procedures

Answers

Answer:

Option C is the correct option.

Explanation:

In the above scenario, Advancements in storage technologies and fast-declining storage prices are undermining growth in the mobile device because current mobile devices have many useful features of data storage and it can also use in other fields such as cloud storage, also in word processing and many other areas which are useful for the users.

Option A is incorrect because it is not suitable according to the following case. Option B is incorrect because data storage is not related the individual privacy. Options D and E are incorrect because in the above case, it is about the data storage techniques not for the network advances and analytical procedures.

A slow response when opening applications or browsing the Internet, applications that do not work properly, an operating system that does not boot up correctly or does not function normally, and event logs that report numerous, unusual alerts are all:________. A. Signs of computer aging. B. Indications of antivirus software running in the background. C. Symptoms of malware mutation.

Answers

Answer:

C. Symptoms of malware mutation

Explanation:

They are signs that could indicate that ones system is infected by virus.

Such signs includes:

1.Slow booting or startup.

2.Low space storage.

3.Blue screen of death.

4.Slow Internet performance.

5.Sending of spam messages.

6.Disabled security.

7.Browsing error.

8.Pop-up messages.

9.Renaming of files.

10.Loss of certain files, music, messages, etc.

Answer:

Option c: Symptoms of malware mutation

Explanation:

The most common symptom of a malware mutation is a slow running computer. The main activity of malware programs is to slow down your operating system and cause problems with your local applications even you are not using the internet. Event log reports unusual alerts and RAM is consumed by virus programs which makes RAM unavailable for your tasks.

In this exercise, you’ll design a "starter" HealthProfile class for a person. The class attributes should include the person’s first name, last name, gender, date of birth (consisting of separate attributes for the month, day and year of birth), height (in inches) and weight (in pounds). Your class should have a constructor that receives this data. For each attribute, provide setters and getters.The class should include methods that calculate and return the user’s age in years, maximum heart rate and target heart rate range, and body mass index (BMI). Write a Java application that prompts for the person’s information, instantiates an object of class HealthProfile for that person and prints the information from that object—including the person’s first name, last name, gender, date of birth, height and weight—then calculates and prints the person’s age in years, BMI, maximum heart rate and target-heart-rate range. It should also display the BMI values chart.

Answers

Answer:

package healthcare;

import java.util.Calendar;

public class HealthProfile {

  private String firstName;

  private String lastName;

  private char gender;

  private int day;

  private int month;

  private int year;

  private double height;

  private double weight;

  public HealthProfile(String firstName, String lastName, char gender, int day, int month, int year, double height,

          double weight) {

      super();

      this.firstName = firstName;

      this.lastName = lastName;

      this.gender = gender;

      this.day = day;

      this.month = month;

      this.year = year;

      this.height = height;

      this.weight = weight;

  }

  public String getFirstName() {

      return firstName;

  }

  public void setFirstName(String firstName) {

      this.firstName = firstName;

  }

  public String getLastName() {

      return lastName;

  }

  public void setLastName(String lastName) {

      this.lastName = lastName;

  }

  public char getGender() {

      return gender;

  }

  public void setGender(char gender) {

      this.gender = gender;

  }

  public int getDay() {

      return day;

  }

  public void setDay(int day) {

      this.day = day;

  }

  public int getMonth() {

      return month;

  }

  public void setMonth(int month) {

      this.month = month;

  }

  public int getYear() {

      return year;

  }

  public void setYear(int year) {

      this.year = year;

  }

  public double getHeight() {

      return height;

  }

  public void setHeight(double height) {

      this.height = height;

  }

  public double getWeight() {

      return weight;

  }

  public void setWeight(double weight) {

      this.weight = weight;

  }

  public int calculateAge() {

       

      Calendar dateOfBirth = Calendar.getInstance();

      dateOfBirth.set(year, month, day);

      Calendar now = Calendar.getInstance();

      return now.get(Calendar.YEAR) - dateOfBirth.get(Calendar.YEAR);

  }

  public int maximumHeartRate() {

      return 220 - calculateAge();

  }

  public double[] targetHeartRateRange() {

      double[] range = new double[2];

      // Calculate Stating range(50 % of maximumHeartRate)

      range[0] = 0.5 * maximumHeartRate();

      // Calculate End range(85 % of maximumHeartRate)

      range[1] = 0.85 * maximumHeartRate();

      return range;

  }

  public double calculateBMI() {

      return (weight * 703)/(height * height);

  }

  public String getBMIValue()

  {

      double bmi=calculateBMI();

      if(bmi < 18.5)

      {

          return "Underweight";

      }

      else if (bmi>18.5 && bmi<24.9)

      {

          return "Normal";

      }

      else if (bmi>25 && bmi<29.9)

      {

          return "Normal";

      }

      else if (bmi>=30)

      {

          return "Obese";

      }

      return "DafultValue"; //you can give any default value of your choice here if no condition meets the given criteria

  }

  @Override

  public String toString() {

      return "HealthProfile [firstName=" + firstName + ", lastName=" + lastName + ", gender=" + gender + ", Date Of Birth="

              + day + "-" + month + "-" + year + ", height=" + height + ", weight=" + weight + "]";

  }

}

package healthcare;

import java.util.Scanner;

public class TestHealthCare {

  private static Scanner sc;

  public static void main(String[] args) {

      sc = new Scanner(System.in);

      System.out.println("Please enter following details of the Patient");

      System.out.println("First Name");

      String firstName=sc.nextLine();

      System.out.println("Last Name");

      String lastName=sc.nextLine();

      System.out.println("Gender ...... M or F ?");

      char gender=sc.next().charAt(0);

      System.out.println("Date of Birth");

      System.out.println("Day");

      int day=sc.nextInt();

      System.out.println("Month");

      int month=sc.nextInt();

      System.out.println("Year");

      int year=sc.nextInt();

      System.out.println("Height in inches");

      double height =sc.nextDouble();

      System.out.println("weight (in pounds)");

      double weight =sc.nextDouble();

     

      HealthProfile obj=new HealthProfile(firstName, lastName, gender, day, month, year, height, weight);

      int age=obj.calculateAge();

      System.out.println("Patient age is   "+age + " Years");

     

      int maxHeartRate=obj.maximumHeartRate();

      System.out.println("Patient Maximum Heart Rate is   "+maxHeartRate + " beats per minute");

     

      //Call targetHeartRateRange

      double targetHeartRateRange []=obj.targetHeartRateRange();

      System.out.println("Target Heart Range is   "+targetHeartRateRange [0] + " - " +targetHeartRateRange [1]);

     

      //Call calculateBMI

      double bmi=obj.calculateBMI();

      System.out.println("Patient BMI is   "+bmi);

     

      //call getBMIValue

      System.out.println("Patient BMI Value is   "+obj.getBMIValue());

  }

}

Explanation:

Inside the calculate the age in years  method, create Date of Birth of Object.Create Current Date .Inside the method maximumHeartRate , create a New Object of HealthProfile class and Call its constructor .
Other Questions
Cara went on a road trip. She set her cruise control for 65 miles per hour for 2 hours and then she lowered the cruise control to 60 miles per hour for the next 1.5 hours. What is the total distance she traveled during her drive?Question 2 options:227.5 miles210 miles220 miles218.75 miles If the pH of a phosphoric acid (H3PO4) solution is adjusted to 6.50, what is the most abundant species and which is the second most abundant species? For H3PO4 Ka1 = 7.11 x 10-3, Ka2 = 6.34 x 10-8, and Ka3 = 4.22 x 10-13. A Store has 8 fish tanks that each have 40 liters of water. What is the total number of liters of water in all of the fish tanks? how did the United states government dealings with Indian tribes resemble other negotiations?a) tribes were treated as states b) tribes were treated as foreign nations c) tribes were treated as citizens Which statement BEST describes a scientific theory?OA) No scientists believe it is correct.OB) A few scientists believe it is correct.OC) Many scientists believe it is correct.OD) All scientists believe it is correct. Help I am so confused1.)Which equation does not support the fact that polynomials are closed under multiplication? 11=11xx=11x=x133=12.)Multiply and simplify. x^2xx^53.)Multiply and simplify.(3x+7)8x^2 Calculate the osmotic pressure at 36.6 degrees C of a solution made by dissolving 9.18 g of glucose in 34.2 mL of solution. Enter your answer using 2 decimal places!!!! This geologic era is known as the age of aquatic plants and animals. a. Precambrian b. Mesozoic c. Cenozoic d. Paleozoic 2. Which answer choice most aptly describes metamorphic rocks (100 points...this is urgent please help :> )What was the role of Valkyries in Norse mythology? Kayden had to take a Rorschach inkblot test for his new job. He is worried because he has heard that the Rorschach is not a very good test. Critics would agree and suggest that the Rorschach is:_________a) an old test. b) not very reliable and has limited validity. c) not a projective test. d) not a personality test. Early in World War I, the United States War Department designated Fort Oglethorpe, Georgia, as a major site for Which 2 statements are correct regarding reconciling a bank account in QuickBooks Online? (Select all that apply) You can only undo a bank reconciliation via a link in the Accountant Toolbox To successfully reconcile and run a reconciliation report you need to enter the Statement Ending Date and Ending Balance from the relevant bank statement Reconciliations must only be run at period end to estimate tax owed To see the Reconciliation report, select View report after you've successfully reconciled the account what action regarding Texas did President Tyler take on his last day in office? The greatest integer that will divide both 4900 and 168 exactly The American Floral Council used an ad that showed three ower arrangements varying in size froma single rose to a very large elaborate arrangement. The caption simply read, "Just how mad isshe?" This ad relies on which of the following situational inuences for its effectiveness?A. purchase taskB. social surroundingsC. physical surroundingsD. psychological effectsE. antecedent states A sample of nitrogen gas exerts a pressure of 9.80 atm at 32 C. What would its temperature be (in C) when its pressure is increased to 11.2 atm? The equilibrium constant, Kc, for the following reaction is 83.3 at 500 K. PCl3(g) Cl2(g) PCl5(g) Calculate the equilibrium concentrations of reactant and products when 0.400 moles of PCl3 and 0.400 moles of Cl2 are introduced into a 1.00 L vessel at 500 K. Determine whether or not the following languages are regular. If the language is regular then give an NFA or regular expression for the language. Otherwise, use the pumping lemma for regular languages or closure properties to prove the language is not regular. Money Flow The rate of a continuous money flow starts at $1000 and increases exponentially at 5% per year for 4 years. Find the present value and accumulated amount if interest earned is 3.5% compounded continuously. A $200 jacket went on sale for $140. What percentage was the reduction?Question 1 options:70%35%65%60%