Question
When was Khandesh merged into the Mughal empire by
Akbar?Solution
The correct answer is A
calculate the complexity of the below recursive code
Int f(int n)
{
If(n
return 1;
return f(n/2)+f(n/2);
}
With what command you can see your user name?
What is a critical section in the context of synchronization?
In which protocol of email the changes made on one device will not be replicated on other?
data mart
In the context of the OWASP Top 10, what does "A3: Sensitive Data Exposure" refer to?
What is the purpose of the token in a Token Ring network?
What does below UNIX command do?
cp file1 file2
What is the primary purpose of instruction pipelining in a CPU?
What is the scope of a variable declared inside a block of code (e.g., within curly braces)?