2 answers
4
The Sigmoid activation function $f(t)$ is defined as$\dfrac{1}{\text{exp} (t) + \text{exp} (-t)}$$t \text{ exp}(-t)$$\dfrac{1}{1+ \text{exp} (t)}$$\dfrac{1}{1+ \text{exp...
2 answers
6
A signal processor software is expected to operate for 91.25 days after repair, and the mean software repair time is expected to be 5 minutes. Then, the availability of t...
2 answers
9
Match the following WINDOWS system calls and UNIX system calls with reference to process control and File manipulation. $$\begin{array}{llll} & \textbf{Windows} & & \text...
2 answers
14
When a programming language has the capacity to produce new datatype, it is called as,Overloaded LanguageExtensible LanguageEncapsulated LanguageAbstraction Language
1 answer
16
3 answers
17
Let $T(n)$ be a function defined by $T(n) =1$ and $T(n)=2T (n/2) + \sqrt{n}$, which of the following is true?$T(n) = O(\sqrt{n})$$T(n) = O(\log_2 n)$$T(n) = O(n)$$T(n) = ...