Sorry I don't understand your question
        
             
        
        
        
The correct statements about financial literacy from the given options are as follows:
- Financial literacy is the knowledge about money and what you do with money. 
 - Financial literacy includes information about income, banking, loans, career, credit, and consumer rights. 
 - One reason to become financially literate is to save you money. 
 - One reason to become financially literate is to help you make smart financial decisions.
 
The only option that isn’t included is: <em>One reason to become financially literate is to make you rich</em>.  Though knowledge about financial literacy can help you in managing your finances, you would need great amount of knowledge about other fields to be able to become rich - not just financial literacy.
 
        
             
        
        
        
The type of document should she create is  baseline document. Check more about the term Baseline below.
<h3>What is a Baseline document?</h3>
A Baseline document is known to be a kind official or legalized document that has passed through some measures of start approval and was used for its purpose.
Note that for Lin to be able to make the template for the configuration of Windows servers, the type of document that she can create is  baseline document.
Learn more about Windows servers  from
brainly.com/question/14526761
#SJ1
 
        
             
        
        
        
Complete Question:
Write a do-while loop that continues to prompt a user to enter a number less than 100, until the entered number is actually less than 100. End each prompt with a newline. Ex: For the user input 123, 395, 25, the expected output is:
Enter a number (<100):
Enter a number (<100):
Enter a number (<100):
Your number < 100 is: 25
Answer:
import java.util.Scanner;
public class num8 {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int n;
        do{
            System.out.println("Enter a number (<100):");
            n= in.nextInt();
        }while(n>100);
        System.out.println("Your number < 100 is: "+n);
    }
}
Explanation:
Using Java programming language
Import the scanner class to receive user input
create an int variable (n) to hold the entered value
create a do while loop that continuously prompts the user to enter a number less than 100
the condition is while(n>100) It should continue the loop (prompting the user) until a number less than 100 is entered.
 
        
                    
             
        
        
        
95% sure its there must be waves