Program or software program, also you could use an html or css program
<span>Advances in technology are one of the main reasons that globalization has escalated in the past decade. In information and communication technology, innovations have become smaller in size, more efficient and often more affordable. In transport technology, vehicles have tended to become larger and faster, as well as becoming more environmentally friendly and cheaper to run. Whether for personal use or for business, technology has made the world seem a smaller place and assisted in the rise of globalization. </span>
Answer:
myString=myString.toUpperCase();
Explanation:
In java to change all characters of a string to upper case we use .toUpperCase() method.It will convert string to upper case.
Implementation in java.
import java.util.*;
class Solution
{
public static void main (String[] args) throws java.lang.Exception
{
try{
Scanner scr=new Scanner(System.in);
System.out.print("Enter a string:");
String myString=scr.nextLine();
myString=myString.toUpperCase();
System.out.println("string in upper case : "+myString);
}catch(Exception ex){
return;}
}
}
Output:
Enter a string:hello
string in upper case : HELLO
Answer:
Two of those are apt and apt get and the other one is dpkg. 4. You will see a list of Debian Ensure package lists and installed packages are up to date. ... Apt may fail to remove old Linux kernels when using an Ubuntu version that 39 s ... To install it just enter the following command from the Terminal sudo apt install apt ...
Explanation:
Answer:
The algorithm for the conversion of temperature from Fahrenheit to Celsius is as follows:
Read the temperature given in degree Fahrenheit.
Convert the temperature in Fahrenheit into Celsius using the formula : C=5/9*(F-32)
Print the Fahrenheit and Celsius value of temperature.
End
Explanation:
The algorithm for the conversion of temperature from Fahrenheit to Celsius is as follows:
Read the temperature given in degree Fahrenheit.
Convert the temperature in Fahrenheit into Celsius using the formula : C=5/9*(F-32)
Print the Fahrenheit and Celsius value of temperature.
End
The code for the same is -
void main ( )
{
float a , b ;
cout<<" enter temperature in Fahrenhite : "<<endl;
cin>> b;
a = ( b - 32 ) * ( 5 / 9 ) ;
cout << " Fahrenheit = << b <<"Centigrade = " << a ;
}