Answer: Size & Form-Factor, Screen Quality,Keyboard quality,CPU, RAM, Storage,Battery Life, USB 3.0, Biometric Security,Build quality.
Explanation:
1 - 7 are the most important for laptops and for desktops 1,3,4,5and 6.
Hope this helped!
Answer:
<em>The programming language in Python is as follows:-</em>
#Prompt user for input string
userinput = input("Enter a string: ")
#Print the last character of the input
print("The last character is "+userinput[-1])
#End of Program
Explanation:
This line is a comment
#Prompt user for input string
This line prompts user for input
userinput = input("Enter a string: ")
This line is also a comment
#Print the last character of the input
This next line prints the last character of the input string; the last character is defined by the index -1
print("The last character is "+userinput[-1])
Answer:
import
Explanation:
the <em>import </em>keyword is used to import external modules into a python script.
Answer:
Plastic container
Explanation:
because if we use iron it may rust and oil may also damage
Answer:
CLS
INPUT"Enter any three numbers";a,b,c
IF a>b AND a>c THEN
PRINT a;"is the greatest"
ELSEIF b>a AND b>c THEN
PRINT b;"is the greatest"
ELSE
PRINT c;"is the greatest"
ENDIF
END