Answer:
B and C
Explanation:
Possible solution to solving "BOOTMGR is missing" error in Windows Vista is to use the Windows Recovery Environment.
Another option is to run "bootrec/fixboot" command from the comman prompt and the command prompt is also accessible from the windows recovery environment.
Answer:
Following are the statement in C++ language :
#include <iomanip> // header file
using namespace std; // namespace
int main() // main method
{
int x1,x2,x3,x4,x5; // variable declaration
cout<<" Enter the 5 sucessive integer:";
cin>>x1>>x2>>x3>>x4>> x5; // taking 5 input from user
cout<<right;
// prints each of its own line and form a right-justified
cout<<setw(5)<< x1 << "\n" << setw(5) << x2 << "\n" <<setw(5) << x3 << "\n" << setw(5) << x4 << "\n" << setw(5) << x5 << "\n";
return(0);
}
Output:
Enter the 5 sucessive integer: 45
23
445
6
8
45
23
445
6
8
Explanation:
Description of program is given below
- Declared a 5 integer value x1,x2,x3,x4,x5 respectively.
- Read the 5 integer value from user by using cin funtion.
- Finally Print these 5 value in its own line and form a right-justified by using setw() function on it
It can produce harsh shadows
Answer:
We create a block div with an id="block" and we make the css code
Explanation:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>bloque</title>
<link href="bloque.css" rel="stylesheet" type="text/css">
</head>
<body>
<!--we create the div with the id="block" and a text "hello world"-->
<div id="block"> hello world </div>
</body>
</html>
/* CSS Document */
/* we create the CSS file, then with the same id="block" we're programming in the CSS code*/
#block{
background-color: #ECDEC9;
padding: 20px;
float: left;
font-size: 50px;
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Verdana", "sans-serif";
}
Answer:
formal information searches
Explanation: