Answer:
improving the current process before automating it
Answer:
Moore’s law states that processor speeds, or overall processing power for computers will double every two years.
Explanation:
- Moore’s law is more than an observation than a law which was originated in 1970. The observation is about the number of transistors that is present in any system or an integrated system that will be doubled every couple of years.
- The real-world application of Moore's law can be seen during computing your business taxes, piloting a spaceship, or changing the television station, etc.
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:
.GIF
Explanation:
GIF or Graphics Interchange Format files are widely used for web graphics, because they are limited to only 256 colors, can allow for transparency, and can be animated. GIF files are typically small is size and are very portable.
Answer:
Explanation:
Exercise A:
1. A table.
2. Categorical.
3. Access.
4.Queries.
5.ACCDB extension.
Exercise B:
1. Insert Tab.
2. DoCmd.Quit method.
3.Navigation Pane.
4. Modify table data.
5.The top pane and the bottom pane.
Hope this helped you!