Answer:
twainQuotes = ['I have never let my schooling interfere with my education.', 'Get your facts first, and then you can distort them as much as you please.', "If you tell the truth, you don't have to remember anything.", 'The secret of getting ahead is getting started.', "Age is an issue of mind over matter. If you don't mind, it doesn't matter. "]
print(twainQuotes)
twainQuotes.sort()
print(twainQuotes)
twainQuotes.insert(1,'Courage is resistance to fear, mastery of fear, not absence of fear.' )
print(twainQuotes)
Explanation:
ok
 
        
             
        
        
        
How can an individual find career data?a. using a libraryb. searching the webc. conducting an interview with someone in a particular fieldd. all answer choices are sources for finding career data?The answer is d. An individual can do all the option a, b, and c to find a better career data.
        
             
        
        
        
Answer:
<div>
Explanation:
The div tag explicitly called the division tag is an extremely important tag in Hypertext Markup Language and Cascading Style Sheets ecosystem. Like most of the other tags used during writing and styling web documents, the div tags plays an important role as it serves as a container which is capable of holding several HTML elements such as the head, body , paragraph tags and so on. All elements within the div tags can be easily styled using the same CSS style specification without having to take the more singular and tedious approach. They also aid fast manipulation using compatible languages. Hence, using the cajas attribute, several elements within a div can be styled at the same time. Also note that , line breaks are automatically placed before and after a tag.
Hence, the div tag is the most appropriate answer. 
 
        
             
        
        
        
Answer:
true because then it would be like not popping out
 
        
             
        
        
        
public class Circle {
 // the private data members
 private double radius;
 private double area;
 private double diameter;
 public void setRadius(double r)
 {
  radius = r;
 }
 public double getRadius()
 {
  return radius;
 }
 public double computeDiameter()
 {
  return radius * 2;
 }
 public double computeArea()
 {
  return ((radius * radius) * 3.14);
 }
}