Answer:
In Java:
import java.util.*;
public class Main{
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
String isbn;
System.out.print("First 1:2 digits: ");
isbn = input.nextLine();
if(isbn.length()==12){
int chksum = 0;
for(int i = 0; i<12;i++){
if((i+1)%2==0){ chksum+= 3 * Character.getNumericValue(isbn.charAt(i)); }
else{ chksum+=Character.getNumericValue(isbn.charAt(i)); } }
chksum%=10;
chksum=10-chksum;
if(chksum==10){
System.out.print("The ISBN-13 number is "+isbn+"0");}
else{
System.out.print("The ISBN-13 number is "+isbn+""+chksum); } }
else{
System.out.print("Invalid Input");
} }}
Explanation:
See attachment for explanation where comments are used to explain each line
Answer:
warehouse
Explanation:
A bit similar to a database, a data warehouse is a collection or large store of data from different sources that businesses and organization can use to make intelligent business decisions. The data sources for a data warehouse are typically databases from different vendors and architectures.
Data warehouses are typically data repositories used by organizations for data analysis and reporting purposes.
Italics
Italics
Italics
Italics
Preparation of the veggies list is one job linked to Julian's career that she should complete on her own. As a result, option A
<h3>What exactly is a career?</h3>
A career is a collection of events that you have had throughout the course of your life. Your career is being built as you get more experience in the realms of work and life.
Your education, training, and paid or unpaid employment all factor towards your professional path.
As a result, Julian will continue to prepare the list of veggies to be purchased.
Learn more about your Career :
brainly.com/question/13759188
#SPJ1