Answer: False 
Explanation: Because fast-tracking doesn’t involve additional resources, it’s usually best to start with this technique while Crashing requires careful planning to prevent “panic mode” among the project crews and to avoid acceleration claims.
 
        
             
        
        
        
<h2>All the given answers are right</h2>
Explanation:
- Lighting is one of the key factor which is essential to do cinematography
- It will help to cut off the shadows that is created using natural light
- It can depict the mood of the scene that is shoot
- We can adjust manually brightness and darkness according to the need, which is not possible in the natural light.
- It can boost the quality of the footage
- We can shoot anytime irrespective of the weather condition
- The light from the camera alone is not enough to shoot the best picture
 
        
        
        
Answer:
x = int(input("What grade are you in? "))
if (x == 9):
    print ("Freshman")
elif (x == 10):
    print("Sophomore")
elif (x == 11):
    print ("Junior")
elif (x == 12):
    print("Senior")
else:
    print ("Not in High School")
Explanation:
 
        
             
        
        
        
num1 = float(input("Enter the first number: "))
num2 = float(input("Enter the second number: "))
operation = input("Which operation are you performing? (a/s/m/d) ")
if operation == "a":
    print("{} + {} = {}".format(num1, num2, num1+num2))
elif operation == "s":
    print("{} - {} = {}".format(num1, num2, num1-num2))
elif operation == "m":
    print("{} * {} = {}".format(num1, num2, num1*num2))
elif operation == "d":
    print("{} / {} = {}".format(num1, num2, num1/num2))
I hope this helps!
 
        
             
        
        
        
Answer:
DHCP
Explanation:
The only option can give IP addresses is the DHCP The Dynamic Host Configuration Protocol, because the DNS (Domain Name System) only translates IP addresses to a hostname, and WPS (Wi-Fi Protected Setup) or WPA (Wi-Fi Protected Access) if for security network, doesn't matter if is a wireless router, in a network always DHCP gives the IP addresses.