Answer:
import java.util.Scanner;
public class Lab{
public static String integerToReverseBinary(int number)
{
String binary = "";
if(number == 0){
return "0";
}
while(number > 0)
{
int remainder = number % 2;
number = number / 2;
binary += Integer.toString(remainder);
}
return binary;
}
public static String reverseString(String wordString)
{
String binaryString = "";
int length = wordString.length();
for(int i = length -1 ; i >= 0 ; i--)
{
binaryString += wordString.charAt(i);
}
return binaryString;
}
Explanation:
In the java source code, the Lab class is defined which has two methods, 'reverseString' and 'integerToReverseBinary'. The latter gets the argument from the former and reverses the content of its string value, then returns the new string value. The former gets the integer value and converts it to its binary equivalence for which are converted to strings and returned.
Answer:
the electronic devices that are used for storing and processing data typically in binary from according to instructions given to it in a variable program . its major parts are 1 keyboard. mouse .monitor. cpu
Explanation:
i think this one is of a number
Answer:
I am a software engineering student
computers have createed an impact in my life because through computers i work, I do research and many more
Answer:
According to symbolic interaction theory, the internet has helped to remove:
(D) Time and space barriers.
Explanation:
- The symbolic interaction theory is such theory which explains that language and symbols are the means of interaction in the social worlds. This theory tells us about the relationship between people in a society.
- The option a is not correct as the internet has not remove the subculture rather it has provided safe space to it. Sub-culture refers to a group of special interest like group of a biker. Anyone can create their community on the internet.
- The option b is also incorrect as internet has not remove interpersonal communication rather it has speed up this communication. It is a type of communication in which people communicate with each other via their expression of feelings, verbal and non-verbal means.
- The option c is also incorrect as the inappropriate content has removed by internet rather now everyone can create content. But regulations and guidelines are being made. A lot of work has been to be done in this area.
- The option d is correct as the internet has helped to remove the barriers of time and space. It has made this world a global village now anyone from any part of the world can talk to any person to other part of the world over the internet. They can create communities depending upon their interests. They can do business and many other things.