Smallpdf app is. For windows
Go to your homepage and click a tool
Drag a file into the colored toolbox
Most tools should start working on the file right away
For some tools, further optimization options may be available
Download the converted doc to your local drive
O
)
O
Answer:
The correct answer to the following question will be "Roles" and "Web server"
Explanation:
A web server seems to be a device that keeps software from the server as well as the feature or component folders from a website. This is hooked up to the web and facilitates the sharing of stored information with certain network linked computers.
- Application roles apply to the functions the server or software will perform on your network— functions including a web server, a DHCP, file server or a DNS.
- A website built with either the IIS function is responded to as either Web server in technical or common terms.
Answer: b
Explanation: for me personally i will populate an infographic(chart)rather than essay form i prefer to use an infographic to show my anaylis how it went high or low or when.
<u>If statements</u>- This statement is used to check the condition.
if(condition)
{
statement
}
If the condition is true,then statement will run,else not.
<u>Switch statement</u>-This statement is used for long conditions.It is a substitute for if,else conditions
switch(a)
{
case1: statement 1//if a=1
break;
case2: statement 2 //if a=2
break;
.....
default:statement//if a is not equal to any of the cases.
<u>Multiway if</u>-In this statement ,if elseif and else were there.
if(condition1)
{
statement 1
}
elseif(condition2)
{
statement 2
}
..............
else
{
statement n
}
<u>Nested loops</u>-This statements are used when we use if-else conditions in other if,else conditions.
if(condition 1)
{
if(condition 2)
{
if (condition 3)
{
statement 3
}
else
{
statement 4
}
}
]
<u>rand()</u>-This method is used for generating random number.The expression is
number=rand()%50;
It will generate a random number ranges between 0 to 50.
<u>srand()</u>-This method is used to set the starting value for random number series.
srand (time(NULL));
<u>seed()</u>-It is a method for initializing the same random series,it is passed in srand().