recategorized by
12,744 views
41 votes
41 votes

$\displaystyle \sum_{1\leq k\leq n} O(n)$, where $O(n)$ stands for order $n$ is:

  1. $O(n)$
  2. $O(n^2)$
  3. $O(n^3)$
  4. $O(3n^2)$
  5. $O(1.5n^2)$
recategorized by

5 Answers

0 votes
0 votes
I think answer Option A is absolutely fine why we are adding all these terms order must be the highest degree term when more than one terms with their order is in addition form.
Answer:

Related questions

19 votes
19 votes
3 answers
5
Kathleen asked Sep 29, 2014
4,200 views
What does the following code do?var a, b: integer; begin a:=a+b; b:=a-b; a:a-b; end;exchanges $a$ and $b$doubles $a$ and stores in $b$doubles $b$ and stores in $a$leaves ...
28 votes
28 votes
3 answers
6
Kathleen asked Sep 29, 2014
4,466 views
Let $A$ and $B$ be sets with cardinalities $m$ and $n$ respectively. The number of one-one mappings from $A$ to $B$, when $m < n$, is$m^n$$^nP_m$$^mC_n$$^nC_m$$^mP_n$
27 votes
27 votes
3 answers
8
Kathleen asked Sep 29, 2014
6,919 views
Let A be a finite set of size n. The number of elements in the power set of $A\times A$ is:$2^{2^n}$$2^{n^2}$$\left(2^n\right)^2$$\left(2^2\right)^n$None of the above