Answer:
The trees have no tongues, And the Lorax disapproves of the use of the Tree and the Thneed.
 
        
             
        
        
        
Answer:
import java.util.Scanner;
import java.lang.*; 
class Main
{
   public static void main(String args[])
   {
      int n;
      //For capturing the value of n
      Scanner scanner = new Scanner(System.in);
      System.out.println("Enter the value of n:");
      //The entered value is stored in the var n
      n = scanner.nextInt();
      int k=1;
      printnum(n,k);  
   }
   public static void printnum(int n,int k)
   {
        if(n%2==0)
        {
        for(int i=k;i<=n-1;i=i+2)
             {
                 System.out.print(i);
             }     
         System.out.println("");
        }
        else
         {
        for(int i=k;i<=n-1;i=i+2)
             {
                 System.out.print(i);
             }     
         System.out.println("");
         }
       n--;
       if(n<=1)
       {
          System.exit(0); 
       }
       else
       {
           printnum(n,k+1);
       }
    }
}
Explanation:
The program is self explanatory.
 
        
             
        
        
        
Answer:
My Favorite film is The Old Guard
Explanation:
I like The Old Guard because it has action an etc.
 
        
                    
             
        
        
        
The fill handle will appear as a small square in the bottom-right corner of the selected cell(s). Click, hold, and drag the fill handle until all of the cells you want to fill are selected. Release the mouse to fill the selected cells
        
             
        
        
        
Answer:
B.  is easier to write programs
Explanation:
High-level languages are most commonly used languages these days. The ease of understanding and writing programs in high-level language has made them very popular. High-level languages are near to human. English words are used to write programs in these languages. So option B is the correct answer..