Answer:
#include <iostream>
#include <cstring>
using namespace std;
bool isAPalindrome(char* palindrome);
int main()
{
char palindrome[30];
bool palindrome_check;
cout << "Please enter an word or phrase.\n";
cin.getline(palindrome, 30);
palindrome_check = isAPalindrome(palindrome);
if (palindrome_check = true)
{
cout << "Input is a palindrome\n";
}
else
{
cout << "Inputis not a palindrome\n;";
}
system("pause");
return 0;
}
bool isAPalindrome(char* palindrome)
{
char* front;
char* rear;
front = palindrome;// starts at the left side of the c string
rear = (palindrome + strlen(palindrome)) - 1;//starts at the right side of the c-string. adds the c string plus the incriment value of s
while (front <= rear)
{
if (front = rear)
{
front++;
rear--;
}
else
{
return false;
}
}
return true;
}
Answer:
A. the museum can choose a heuristic approach which will achieve a lossless compression, but they cannot be sure that it is the most efficient compression for each image
C. algorithms for lossless compression exist, so the museum can use those to compress the image
Explanation:
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.
The best illustration of information literacy is A. Felix completes an Internet search for a topic for his science class. He takes nearly 30 minutes reading through the different results until he locates a reliable website.
<h3>What is information literacy?</h3>
- Refers to being able to find and sort through information.
- Allows for problem solving.
Felix has the problem of looking for information for his topic. He therefore goes online to find, sort through, and then use the information he finds to solve his problem.
In conclusion, the best answer in option A.
Find out more on information literacy at brainly.com/question/25039489.
Trash bin
Reasons:
When you remove a file from the hard drive it is still written in binary code. So, windows places files in the *trash bin* if you did not want to delete it.
Unless USB or Removable flash drive, when you delete that it does not place any files in the trash bin.