Answer:
C++.
Explanation:
#include <iostream>
using namespace std;
////////////////////////////////////////////////////////////////
void printPrime(int n) {
if (n > 0) {
cout<<2<<endl;
for (int i=3; i<=n; i++) {
bool isPrime = true;
for (int j=2; j<i; j++) {
if (i % j == 0) {
isPrime = false;
break;
}
}
if (isPrime == true)
cout<<i<<endl;
}
}
else {
cout<<"Invalid input";
}
}
int main() {
int n;
cout<<"Enter positive integer: ";
cin>>n;
printPrime(n);
return 0;
}
Answer:
Software as a Service (SaaS)
Explanation:
Cloud computing can be defined as a type of computing that requires shared computing resources such as cloud storage (data storage), servers, computer power, and software over the internet rather than local servers and hard drives.
Generally, cloud computing offers individuals and businesses a fast, effective and efficient way of providing services.
Cloud computing comprises of three (3) service models and these are;
1. Platform as a Service (PaaS).
2. Infrastructure as a Service (IaaS).
3. Software as a Service (SaaS).
Software as a Service (SaaS) can be defined as a cloud computing delivery model which involves the process of making licensed softwares available over the internet for end users on a subscription basis through a third-party or by centrally hosting it.
Hence, Software as a Service (SaaS) is an example of a cloud computing environment that provides users with a web based email service. Therefore, if you pay a subscription fee to use an application via the internet rather than purchasing the software outright, the app is called a Software as a Service (SaaS) application.
Some examples of SaaS applications are Salesforce, Google apps, Bigcommerce, Dropbox, Slack etc.
Answer: I would suggest you consider your audience and how you can connect to them. Is your presentation, well, presentable? Is whatever you're presenting reliable and true? Also, no more than 6 lines on each slide. Use colors that contrast and compliment. Images, use images. That pulls whoever you are presenting to more into your presentation.
Explanation:
Diligence is required for a variety of reasons. I’m going to give you two. Remember, when you’re building a PC, you’re handling hundreds of dollars worth of hardware that are also very fragile (a cord could make all the difference). Two, you need to know and understand how to make a PC. If you have no idea how to build one, RESEARCH FIRST.
Hope this helps.
The icd-10-cm includes codes with three characters as the header of a group of codes that may be further split by the use of four, five, or six characters; this is known as the level of detailing in coding.
Describe coding. Coding, often known as computer programming, is how we communicate with computers. Because coding gives instructions to a machine, it is comparable to writing a set of rules. By learning to write code, you can tell machines much more quickly what to do or how to act.
Languages written in an imperative, functional, logical, or object-oriented style are common. These coding language paradigms are available for programmers to select from in order to best meet their demands for a given project.
To know more about coding visit:
#SPJ4
Answer:
// Here is code in C.
#include "stdio.h"
// create function to print all the combinations
void print_combi(char a,char b,char c)
{
// print all combinations of three characters
printf("%c%c%c %c%c%c %c%c%c %c%c%c %c%c%c %c%c%c\n",a,b,c,a,c,b,b,a,c,b,c,a,c,a,b,c,b,a);
}
// driver function
int main(void)
{
// create 3 char variable and initialize
char a='x',b='y',c='z';
// call the function
print_combi(a,b,c);
printf("\n");
// initialize with different character
a='1',b='2',c='3';
// call the function
print_combi(a,b,c);
printf("\n");
// initialize with different character
a='#',b='$',c='%';
// call the function
print_combi(a,b,c);
printf("\n");
return 0;
}
Explanation:
Create three char variables a, b, c. First initialize them with x, y, z. then call the function print_combi() with three parameters . this function will print all the combinations of those characters.We can test the function with different values of all the three char variables.
Output:
xyz xzy yxz yzx zxy zyx
123 132 213 231 312 321
#$% #%$ $#% $%# %#$ %$#
A C program to find all combinations of character variables:
void main ()
{
char f;
char s;
char t;
f = 'x';
s = 'y';
t = 'z';
System.out.print("" + f + s + t + " " + f + t + s + " " + s +f + t +
" " + s + t + f + " " + t + f + s + " " + t + s + f);
}
}