1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
zhannawk [14.2K]
3 years ago
9

Raul needs to ensure that when users enter an order into the tblOrders, the shipping date is at least two days after

Computers and Technology
2 answers:
bagirrra123 [75]3 years ago
7 0

Answer:

input mask

Explanation:

Microsoft Access is a database application used to stored data. It is a relational database with rows and columns of data tables in its database.

Data validation is a tool in Access used to put a constraint on how data is entered in the table. The input mask is a data validation type that forces users to enter data in a specified format for a given field or column.

zaharov [31]3 years ago
3 0

Answer:

A

Explanation:

You might be interested in
Write a program to calculate the great circle distance between two points on the surface of a sphere. If p1(x1, y1) and p2(x2,y2
Tamiku [17]

Answer:

import java.lang.*;

public class distance { public static double distance(double latitude1,

                                     double latitude2, double longitude1,

                                     double longitude2)

       {

      // Convert Latitude and Longitude to Radians

           longitude1 = Math.toRadians(longitude1);

           longitude2 = Math.toRadians(longitude2);

           latitude1 = Math.toRadians(latitude1);

           latitude2 = Math.toRadians(latitude2);

           

           double d_longitude = longitude2 - longitude1;

           double d_latitude = latitude2 - latitude1;

           double a = Math.pow(Math.sin(d_latitude / 2), 2)

                   + Math.cos(latitude1) * Math.cos(latitude2)

                   * Math.pow(Math.sin(d_longitude / 2),2);

           double val = 2 * Math.asin(Math.sqrt(a));

           // Radius of earth in kilometers is 6371

           double earth_radius = 6371;

           // Calculate and return the distance

           return(val * earth_radius);

       }

       // Main Method

       public static void main(String[] args)

       {

           double latitude1 = 67.32055555555556;

           double latitude2 = 83.31861111111111;

           double longitude1 = -1.7217899;

           double longitude2 = -1.6567799;

           System.out.println(distance(latitude1, latitude2,

                   longitude1, longitude2) + " K.M");

       }

   }

Explanation:

This program is implemented in Java programming language

The formula for the shortest distance between two points on the earth is:

Distance = 3963.0 * arccos[(sin(lat1) * sin(lat2)) + cos(lat1) * cos(lat2) * cos(long2 – long1)]

The latitude and longitude of the two points must be known

The latitude and longitude are converted into radians using built in methods in java.

Take value for the radius of the earth in Kilometers  6371;

Note that a seperate method has been created to calculate the distance

In the driver method (main), values for latitude and logitudes for both places have been hard-corded, then the method distance is called and passed those values

Note also that the distance has been calculated in Kilometers

8 0
3 years ago
is there reality in your point of view ? if your answer is yes, is there a couse effect relation ship between reality and appera
zheka24 [161]

Answer: Yes but maybe yes

Explanation: reality does exist pinch yourself

8 0
3 years ago
Read 2 more answers
In this problem, there will be the construction of a program that reads in a sequence of integers from standard input until 0 is
Sedaia [141]

Answer:

Check the explanation

Explanation:

package util;

import java.util.ArrayList;

import java.util.Iterator;

import java.util.List;

import java.util.Scanner;

public class Assignment9 {

public Assignment9() {

List<Integer> numList = new ArrayList<Integer>();

Scanner sc = new Scanner(System.in);

System.out.println("Please enter the numbers , press 0 to stop");

int x = 0;

do {

x = sc.nextInt();

numList.add(x);

} while (x != 0);

int size = numList.size();

Integer[] numArray = new Integer[size];

Iterator<Integer> it = numList.iterator();

int i = 0;

while (it.hasNext()) {

numArray[i] = it.next();

i++;

}

int min = findMin(numArray, 0, 2);

System.out.println("The minimum number is " + min);

int sum = computeNegativeSum(numArray, 0, 2);

System.out.println("The sum of the negative numbers is " + sum);

int sumOdd = computeSumAtOdd(numArray, 0, 3);

System.out

.println("The sum of the numbers at odd indexes is " + sumOdd);

int countEven = computeCountEven(numArray, 0, 3);

System.out.println("The total count of even integers is " + countEven);

}

/**

* This method is used to compute the minimum number

* "at"param NumArray

* "at"param startIndex

* "at"param endIndex

* "at"return

*/

public int findMin(Integer[] NumArray, int startIndex, int endIndex) {

if (startIndex == endIndex)// base case50.

{

return NumArray[startIndex]; // return value is there is only one

// entry

} else if (findMin(NumArray, startIndex, endIndex - 1) < NumArray[endIndex]) {

return findMin(NumArray, startIndex, endIndex - 1);

} else {

return NumArray[endIndex];

}

}

/**

* This method is used to find the sum of negative numbers in the array

* "at"param NumArray

* "at"param startIndex

* "at"param endIndex

* "at"return

*/

public int computeNegativeSum(Integer[] NumArray, int startIndex,

int endIndex) {

if (startIndex == endIndex) {

if (NumArray[startIndex] > 0) {

return 0;

} else {

return NumArray[startIndex];

}

} else if (NumArray[endIndex] < 0) {

return computeNegativeSum(NumArray, startIndex, endIndex - 1)

+ NumArray[endIndex];

} else {

return computeNegativeSum(NumArray, startIndex, endIndex - 1); // if

}

}

/**

* This method is used to find the sum of numbers at odd indexes (1,3, 5,...),

*

* "at"param NumArray

* "at"param startIndex

* "at"param endIndex

* "at"return

*/

public int computeSumAtOdd(Integer[] NumArray, int startIndex, int endIndex) {

if (startIndex == endIndex) {

if (startIndex % 2 == 1) {

return NumArray[startIndex];

} else {

return 0;

}

} else {

if (endIndex % 2 == 1) {

return computeSumAtOdd(NumArray, startIndex, endIndex - 1)

+ NumArray[endIndex];

} else {

return computeSumAtOdd(NumArray, startIndex, endIndex - 1);

}

}

}

/**

* This method is used to find the number of even numbers within the array

*

* "at"param NumArray

* "at"param startIndex

* "at"param endIndex

* "at"return

*/

public int computeCountEven(Integer[] NumArray, int startIndex, int endIndex) {

if (startIndex == endIndex) {

if (NumArray[startIndex] % 2 == 0) {

return NumArray[startIndex];

} else {

return 0;

}

} else if (NumArray[endIndex] % 2 == 0) {

return computeCountEven(NumArray, startIndex, endIndex - 1)

+ NumArray[endIndex];

} else {

return computeCountEven(NumArray, startIndex, endIndex - 1); // if

}

}

public static void main(String args[]) {

Assignment9 assignment9 = new Assignment9();

}

}

Sample Output is :

*************************

Please enter the numbers , press 0 to stop

5

7

3

2

4

-7

-3

0

The minimum number is 3

The sum of the negative numbers is 0

The sum of the numbers at odd indexes is 9

The total count of even integers is 2

8 0
3 years ago
Information is stored on a compact disk in a coded pattern of tiny pits arranged in a track that spirals outward toward the rim
Maksim231197 [3]

Answer:

(i) The rotation speed must stay the same.

(ii) The rotation speed must increase.

(iii) The rotation speed must decrease.

Explanation:

According to Equation

10.10, the angular speed must therefore vary as the laser–lens system moves

radially along the disc. In a typical CD player, the constant speed of the surface at

the point of the laser–lens system is 1.3 m/s.

5 0
3 years ago
Compound microscope are typically prepared on
alekssr [168]
Compound microscopes are usually prepared on glass slides. Hope this helps!
8 0
3 years ago
Other questions:
  • An organization’s IRP prioritizes containment over eradication. An incident has been discovered where an attacker outside of the
    5·1 answer
  • What are two methods for playing a slide show from the first slide?
    9·2 answers
  • A(n) _____ can be used to reveal a competitor’s program code, which can then be used to develop a new program that either duplic
    9·1 answer
  • Write a program that reads a stream of integers from a file and writes only the positive numbers to a second file. The user shou
    5·1 answer
  • __________ is a protocol used by e-mail clients to download e-mails to your computer.
    14·1 answer
  • Why are computers assigned IP addresses?
    11·1 answer
  • Let X and Y be two decision problems. Suppose we know that X reduces to Yin polynomial time. Which of the following statements a
    14·1 answer
  • If Moses receive an email from his friend what is the name of the space where the massage is kept​
    5·1 answer
  • A short story, but i remember in 1nd - 5th grade at my elementary school here is the list from first to last for being cool at s
    9·2 answers
  • Modify your program from Learning Journal Unit 7 to read dictionary items from a file and write the inverted dictionary to a fil
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!