Answer:
Synonym
Explanation:
I'm pretty sure it's either synonym or explanation, but if there isn't an explanation, it's almost always synonym... so... synonym is correct.
Answer:
A. Ture
The switch keep track where computers are connected to bus based on there on there MAC address and only forward traffic if computers that communicate are in another zone in this case on other side devices on an ethernet network will not detect or notice the network switches for computers the switches are transparent
Answer:
The correct answer is option (B) "{!$Setup.Url_Settings__C.URL__c}".
Explanation:
In computer programing using Visualforce, "$Setup" refers to a global merge field that gives the user access to hierarchical custom settings. In this case, the developer needs to retrieve the correct URL to access the current user's profile and display this on a Visualforce Page. "$Setup" will give the developer access to the hierarchical custom settings in Visualforce, and the command "Url_Settings__C.URL__c" will provide the root access to the current user's profile.
Answer:
a
Explanation:
The variable declared is local within that function that is the declared variable is accessible inside that block itself, it cannot be accessible outside the given function.
ex - void add()
{
int a=10, b=20 , c ;
c = a + b ;
cout << c ;
}
int main()
{
cout << "value for c is :"<< c ;
return 0;
}
Here inside the add function variable a, b,c are declared and initialized inside the function.