Answer: Multithreaded
Explanation: Multithreaded program is the program that has the capability of supporting multiple execution through one thread. The multiple execution through single thread refers to the instructions that can take place simultaneously in a sequence manner.
Every instruction in the execution is provided with their own control unit which helps in flow control.Individual execution flow that takes place in sequence of instruction is called threads
It all depends back on who youre present it t
younger ages (Primary-Middle),
Its Ok to use plenty of special effects, but dont ovedue your DTP with effects, so that they still can get the point.
Older ages (High & above)
Older people usually more serious than older ages to pursue their careers, so less effect, more points
Answer:
When the element is not found we return -1.
Explanation:
When we use binary search we use BinarySearch() method of an array or list type when the element is found we return the index of the element if found if the element is not found we return -1.
We can decode this value since it is less than 0 and the indexing of arrays and lists starts with 0 upto the size-1.So -1 index is not present in the array or list.We have to check if the index is < 0 then the element is not present in the array or list.
for ex:-
if(index<0)
{
System.out.println("Element is not present in the array");
}
Answer:
string1 = "this is string 1"
string2 = " this is string 2"
print(string1 + string2)
Explanation:
the string1 variable is assigned with a string value(aka. str)
string2 is also a variable assigned with a slightly different string value
the 3rd line then prints string 1 and 2 to the console.