No macs have a different internal because apple runs faster
Answer:
The correct answer for the given question is option(a) i.e Local - within that function
.
Explanation:
The variable which is declared inside any function are called as local variable The scope and lifetime of local variable is inside that block or function only.
They cannot access outside the function.
Following are the example of local variable
#include <stdio.h> // header file
void fun(); // function prototype
int main()// main function
{
fun(); //calling function
print("%d",t); // it gives error because t is local variable cannot access in main function
return 0;
}
void fun()
{
int t=9;// local variable
printf("t is local variable which value is:");
printf("%d",t);
}
As we seen that t cannot access outside the function .So correct answer is option(a)
Answer:
Extension lines are used to indicate the extension of a surface or point to a location preferably outside the part outline.
Explanation:
Answer:
using python to write the program
Explanation:
#To use the log function, the module must be imported
import math
n=int(input("Enter number to be halved"))
count=0
while(n>1):
count=count+1
n=n//2
print("The number halved is now ", n, "The is the ", count, "iteration")
x = math,log(2,(n))
print("The log of n is:", x)