Answer:
yes I am having the same problem I take a picture and it says something is wrong with connection
The web browser that is automatically installed with windows 7 is Internet Explorer.
Hope this helps.
1. True
2. False
3. True
Have a great day <3
Answer:
By pressing key ALT and F4 to close a window application.
Explanation:
<em>Closing Microsoft application comes in different ways such as:
</em>
<em>
a. Pressing ALT and F4 to close an active window application.
</em>
<em>b. Press the X button at the upper right of the screen.
</em>
<em>
If you are using a MAC or apple computer with Windows emulator, you can simply press on COMMAND key and W key to close an active window application.</em>
Following are the code in java to reverse any string without using reverse function.
import java.util.*; // import package
class Main // class
{
public static void main(String args[]) // main class in java
{
String s, r = ""; // string variable
Scanner out = new Scanner(System.in); // scanner classes to take input
System.out.println("Enter a string to reverse");
s = out.nextLine(); // input string
int l1 = s.length(); // finding length of string
l1=l1-1;
for ( int i = l1 ; i >= 0 ; i-- ) // for loop to reverse any string
{
r = r + s.charAt(i);
}
System.out.println(" The Reverse String is: "+r); // print reverse string
}
}
Explanation:
firstly we input any string ,finding the length of that string then after that iterating over the loop by using for loop and last display that reverse string
output
Enter a string to reverse
san ran
The Reverse String is: nar nas