Write a python program that takes two lists as input from the user, multiplies the index wise elements of the two lists and adds
it to a new variable. While doing the program you should handle the following exceptions: Return an exception if an element in a list is not a number stating “The list has some non number values”. Return an exception if there is an index out of bound stating “Index out of bound”. ============================= Example 1: Input: list_one = [1, a, 2, 4] list_two =[5, 6, 7, 8] Output: The list has some non number values
Proxy server is a server that acts as a mediator between two systems.
One system can be your computer and the other can be the server to which you are asking a service, such as requesting a web page.
Lets suppose you request a web page from a server and you type a URL of a website to access a web page.
This request goes to proxy server which sends this request on your behalf to the target server in order to retrieve that web page.
Proxy server makes this request to the target server on the internet by using one of its IP addresses.
When the proxy server gets that web page, it will forward that web page to your requesting computer.
If you request a specific service such as a website frequently the proxy server saves that website on its cache.
So if you request that website again, proxy server will forward it to you from its cache rather than requesting it again from the target server on your behalf resulting in quick response to the user's request. This speeds up the delivery of resources to the users.
Proxy servers provide users with privacy to access the websites, and they can surf the internet anonymously .