Answer:
public class print{
    
    public static void fillArray(int[] arr, int initialValue){
        
        int n = arr.length;
       for(int i=0;i<n;i++){
           arr[i] = initialValue++;
       }
        for(int i=0;i<n;i++){
            System.out.print(arr[i]+" ");
       }
        
    }
     public static void main(String []args){
         
         int[] array = new int[5];
         int initialValue =3;
         
         fillArray(array,initialValue);
        
     }
}
Explanation:
Create the function with two parameter first is array and second is integer.
Then, declare the variable and store the size of array.
Take the for and fill the array from the incremented value of initialValue  by 1 at every run of loop.
After loop, print the element of the array.
Create the main function which is used for calling the function and also declare the array with size 5 and initialValue with 3. After that, call the function with this argument. 
 
        
             
        
        
        
Answer:
num1 = int(input("Enter value: "))
num2 = int(input("Enter value: "))
if num1 == num2:
    print("Equals.")
else:
    print("Unequal.")
Explanation:
 
        
             
        
        
        
Explanation:
See the attached image for The interface (.h file) of a class Counter
 
        
             
        
        
        
Automation. ... It involves taking a machine or software that was taught to do simple repetitive tasks (traditional automation) and teaching it to intuitively adapt or correct its performance based on changing conditions, at speed and scale.