Answer:
With the use of data and their types the extent of how much data can be stored can get insanely large. types like doubles and longs allow for a range of values nearly incomprehensible in their size for storing user information, web pages, games ect. Using them essentially allows you to plan for the future of the size of whatever you're creating. On top of that, it allows for a preciseness not typically able to be reached without these types.
Answer:
There are hybrid system that consist of WiFi, GPS, GSM and IP address to locate the mobile devices.
Explanation:
In Cellular phone communication, hybrid technique is used to locate to find the locations. It consist of WiFi, GSM, GPS and IP addresses. GPS technology is used with satellite communication. Location has been sent from satellite to the mobile network with the help of Google maps. There are few other techniques used to such as GSM based techniques that is used by the help of radio signals strength to find the location of the device. This technique is helpful in the areas where the many communication tower are there to locate the signal strength in the area of the mobile device. WiFi also used to locate the mobile device with the help of IP addresses.
In mobile phones, different combinations of all above technologies used to provide the network connectivity such as WiFi and GPS locator in the mobile Phone. This is called Cellular locating technology.
Using the computational language in JAVA it is possible to write a code that at least passes an unspecified number of integers
<h3>Writing code in JAVA</h3>
<em>class Exercise07_21</em>
<em>{</em>
<em>public static void main(String args[])</em>
<em>{</em>
<em>int sum=0;</em>
<em>for(int i=0;i<args.length;i++)</em>
<em>sum=sum+Integer.parseInt(args[i]);//converting string to integer and then adding it with sum variable and storing back in sum</em>
<em>System.out.println("The total is "+sum);//printing the sum</em>
<em>}</em>
<em>}</em>
See more about JAVA code at brainly.com/question/12975450
#SPJ1
Answer:
public static ArrayList manyStrings(ArrayList<String> list, int n){
ArrayList<String> newList = new ArrayList<String>();
for (int i=0; i<list.size(); i++) {
for (int j=0; j<n; j++) {
newList.add(list.get(i));
}
}
return newList;
}
Explanation:
Create a method called manyStrings that takes two parameters, list and n
Create a new ArrayList that will hold new values
Create a nested for loop. The outer loop iterates through the list. The inner loop adds the elements, n of this element, to the newList.
When the loops are done, return the newList
Answer:
Hello your question is incomplete below is the complete question
The following questions refer to this data segment (in x86 assembler language):
.data
var1 db 10h,20h
var2 dw 1020h
var3 db '4'
var4 db '56'
var5 db '789','$'
How many bytes will have been written to the standard output device after all these instructions have been executed?
mov dx, offset var3
mov ah, 9
int 21h
Answer : 4 bytes
Explanation:
(in x86 assembler language) The number of bytes that will have been written to the standard output device after the instructions listed have been executed is : 4 bytes