Answer:
// program in C++.
#include <bits/stdc++.h>
using namespace std;
// main function
int main() 
{
// variable
int inp_month;
cout<<"Enter month:";
// read month
cin>>inp_month;
// if month is february 
if(inp_month==2)
cout<<"Number of days in month:28"<<endl;
// if month is 4 or 6 or 9 or 11
else if(inp_month==4||inp_month==6||inp_month==9||inp_month==11)
cout<<"Number of days in month:30"<<endl;
else
// for others month
cout<<"Number of days in month:31"<<endl;
return 0;
}
Explanation:
Read month from user and assign it to variable "inp_month".If month is 2 then  there is 28 days in the month.If input month is 4 or 6 or 9 or 11 then there is 30 days in the month.For other month there will be 31 days in month.We assume there is no leap year.
Output:
Enter month:4                                                                                                              
Number of days in month:30
 
        
             
        
        
        
Answer: D technical skills
 
        
             
        
        
        
Answer:
068
Explanation:
Or if you want binary it's 01000100
 
        
             
        
        
        
Answer:
Jambinai combines Korean folk music instruments and rock music instrumentation, which creates a different music style. 
 
        
             
        
        
        
Answer:
Some of the qualities of the installed memory which HWiNFO can reveal are:
- Date of manufacture
- Memory type 
- Speed of memory
Explanation:
HWiNFO is an open-source systems information app/tool which Windows users can utilize as they best wish. It helps to detect information about the make-up of computers especially hardware. 
If you used HWiNFO to diagnose the memory, the following information will be called up:
- the total size of the memory and its current performance settings
- the size of each module, its manufacturer, and model 
- Date of manufacture
- Memory type 
- Speed of memory
- supported burst lengths and module timings, 
- write recovery time etc.
Cheers