Answer:
The purpose of wordpress is to develop blogs or dynamic websites.
 
        
             
        
        
        
Answer:
Following are the code to the given question:
#include <iostream>//header file
using namespace std;
class Window //defining a class Window
{
private:
int width, height;//defining integer variable
public:
friend ostream& operator << (ostream& stm, Window& width)//defining a friend function that takes two parameters
{
return stm<<"a ("<<width.width<<" x "<<width.height<<") window"; //use return keyword that return its values
}  
Window(int width, int height): width(width), height(height)//defining parameterized constructor that inherit width and height in its parameters  
{}
};
int main() //Main method
{
Window w(80,90);//calling class constructor
cout<<w;//print object value
return 0;
}
Output:
a (80 x 90) window
Explanation:
In the above code, a class "Window" is defined that uses a friend function "ostream& operator" is declared that uses the "ostrea&" as a data type to hold two-variable "stm and w" in its parameter, and declared the parameterized constructor to hold value by inheriting width and height in its parameters.
Inside the main method, a class object is created that calls the constructor and uses the print method to print object value.
 
        
             
        
        
        
Answer:
The answer to the given question is the option "a".
Explanation:
In this question, the answer is "middleware" software because this software works between the operating system and the applications that provide connectivity to two or more software applications. for example database, application server, etc and other choices that are not correct can be described as:
- In option b, The integration middle wear represents the software of the system. It does not coordinate between operating and application software.
- In option c, It is used to manage the data and the information for the process.
- In option d, It includes the hardware, software and the networks. In this hardware and software link for use software. 
That's why the answer to this question is the option "a". 
 
        
             
        
        
        
Answer:
See explaination 
Explanation:
MinMax.java
import java.util.*;
public class MinMax
{
static void MinMax(int[] arr)
{
int Min=arr[0]; // initializinf min and max with 1st value of array
int Max=arr[0];
for(int i=0;i<arr.length;i++) // iterating loop only once
{
if(arr[i]>Max) // checking max value
{
Max=arr[i];
}
if(arr[i]<Min) // checking min value
{
Min=arr[i];
}
}
System.out.println("Min Number is "+Min); //printing min value
 
System.out.println("Max Number is "+Max); //printing max value
}
 public static void main(String[] args) {
 Scanner sc = new Scanner(System.in);
 System.out.print("Enter N value: "); // taking n value
 int n=sc.nextInt();
 int[] arr=new int[n];
 System.out.println("Enter N elements:"); // taking n elements into array
 for(int i=0;i<n;i++)
 {
 arr[i]=sc.nextInt(); // each element into the array
 }
 MinMax(arr); // calling MinMax() method.
 }
}
 
        
             
        
        
        
Computer
a machine that processes information under the control of a program
Example(s)
(First Electronic Computer) The Electronic Numerical Integrator and Computer (ENIAC)
PC (Personal Computer)
Desktop
Laptop
Hope this helps!