Kumar Amit700
Write a program to generate password in python.
Given code will generate password upto 6 digits. from random import randint def random_with_N_digits(n): range_start = 10**(n-1) range_end = (10**n)-1 return randint(range_start, range_end) print(random_with_N_digits(6))
What is the difference between SOAP and REST?
The main difference between SOAP and REST is that SOAP is a protocol while REST is not. Typically, an API will adhere to either REST or SOAP, depending on the use case and preferences of the developer....
What is the difference between Canvas and SVG?
SVG is a vector format which means it can be scaled without losing quality, while canvas is a raster format. SVG is an XML based language for doing vector and raster graphics. It was originally developed...
Differentiate type-c and other kind of usb cables.
•USB Type-C is a newer and faster connector than Micro USB. •USB Type-C can transfer data between 5 Gbps and 10 Gbps, while Micro USB only transfers data at up to 480 Mbps or up to 5 Gbps if the cable...
Explain Cryptocurrency
Cryptocurrency is a digital currency designed to work as a medium of exchange through a computer network that is not reliant on any central authority, such as a government or bank. Cryptocurrency does...
Reason for choosing Python over other programming languages.
The wideness of .py lets ones over other language. Python is easy to comprehend as compared to other language like c, c#, Java script, Java and so forth, one can effortlessly learn and code in python barely...
What are the applications of openCV library.
OpenCV (Open Source Computer Vision Library) is a library of programming functions mainly for real-time computer vision. A process by which we can understand the images and videos how they are stored and...
Is indentation required in python?
Yes! definitely indentation is needed in python. If you miss a indentation then a indentation error occurs.
What is Programming languages? can anyone explain it?
Programming language is similar to our conversation language like Hindi or English, this is used in computer to interact with user. As computer understands 0 & 1 only, hence we had designed some set...
How a ‘tuple’ is different from ‘list’?
Tuple is immutable type while list mutable type. This means that values in a tuple cannot be modified. #creating tuple tuple=() #passing value tuple=(1,"a") print(tuple)