Answer:
def validateCreditCard(x):
if type(x)==str and len(x) == 8:
print("Valid credit card number")
else:
print("Invalid credit card number")
validateCreditCard("43589795")
Explanation:
Run the code on your text editor(vs code, sublime, pycharm ) you will get your desired response. If your input is not of type string and not up to 8 digit you will get the response "invalid credit card number" but if it is of type string and up to 8 digit you will get "Valid credit card number".
But remember python works with indentation so when you are transferring this code to your text editor it will run properly well.
I defined the code using the conventional pattern "def"
After defining the function you create a brackets (x) to accommodate your argument x and end it with a semi colon.
Then i use "if" statement to make sure only string argument and 8 digit value will be accepted to print a "valid credit card". if your argument does not pass the if statement condition it will print out the else statement condition which is "Invalid credit card number"
Finally, you have to call your function and test various values.
Answer:
Explanation:
To solve this we break down the question and write the programme in steps as shown in the attachment
Answer:
It would be correct to say that out-of-order makes a machine's performance more sensitive to branch prediction accuracy.
Explanation:
This can be explained as when a machine is out-of-order, in that state the execution holds importance in prediction accuracy, any increase in these results in rate of prediction near about 25% for the single-issue operating in-order. This is due to the reason that some of the predictions are required for the global pattern history. Most recent outcomes are recorded in the register and for a 4-way machine which is out-of-order, accuracy is very poor as a result of the delay of the branch history for next prediction.
fn is to talk to the computer
Answer:
Cloud computing as a virtual hosting tool, is much more theoretical. Both servers, applications, and communications are hosted in the cloud, off property, rather than being available via computer machine whereas In computing client/server, a controller gets client requests mainframes and needs to share its services, programs and/or data of one sometimes more client systems on the internet, and a client would be a portable platform that specific portions with a server and make use of a finite resource.
Explanation:
<u>Similar to cloud computing and client-server computing:
-
</u>
- The cloud computing and client-server networking underpinning principles are the same. That is contact between client and server.
- Throughout networking and client-server networking, user nodes can communicate (queries) with databases that live locally or are located in many other networks.
<u>Difference between computing and client-server computing:
</u><u>-
</u>
Resources:
-
- In computing client-server, the corporation or association controls the tools.
- The services are offered in cloud computing by third parties or other businesses.
<u>The purpose of cloud computing and client-server computing is different:-
</u>
- Client-server computing is targeted at use. In computation, client-server clients request a product from the cloud. The operating system runs the test, then returns it.
- Cloud computing is a sort of system in which the IT-related services are leased to the clients as a contract.
<u>Pros and cons of Cloud Computing:-
</u>
The Pros:-
- Lower costs for business:-The cloud is saving a lot of money for a medium-sized or small enterprise.
- Better Reliability:- A dedicated group of experts performs all programming with such a cloud computing alternative.
The Cons:-
- Limited Control:- When a firm stores cloud data, they have very limited control of it.
- There have been security issues. The cloud isn't too attuned for every company to position some information on even a cloud.
<u>Pros and cons of client-server computing:-
</u>
The Pros:-
- Improved data sharing:- Data stored via the normal business method and processed on a server is available over an approved connection for the intended users.
- Security:- Database has stronger access control and methods to ensure data could only be accessed or abused by approved clients.
The Cons:-
- Overloaded Servers:- When multiple simultaneous requests from the client are made, the server is significantly overloaded, causing congestion in traffic.
- Impact of centralized architecture:- Because it is centralized if a vital server fails to satisfy customer requests, the client-server then lacks good network robustness.