Unnamed: 0
int64 1
5.86k
| Question
stringclasses 24
values | Sample ANS
stringclasses 24
values | Student ANS
stringlengths 1
1.06k
| Score
float64 0
2.5
|
---|---|---|---|---|
748 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | We have various asymptotic symbol :-\n- Big O is for determining upper bound.\n- Omega is for determining lower bound.\n- Theta if for determining exact value. | 2 |
749 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | 1. best case analysis --> sigma Notation\n2. average case --> theta Notation\n3.worst case --> Big Oh Notation | 2.5 |
751 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | they are omega, theta, big O. | 2.5 |
752 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | examples are:\n1)Big O : f(n)<=g(n)\n2)Big Omega : f(n)>=g(n)\n3)Little o : f(n)<g(n)\n4)Little omega : f(n)>g(n) | 2.5 |
753 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Asymptotic notations gives us the information regarding the time and space complexities in various cases like the best , worse and the average cases. It helps us in comparing the efficiency of the program from various angles. It has O() for worst case , omega() for best cases and theta() for average cases. | 2 |
754 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Asymptotic notation gives us the information about the space and time complexities in various cases, it could be the best, worst and average case. | 2 |
755 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | asymptotic notations like big O,omega and theta which represents the possible cases an algorithm can be solved. Big O represents best case scenario ,theta represents average case scenario while omega gives worst case scenario of an algorithm. It is identified by the functions used in algorithm which makes it easier to differentiate and to justifies particular scenario, for space and time complexities. | 2.5 |
756 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | There are three asymptotic notations which are used for time complexity. These notations are:\ni) theta ( )\nii) O( ) \niii) omega ( ) | 2 |
757 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | to check lower bound of the solution. we use asymptotic notations. | 1 |
758 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Big O (O) -worst time complexity\nTheta- Average time complexity\nOmega- Best time complexity | 2.5 |
759 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | The Notations that are used to denote the functions generated by the algorithms are knows as asymptotic notations. For example, Big Oh, Theta, Omega are the bounds of an algorithm, Big Oh denotes the upper bound, Omega denotes the lower bound and Theta denotes the average. | 2.5 |
760 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | The notations generated to denote a function generated for the algorithms are called asymptotic notations. Omega, theta and Big oh are the bounds for an algorithm and denote lower, average and upper bound respectively. | 2.5 |
762 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Asymptotic notations mean representing the time complexity of an algorithm in the form of an equation (recurrence relation). | 2.5 |
763 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | big O(n) | 1 |
764 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | The asymptotic notation is to represent the given problem in terms of time complexity. so that if there is chance to reduce its complexity then we can do it by applying suitable complexity. \n1)Big O notation\n2)theta notation\n3) | 2.5 |
765 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | asymptotic notations are mathematical terms which are used to analyze an algorithm. They are basically used to measure the time taken by an algorithm.\nsome common examples of asymptotic notations are :-\nBig-oh,\nBig- omega\ntheta ,etc. | 2.5 |
767 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Asymptotic Notations are basically a method to represent the given Algorithm in Mathematical terms . Some specific notations are being defined to check or state whether the time complexity of an algorithm will be in which of the form of asymptotic notations.\nFoe ex; 1. Big-oh\n 2. omega \n 3. theta | 2 |
768 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Asymptotic notations tells about the running time of a program. It tells us how much time can a program take to give an output. Asymptotic notations are divided in big O, theta and omega notations. | 2 |
769 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | asymptotic analysis are big O, theta and omega. | 2 |
770 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | These are a kind of approximations of time and space complexities which tells us the program that in how much time the algorithm is taking to run the program. These are denoted by some kind of symbols such as theta, Small and Big O. | 2 |
771 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Asymptotic notations are the ways to represent the time complexity of a program. Example: bigO, omega(w), theta. | 2 |
772 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Big O\ntheta\nomega\ndelta\netc.\n | 2 |
773 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Asymptotic notations are the notations used to express complexities, for example:\nBig O\nBig Theta\nBig Omega\nSmall O | 2 |
774 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Analysis of an Algorithm can be done using notations that give us the information about the lower and upper bounds or exact constant time or space that the algorithm might take:\n1) big O notation - It specifies the minimum upper bounds of time and space that the algorithm might take.\n2) omega notation - It specifies the highest lower bound of time and space that an algorithm might take.\n3) theta notation - It specifies the average time and space that an algorithm might take. | 2.5 |
775 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | it is a method for the notation of the time complexity of an algorithm. Big oh, theta, small o | 2.5 |
776 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | big o - O : Worst Case Time Complexity \ntheta- Average Case Time Complexity\nomega- Best case Time Complexity | 2.5 |
777 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | There are different types of asymptotic notations:\n(i)Big-O\n(ii)Omega\n(iii)Theta\n(iv)Small-o | 2.5 |
778 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | There are various asymptotic notations like:\n1. Big oh (O) Notation: Calculates the upper bound time complexity. Shows the worst-case input scenario for a particular algorithm.\n2. Theta Notation: Calculates the lower bound time complexity. Shows the best-case input scenario for a particular algorithm.\n3. Omega Notation: Calculates the average case time complexity. Shows the median-case input scenario for a particular algorithm. | 2.5 |
779 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | the asymptotic analysis use certain notation in which the time complexity of an algorithm can be written.\nthose notations are called as asymptotic notation.\nthere are major 3 notations:\n1)Big O\n2)Big omega\n3)Big Theta\n | 2.5 |
780 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Asymptotic Notations are:-\nBig of O\nBig of Theta\nBig of Omega | 2.5 |
782 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Asymptotic notations are in the form of Big O(O), small O(o) and omega. | 2 |
783 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Asymptotic notations are the representation in which the space and time complexities are analyzed and shown. Few asymptotic notations are Big O Notation, Theta Notation etc. | 2 |
784 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | there are the representations to provide the time and space complexity of an algorithm. eg big Oh' (O) , theta, omega. | 2 |
785 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Asymptotic notations are a way to express the time complexity of an algorithm in computer science. They provide a formal way to describe the rate of growth of the running time of an algorithm as the size of the input increases. The three main asymptotic notations are Big O, Omega, and Theta, which are used to describe the upper, lower, and tight bounds of the time complexity, respectively. | 2 |
786 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | big O notation, the big theta notation and the big omega notation | 2 |
787 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | different notations such as big O, omega and theta , that represent best , average and worst complexity | 2 |
788 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | There are big o , theta and omega. | 2 |
790 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Asymptotic notations are the notations to represent different test cases - the best case, the average case and the worst case. \nThese notations are theta, big-O notation and the omega notation. The theta is represented for average case, big-O notation for worst cases and the omega for the best test case. | 2.5 |
791 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Asymptotic notations include Big Oh, Theta, and Omega.\nBig Oh is for the worst case time complexity\nTheta is for the closest time complexity\nOmega is for the least time complexity | 2.5 |
792 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | 1)Big O\n2)Omega | 2 |
793 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | notations used to measure time like big o , theta , omega | 2 |
794 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | It is used to describe the running time of an algorithm | 1 |
795 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Its Mathematical notation to compare between two things which is bigger or lesser | 1 |
796 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | asymptotic notations are: \n1.best case ( omega notation)\n2. average case (theta notation)\n3. worst case (big O notation) | 2.5 |
797 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | The equations which we made as per the code for finding the running time of a algorithm are known as asympotic notations. | 1 |
798 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Asymptomatic notation means the amount of time the algorithm will take to run like eg. O(n) or Theta time. | 1.5 |
799 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Asymptotic notations are theta, ohm and O(big O) FOR best, worst and average case respectively. | 2.5 |
800 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | It is a mathematical notations that represent the complexity or performance of an algorithm for large inputs or when the input size changes. | 2.5 |
801 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | it is used to describe the run time of a given algorithm it gives how much time does a algorithm take to run | 1.5 |
802 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Asymptotic notations are: \n1. Omega\n2. Theta\n3. Big - O | 0 |
804 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | 0 |
|
805 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | It is used to show the complexity of the algorithm in best , average or worst case.\nThere are three asymptotic notations :\n1. Big O notation \n2. Theta notation \n3. Omega notation | 2.5 |
806 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Asymptotic notations are the mathematical notations used to describe the running time of an algorithm when the input tends towards a particular value or a limiting value. | 1 |
807 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Mathematical notation used to describe running time of an algorithm. | 1 |
808 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Asymptotic notations are the notations which is widely used in order to identify the three cases of time complexity analysis of an algorithm, that are\n->Best case (thetha)\n->Average case(Omega )\n->Worst case(Big O) | 2.5 |
809 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | The asymptotic notations are o, big o, and delta. These are notations used to denote the best, average and worst case of an algorithm. | 2 |
810 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Asymptotic notations are \n1. BIG O (O) worst time complexity\n2. theta(N) Best time complexity \n3. average case time complexity\n | 2.5 |
811 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Asymptotic notations are mathematical notations that are used to analyze the runtime of a given algorithm for a large input. It helps us to compare the runtimes of different algorithms without actually calculating their runtimes manually. Asymptotic notations are used only for larger inputs. | 1 |
812 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | big O, small o, big omega, small omega | 2 |
813 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | big o notaion | 1.5 |
814 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | There are symbols depicting the time complexity (Big O, Theta, Omega) | 2 |
815 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | o(n),O(n),T(n),W(n) | 2.5 |
816 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Asymptotic Notations are the mathematical notations used to describe the running time of an algorithm when the input tends towards a particular value. | 2 |
817 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | big O\ntheta \nomega \ntime complexities | 2 |
818 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Asymptotic notations are denoted using O ,THETA AND OMEGA.Big o and small o has f(n)<g(n),big w and small w has f(n)>g(n) and theta has c1n<fn<c2n | 2.5 |
819 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | there are the major notations -\nbig o\nbig theta\nomega\ntheta\no | 2.5 |
820 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Big Omega, Small Omega, Big O, Small O, Thetha | 2 |
821 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Asymptotic notations are theta , omega, big o . These are used to show the time complexity of a given code. | 2 |
823 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Asymptotic notations are big O , theta and omega notations . | 2 |
824 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Big O\nTheta | 2 |
825 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | These are the notations that denotes the different cases that the algorithm has analyzed Big O denotes worst case , Big Omega denotes average case , theta denotes best case. | 2.5 |
826 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | big O, theta | 1 |
827 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | there are certain rules in which we make coefficients of lowest power of x equal to the highest power and then find n0,c0 and f(n) | 1 |
828 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Following are the asymptotic notations:-\n1. O( ): Tells about the worst case complexity\n2. o ( )\n3. Theta ( ): Tells about the average case complexity\n4. Big Omega ( ): Tells about the best case complexity\n5. Small Omega ( ) | 1 |
829 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | it basically tells us about the running time of an algorithm | 1 |
830 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | The asymptotic notations are:\n1- Big Oh()\n2- Big Omega()\n3- Big OTheta | 2 |
831 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Big O , Big omega , theta , small omega , small O | 2 |
832 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Asymptomatic notations are expressed to denote the different cases of the run time of algorithms. Such as big o for the worst case, theta for the average and omega for the best case scenario of an algorithm. | 2 |
833 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | like BIG OH (O(n)) here BIG OH refers to upper bound it will be maximum this value and not be greater than this.\nnext can be OMEGA (N) it refers to lower bound means min value, it will be greater than this value for sure.\nTHETA (N) refers to exact complexity of that particular algorithm | 2 |
834 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Notation to represent time/Space Complexity of algorithm.\ntheta(N)\nFrom which we get information about time measurement of algorithm\nwhich is essential to know about whether a algorithm is efficient or not | 2 |
835 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | they are of three types , big o , omega and theta. | 2 |
836 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Asymptotic notations are the notations which are used to describe the running time of an algorithm. 3 notations are big O,big thetha and bigf omega. | 1 |
837 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | asymptotic notations are of three types big O, big omega ,big theta.\nasymptotic notations tell us about the upper bound, lower bound and worst cases of the algorithm. | 1 |
839 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Omega(n)\nTheta(n)\nOhm(n)\nThey are three notations. | 2 |
840 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Asymptotic notations are used to time the best case, worst case and average case time complexity of a function by using mathematical calculations and approximation comparisions. | 2 |
841 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | asymptotic notations are notations used to represent time and space complexity of an algorithm for best, worst and average case. Ex- big O, theta and omega. | 2 |
842 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Big O Notation\nTheta Notation\nLittle o notation\nOmega Notation | 2 |
843 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Asymptotic notations are Big O, theta and omega . These denote the worst case, average case and best case time complexities. They are decided according to the upper bound , and lower bounds of the Time taken in different cases. | 2 |
844 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | big O notation\nlittle o notation\ntheeta notation \nomega notation | 2 |
845 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | O(n)\nOmega(n)\no(n) | 2 |
846 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | O() for worst case\ntheta() for average case | 2 |
847 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Mathematical symbols used for asymptotic analsysis like big O, big omega,etc., | 2 |
848 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | The aymptotic notation denote that given algo is best case,worst case or average case . | 2 |
849 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | They are mathematical notations used to describe the running time of an algorithm | 2 |
850 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Asymptotic Notation is used to calculate the running time of an algorithm , how much time an algorithm will take \ | 2 |
851 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | The asymptotic notations are as follows:\n- Big O \n- Small o\n- Theta Notation | 2 |
852 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Asymptotic notations are mathematical notations that are used to analyze the runtime of a given algorithm for a large input. It helps us to compare the runtimes of different algorithms without actually calculating their runtimes manually. | 2 |
854 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | asymptotic notations are notations that | 1 |
855 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | 1. Big O\n2. Big Omega\n3. o(n) | 1.5 |
856 | What are asymptotic notations? | Asymptotic analysis can provide three levels of mathematical binding of execution time of an algorithm – (1) Best case is represented by Ω(n) notation. (2) Worst case is represented by Ο(n) notation. (3) Average case is represented by Θ(n) notation. | Asymptotic notations are a basis to examine the time complexity of an algorithm. | 1 |