Answer:
#include <iostream>
using namespace std;
int main()
{
int birthMonth, birthYear;
cout << "Enter your Birth Month and Year" << endl;
cin>>birthMonth;
cin>>birthYear;
cout<<birthMonth;
cout<<"-";
cout<<birthYear<<endl;
return 0;
}
Explanation:
Using C++ Programming Language, Firstly we declare to variables to hold the values for the birthMonth and birthYear. We then used a cout statement to prompt the user to input values for month and year, then three cout statements are used to display the output according to the question's specification.
Answer:
Check the explanation
Explanation:
#include<stdio.h>
/*Function to return max sum such that no two elements
are adjacent */
int FindMaxSum(int arr[], int n)
{
int incl = arr[0];
int excl = 0;
int excl_new;
int i;
for (i = 1; i < n; i++)
{
/* current max excluding i */
excl_new = (incl > excl)? incl: excl;
/* current max including i */
incl = excl + arr[i];
excl = excl_new;
}
/* return max of incl and excl */
return ((incl > excl)? incl : excl);
}
/* Driver program to test above function */
int main()
{
int arr[] = {5, 5, 10, 100, 10, 5};
printf("%d \n", FindMaxSum(arr, 6));
getchar();
return 0;
}
Answer:Easy way is will be C. Cheap and fast but my way will be B. Because i do not want to connect wirelessly . hardwire data transfer or security issue
Question answer i think will be C. Good luck
Explanation: B. Disable the network port and install a network card in an expansion slot.
C. Use a wireless network device in a USB port to connect to a wireless network.
Answer and Explanation:
Difference between core network and edge network:
- Core network is also known as the backbone network whereas edge network stands for enhanced data rate for global evolution
- Core network provides the path for exchanging the information between different sub networks,whereas edge network provide information exchange between excess network and core network
Answer:
The important problem is explained in the next section of clarification.
Explanation:
The longer it is required for a computing device interrupt to have been performed when it is created, is determined as Interrupt latency.
The accompanying duties include interrupt transmission delay or latency are provided below:
- Store the instructions now being executed.
- Detect the kind of interruption.
- Just save the present process status as well as activate an appropriate keep interrupting qualitative functions.