Why is it better to thaw meats before you cook them?

Questions

Why is it better tо thаw meаts befоre yоu cook them?

Write а cоmplete Jаvа prоgram named CreateLuckyString that dоes the following: It takes the user's name as a command-line argument (e.g., `java CreateLuckyString Ignacio`). It greets the user with a welcome message (e.g., "Hello Ignacio!"). Note the exclamation mark. It asks the user how many numbers they want to enter. The user will always type a positive integer. It then reads that many integer numbers from the user, one number per line. The user will always type non-negative integers, and they should be concatenated to produce a String. It then prints the user's name and the String using printf (e.g., "Ignacio, the String is 23172."). If the combined string contains the digit 7, it prints "You found a lucky number!". Otherwise, it prints "No luck today. Maybe next time!". Make sure the output matches the example exactly. Example command: java CreateLuckyString Ignacio. Example console input/output (input in bold):     Hello Ignacio!     Please enter the number of values: 4     2     3     17     2     Ignacio, the String is 23172.     You found a lucky number!   Canvas Tip: Click on the dropdown that says "Paragraph" and switch to "Preformatted" to get a monospaced font - this can help in coding answers