Answer:
Program Files is the directory name of a standard folder in Microsoft Windows operating systems in which applications that are not part of the operating system are conventionally installed.
Explanation:
Answer:
The term code switching has been expanded and can encapsulate in any situation that speaker find to be switch from vocabulary.
Explanation:
It is a truly remarkable skill when you communicate your emotions, thoughts and opinion to others. It does not mean that we just to communicate our language but our language influence our thought, emotions and language and self identity.
we communicate our culture that is reflected in our language. Our language tells that who we are and from where we comes.
Code switching is related to the speakers alternates use of multiple language. in the one communication.
For example: Grace for beautiful gift ( Esta awesome).
Answer:
i would suggest not opening ones that start with bit . ly
Explanation:
pls mark brainliest
Answer: Null Object pattern be useful when the absence of an object can be encapsulated by other alternatives which does not have any have any effect.
Explanation:
public interface Rectangle {
double area();
double surfaceare();
boolean isNull();
}
In the code above we have a function for null object. So in the absence of an object we have encapsulated with a method of null which does not do anything. It simplifies the use of dependencies that can be undefined.
In case of collaborator the NULL object pattern makes use of the existing collaboration instead of defining a new one.
It also enable to abstract the handling of null objects from the client so that internal details of the program are not know to outsiders.
Answer:
See explaination.
Explanation:
question is the root element which have two children one is M-C and other is Coding.
Again M-C have two sub children Points and parts
Note: The tree will be as shown in the attachment. kindly refer to attachment.
Here if we see the child of quiz(questions) at 0 position is number of type M-C and another child at location 1 is number of type Coding.
Now quiz.child(0) is number of type M-C which has two child and child at 0 is Points and child at 1 is Parts
quiz.child(0).child(1) is Points and now further points doesn't have any children hence going further to quiz.child(0).child(1).child(0) is nothing hence it will not return anything.
Next quiz.child(1) is number of type coding and value is 5.
Size of the tree is (2^depth)-1
and here depth of tree is 3 hence size is (2^3)-1 i.e. 7