Skip to main content

About Us

  

Welcome to SOFTWARE SOLUTIONS, your number one source for all software related informations . We're dedicated to giving you the very best information.


Founded in 2020 by AMAN KUMAR VERMA . When he first started out, his passion to help most the people to find best software solutions . We now serve peoples all over the world, and are thrilled that we're able to turn our passion into our own website.


we hope you enjoy blogs as much as we enjoy offering them to you. If you have any questions or comments, please don't hesitate to contact us


Sincerely,

AMAN KUMAR VERMA

aman22verma10@gmail.com

Comments

Popular posts from this blog

How Internet Works?

    Introduction How does the Internet work? Good question! The Internet's growth has become explosive and it seems impossible to escape the bombardment of  www.com 's seen constantly on television, heard on radio, and seen in magazines. Because the Internet has become such a large part of our lives, a good understanding is needed to use this new tool most effectively. This whitepaper explains the underlying infrastructure and technologies that make the Internet work. It does not go into great depth, but covers enough of each area to give a basic understanding of the concepts involved. For any unanswered questions, a list of resources is provided at the end of the paper. Any comments, suggestions, questions, etc. are encouraged and may be directed to the author at the email address given above. Where to Begin? Internet Addresses Because the Internet is a global network of computers each computer connected to the Internet  must  have a unique address. Internet ad...

IN Python TO Find All The Divisors Of A Number.....

  IN PYTHON "Copy" this given code and "paste" it on the python display to run the programme. 👇👇👇👇👇 number = int(input("Enter Number :")) answer = [ ] for i in range(2,int(number/2)+1):     if number % i ==0:         answer.append(i) print("Number that can fully divide", number,"=" , answer)

In Python How To Find The Factorial Of A Number.?

  "copy" this given code and "paste" it on the python display to run the programme.   Here, i will show it by TWO methods. ⇒  FIRST METHOD  👇 n = int(input("Enter Number:")) fact = 1 while(n >=2):     fact = fact*n     n-=1 print("Factorial=" ,fact) ⇒ SECOND METHOD  👇 n = int(input("Enter Number:")) fact = 1 for i in range(n,1,-1):     fact = fact*i print("Factorial=" ,fact)

What Is Python?

  Python is a popular programming language.  It was created by Guido van Rossum, and  released in 1991. It is used for: web development (server-side), software development, mathematics, system scripting. What can Python do? Python can be used on a server to create web applications. Python can be used alongside software to create workflows. Python can connect to database systems. It can also read and modify files. Python can be used to handle big data and perform complex mathematics. Python can be used for rapid prototyping, or for production-ready software development. Why Python? Python works on different platforms (Windows, Mac, Linux, Raspberry Pi, etc). Python has a simple syntax similar to the English language. Python has syntax that allows developers to write programs with fewer lines than some other programming  languages. Python runs on an interpreter system, meaning that code can be executed as soon as it is written.  This means that prototyping can be ...

python

Program 6: Write a Program to enter the string and to check if it’s palindrome or not using loop. x = "malayalam" w = "" for i in x:      w = i + w if (x == w):      print("Yes") else:      print("No")