Answer:
in
Explanation:
Not an explanation, but here's an example:
if "mouth" in "mouthwatering":
print("It is.")
else:
pass
Another example:
if "water" in "mouthwatering":
print("Yes.")
else:
pass
Answer:yes
Explanation:
They are the same network
Communication: Communication is one way to be connected to
the network and use the internet. It helps maintains communication with other
network users. A few examples include email, IM services, video conferencing,
Skype and many more.
File sharing: Easily sharing files and data. From businesses
to schools to friends, everyone sends files to through internet and this has
become an essential part of life. Various services like Gmail and yahoo mail
are used.
Social networking: This is an essential medium to
communicate with friends and family members. Examples include Facebook,
Twitter, and Instagram.
Answer:
Execution Time, Memory storage,Readiability,
debugging,Platform independent
Explanation:
High level programming languages are the language which is user friendly languages. There is high level abstraction from internal machine code. Here we need compiler to translate that into machine code
Ex: C,c++,Java...
Interpreted languages are scripting languages where we need interpreter to interpret those scripts or commands
Ex:Python.Ruby
Machine languages are binary language which contains 0's and 1's can understandable by system only. Not human readable forma
Interpreted language scans each statement at a time and interprets that line by line. It takes less amount of time to analyze the source code but the overall execution time is slower.
High level language takes more memory than interpreted and machine as it generates some intermediate code
High level languages are more readable than remaining two
Intermediate languages are easy to debug as it executes line by line and when ever any error occurs in a particular line it stops and intimate there itself
High level and interpreted languages are platform dependent, it can work on some machine and OS specific configurations only