Answer:
Fixed positioning is relative to the browser window, while absolute positioning is located at a specific place on a web page.
Answer:
You can see an estimated battery life time.
Explanation:
To see it simply put your mouse over the battery icon, don't click it and it should give you the life it has left in hours:minutes format.
Answer:
#include <iostream>
using namespace std;
int main()
{
char fullname[30];
string fname="",lname="";
int i,j;
cout<<"Enter fullname\n";
cin.getline(fullname,30); //so that blank can be read
for(i=0;fullname[i]!=' ';i++)
fname+=fullname[i]; //fistname will be saved
cout<<"\n";
for(j=i;fullname[j]!='\0';j++)
lname+=fullname[j]; //lastname will be saved
cout<<"\nFirstname : "<<fname<<"\nLastname : "<<lname;
return 0;
}
OUTPUT :
Enter fullname
John thomson
Firstname : John
Lastname : thomson
Explanation:
cin.getline() should be used instead of cin in case of strings so that space can be read otherwise after blank string will be ignored.
Answer:
The answer is "XML"
Explanation:
Extensible Markup Language is a marking language, which specifies a collection of document. It uses the coding rules, which is readable for both man and computer.
- It is a scalable way of creating data formats and sharing structured data through the internet or private networks digitally.
- It permits the development of custom tags to identify, transfer, verify and view data among apps and organizations.
Do u speak English as I would love to help