Do you know what is Artificial Intelligence (AI) ? Ever since computers have been invented, humans have greatly increased their use. We put them into doing all our work, which makes us more dependent on computers. Humans have increased the capacity of these machines to a great extent such as their speed, size, and inability…
Basic Introduction of Java – QuantaInfotech.com Introduction of JAVA Java is a popular and powerful language. Although it is a very simple language. It is an object-oriented programming language (OOP) with a built-in API(Application Programming Interface) that can handle GUI. Much of the syntax of Java is similar to C…
In this article today we are about to talk “Firewall” What is Firewall, how it works and Firewall many types of Firewall ? No one can deny the fact that this dynamic rise of the Internet has brought the world closer, but at the same time, it has also left us with a variety of security threats. In…
What is Hacking and is Ethical Hacking Legal or Illegal? Today we will know what is Hacking and how many types of hackers are there. Nowadays the demand for computers and smartphones has increased so much that people cannot complete their work except these two things. Computers are used everywhere whether we…
What is VPN and how does it work? In today’s article, we will know what VPN is and how it works . Android smartphone users are increasing every day all over the world. Every day on the Internet we find many things and do a lot of work on it, like online transactions, downloading movies and musics, give…
In today’s internet world, Digital Marketing is such a fancy word by using which you can easily make an impression on your colleagues in the office. For most of us, the term ‘digital marketing’ is not very old. Most of the people came to know about digital marketing when the internet became an essential part…
“Machine Learning is that the science of getting computers to seek out out and act like humans do, and improve their learning over time in autonomous fashion, by feeding them data and knowledge in the form of observations and real-world interactions.” Machine learning is an application of AI (AI) that…
HTML stands for Hyper Text Markup Language, which is the most widely used language on Web to develop web pages.
What You Will Learn •Intro To WWW • HTML & CSS • JavaScript • PHP • MySql • WordPress • Hosting and More What Will You Get • Study Material • Practical Codes • Certificate • 24×7 Chat Support • Work on Live projects • Live One to One Session
def rev ( s ) : if ( s == s[0] ) : return s[0] else : n = s[-1] + rev ( s[ : -1 ] ) return n st = input ( ” Enter String : “) r = rev ( st ) print ( ” Reverse…