Please use this for questions.
Good question. The best answer is that it all depends on your project's specifications. Here are a few scenarios where a custom CMS would make sense:
You have security concerns or corporate security requirements that would make off-the-shelf platforms unacceptable. An example of this could be stringent security requirements that limit the amount of software licenses allowed, or that require tightening so severe that it would inhibit the ability of the platform to operate correctly. Also, remember that off-the-shelf platforms are more susceptible to random attacks by bots and other automated attackers.
You require advanced features. If you plan on having a website requiring advanced customization, evaluate if you are pushing the limits of off-the-shelf CMS platforms. An example would be software that is core to your business that must be custom built on top of the CMS platform. Future risks could be the inability to run a proper software update, or even worse, a software update breaking your custom code. It happens all the time!
Your answer is true your welcome!
Answer:
// The program below checks if an array is sorted or not
// Program is written in C++ Programming Language.
// Comments are used for explanatory purpose
//Program Starts here
#include<iostream>
using namespace std;
//Function to check if the array is sorted starts here
int isSorted(int arr[], int count)
{
// Check if arrays has one or no elements
if (count == 1 || count == 0) {
return 1;
}
else
{
// Check first two elements
if(arr[0] >= arr[1])
{
return 0; // Not sorted
}
else
{ // Check other elements
int check = 0;
for(int I = 1; I<count; I++){
if (arr[I-1] > arr[I]) { // Equal number are allowed
check++; // Not sorted
}
}
}
if(check==0)
return isSorted(arr, count - 1); //Sorted
else
return 0; // Not sorted
}
// Main Method starts here
int main()
{
int count;
cin<<count;
int arr[count];
for(int I = 1; I<=count; I++)
{
cin>>arr[I-1];
}
int n = sizeof(arr) / sizeof(arr[0]);
if (isSorted(arr, n))
cout << "Array is sorted";
else
cout << "Array is not sorted";
}
Complete Question:
1. A wireless technology standard for exchanging data over short distances
2. A particular brand of mobile phone/PDA
3. A network that operates over a limited distance, usually for one or a few users
1. Bluetooth
2. PAN
3. Blackberry
Answer:
1. Bluetooth 2. Blackberry . 3. PAN
Explanation:
1. Bluetooth is a wireless technology standard, used in order to exchange data between mobile devices, like smartphones, tablets, headsets, wearables, over short distances in a one-to-one fashion (which means that it is not possible to build a network based in Bluetooth).
2. Blackberry is a brand of mobile phones/PDAs, very popular a decade ago, because it was the first one to allow mobile users to access e-mails and messages from anywhere, at any time.
3. PAN (Personal Area Network) is an ad-hoc network that it is only available for data exchange at a very short distance, within the reach of a person, i.e. a few meters as a maximum.
It is thought to allow someone to interact with his nearest environment (laptop, tablet, PDA) and it can be wireless (like Bluetooth) or wired (via USB cables).