Theory of knowledge (TOK) plays a special role in the International Baccalaureate® (IB) Diploma Programme (DP), by providing an opportunity for students to reflect on the nature of knowledge, and on how we know what we claim to know.
        
             
        
        
        
Answer:
Explanation:
The following code is written in Java and it asks you for your age and then prints out the exact date from your birthday that you will turn 10,000 days old.
import java.util.Calendar;
import java.util.Date;
import java.util.Scanner;
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        System.out.println("What is your age?");
        int age = in.nextInt();
        int daysLeft = (10000 - (age*365));
        Date birthday = new Date();
        Calendar cal = Calendar.getInstance();
        cal.setTime(birthday);
        cal.add(Calendar.DATE, daysLeft);
        Date modifiedDate = cal.getTime();
        System.out.println(modifiedDate);
    }
}
 
        
             
        
        
        
Answer:
All
Explanation:
Not sure on the context of this question, but a loop is generally used to iterate though every piece of data to perform some kind of operation, on everything in something like an array or string. 
 
        
                    
             
        
        
        
Huh we’re, we’re is the computer screen shot