Answer:
There is no difference between ‘’ and “” string type in python. Both are used to hold the string or sequence of character in the python. triple """ """ can also use for the same.
Example:
str1 = "aeiou"
str2 = 'aeiou'
str3 =""" hello"""
print(type(str1), type(str2),type(str3))
<class 'str'> <class 'str'> <class 'str'>
Here all are used to hold string or sequence of character.
 
        
             
        
        
        
Answer:
Simple, really
Explanation:
3Rd one is pretty easy, all you have to do is read closely.
 
        
             
        
        
        
D that’s the answer I learn that in my old school
        
             
        
        
        
Answer:
Answered below
Explanation:
//Program in Java
class MyInfo{
public static void main (String args []){
myFullName("John", "Doe");
myAgeMajorGPA(20, "Biology", 4.3);
}
public void myFullName(String initialName, String middleName){
 System.out.println(initialName);
 System.out.print(middleName);
}
public void myAgeMajorGPA(int age, String major, double GPA){
 System.out.println(age);
 System.out.println(GPA);
 System.out.print(major);
}
}
 
        
             
        
        
        
Answer: b) GNATT chart
Explanation: GNATT is the type of chart that displays the schedule or working in the form of bars in horizontal direction .The chart displays the duties /task performed on the vertical axis and the time periods on horizontal axis week-vise. This chart is usually used for project management purpose fr coordination, tracing, planning etc.
Other options are incorrect because project staffing chart is for the display of the staff activities involved during project, histogram is graph representation using bars of different heights and entity diagram displays the entities relation in databases..Thus , the correct option is option(b).