Answer:
Option a
Explanation:
The Critical Path Method is the arrangement of booked exercises that decides the term of the task. These planned exercises must be performed if the venture is to be viewed as a triumph.
Therefore, options b, c, d and e can't be true because:
b. Activities in the Critical Path Method has no or zero slack.
c. The duration of the critical path in CPM determined on the basis of the latest activity and the earliest initiation.
d. The CPM method schedules the activity of the longest duration.
 
        
             
        
        
        
Answer:
- from matplotlib import pyplot as plt
 - 
 - with open("text.txt") as file:
 -     data = file.readlines()
 -     category = []
 -     amount = []
 -     for row in data:
 -         values = row.split(" ")
 -         category.append(values[0])
 -         amount.append(float(values[1]))
 -     
 - figure = plt.figure()
 - ax = figure.add_axes([0,0,1,1])
 - ax.axis('equal')
 - ax.pie(amount, labels = category, autopct='%1.2f%%')
 - plt.show()
 
Explanation:
Firstly, we need to import matplotlib library (Line 1).
Next, open a file stream and use readlines method to read the data from the text file (Line 4). Presume the data read from the text files are as follows:
Rent 450
Gas 150
Food 500
Clothing 120
Car 600
Create two lists, category and amount (Line 5-6). Use a for loop to traverse through the read data and use split method to break each row of data into two individual items. The first item is added to category list whereas the second item is added to amount list (Line 7 - 10). 
Next, create a plot figure and then add the axes (Line 12 - 13). We can use the pie method to generate a pie chart (Line 15) by setting the amount list as first argument and category list as value of labels attributes. The output pie chart can be found in the attachment.
 
        
             
        
        
        
Answer:
Explanation:
import java.util.Scanner;
public class KboatTriangleAngle
{
   public static void main(String args[]) {
       Scanner in = new Scanner(System.in);
       System.out.print("Enter first angle: ");
       int a1 = in.nextInt();
       System.out.print("Enter second angle: ");
       int a2 = in.nextInt();
       System.out.print("Enter third angle: ");
       int a3 = in.nextInt();
       int angleSum = a1 + a2 + a3;
        
       if (angleSum == 180 && a1 > 0 && a2 > 0 && a3 > 0) {
           if (a1 < 90 && a2 < 90 && a3 < 90) {
               System.out.println("Acute-angled Triangle");
           }
           else if (a1 == 90 || a2 == 90 || a3 == 90) {
               System.out.println("Right-angled Triangle");
           }
           else {
               System.out.println("Obtuse-angled Triangle");
           }
       }
       else {
           System.out.println("Triangle not possible");
       }
   }
}
OUTPUT:
 
        
             
        
        
        
<span>Frames have more information in them than bits.
</span>
<span>Frames are made up of bits but not vice versa.
A bit (BInary digiT) is the basic unit of digital. It can be 0 (logical false, off) or 1 (not logical false - true, on). Four bits are in a nybble, which can have a value of 0 - 15, eight bits are in a byte which can have a value of 0 - 255. Words vary in size, they consist of multiple bytes and are generally correlated with the system's data bus/processor data width (a 64 bit system has an 8 byte word).
</span>