Computer Science, asked by jaideepsaxena892, 2 months ago

answer in short
3. What are the various membership operators in Python?
What do you mean by Iterative Statements in Python?
5. Write the Python Program to print the Table of a number.
6. What is File Transfer Protocol (FTP)?
7. Write the name of various types of Networks.
8. Write any two advantages of Networking.
9. Differentiate between Hybrid App and Native App.
10. Write the name of some websites which provide free service to develop Android Apps.​

Attachments:

Answers

Answered by harneetmakkad27
1

Answer:

3. Membership operators are used to test if a sequence is presented in an object:

in Returns True if a sequence with the specified value is present in the object Example x in y

not in Returns True if a sequence with the specified value is not present in the object Example x not in y

4.Repeating identical or similar tasks without making errors are something that computers do well and people do poorly.

Repeated execution of a set of statements is called iteration. Because iteration is so common, Python provides several language features to make it easier.

5. n=int(input("Enter the number to print the tables for:"))

for i in range(1,11):

print(n,"x",i,"=", n*i)

6. FTP stands for File transfer protocol.

•FTP is a standard internet protocol provided by TCP/•IP used for transmitting the files from one host to another.

•It is mainly used for transferring the web page files from their creator to the computer that acts as a server for other computers on the internet.

•It is also used for downloading the files to the computer from other servers.

7. A computer network can be divided into the following types, based on the geographical area that they cover, they are:

LAN(Local Area Network)

MAN(Metropolitan Area Network)

WAN(Wide Area Network)

8. •Sharing devices such as printers saves money.

•Site (software) licences are likely to be cheaper than buying several standalone licences.

•Files can easily be shared between users.

•Network users can communicate by email and instant messenger.

•Security is good - users cannot see other users' files unlike on stand-alone machines.

•Data is easy to backup as all the data is stored on the file server.

9. Hybrid apps are native apps only because it can be downloaded from the platform's app store like a native app. ... Hybrid apps are built using web technologies like HTML, CSS and JavaScript whereas Native apps built with specific technology and language for a specific platform like Java for Android, Swift for iOS.

10. sites to create your app for free are:

•Andromo

•App Geyser

•GoodBarber

•App Yet

•Appy pie

HOPE IT HELPS...

Similar questions