Answer:
#include<bits/stdc++.h>
using namespace std;
int main()
{
string st;
getline(cin,st);
int i=0;
while(i<st.length())
{
if(isupper(st[i]))
{
st.erase(st.begin()+i);
continue;
}
i++;
}
cout<<st<<endl;
return 0;
}
Explanation:
I have included the file bits/stdc++.h which include almost most of the header files necessary.
For taking the input as a string line getline is used.
For checking the upper case isupper() function is used. cctype header file contains this function.
For deleting the character erase function is used.
A. I think correct me if I’m wrong
Answer:
Logic Operators are used to combine Boolean Values.
Explanation:
Boolean values are logical values, to combine different logical values. The logical operations such as "or, and and not".
These logical operations are used to combine Boolean values.
Answer:
B) Property Inspector.
Explanation:
In Java programming, you edit applet properties and add parameters on the property inspector. After inserting the Java applet, the property inspector is used to set parameters.
To view the properties of the applet in the property inspector, you double-click on the Java applet.
Java applet are means used by developers to add advanced functionalities to a website with lesser plugins. It is generally supported by all browsers such as Internet explorer, Netscape, Google Chrome etc.
Answer: Option(d) is correct
Explanation:
Information science is defined as as the science that is based on collection, storage, processing and retrieving of information and data.It related with the technology, people and data to connect them with each other .Management, control and facilities are provided by information science.
- Other options are incorrect because system network formation, personal and universal system and companies are not the factors considered for the information science .
- Thus, the correct option is option(d).