Login
Register
@
Dark Mode
Profile
Edit my Profile
Messages
My favorites
Register
Activity
Q&A
Questions
Unanswered
Tags
Subjects
Users
Ask
Previous Years
Blogs
New Blog
Exams
Dark Mode
Webpage for Algorithms
Recent questions tagged algorithms
0
votes
0
answers
1
self doubt
Determine the number of spanning tree in the following graph ?
Çșȇ ʛấẗẻ
asked
in
Algorithms
Mar 10
by
Çșȇ ʛấẗẻ
67
views
algorithms
spanning-tree
0
votes
0
answers
2
Self Doubt
Determine the number of the spanning treess in the following graph ???
Çșȇ ʛấẗẻ
asked
in
Algorithms
Mar 10
by
Çșȇ ʛấẗẻ
37
views
algorithms
spanning-tree
0
votes
0
answers
3
Self doubt
Determine the number of the spanning treess in the following graph ???
Çșȇ ʛấẗẻ
asked
in
Algorithms
Mar 10
by
Çșȇ ʛấẗẻ
27
views
algorithms
spanning-tree
1
vote
1
answer
4
Spanning Tree
Determine the number of the spanning treess in the following graph ???
Çșȇ ʛấẗẻ
asked
in
Algorithms
Mar 10
by
Çșȇ ʛấẗẻ
71
views
algorithms
spanning-tree
0
votes
0
answers
5
Numerical Method Analysis : Help...
Use LU Decomposition method to solve the following system. $\left\{\begin{matrix} & x_{1} +x_{2}-x_{3} =1 \\ & x_{1} +2x_{2}-2x_{3} =0 \\ & -2x_{1} +x_{2}+x_{3} =1 \end{matrix}\right.$ ...
kidussss
asked
in
Linear Algebra
Mar 8
by
kidussss
43
views
numerical-methods
algorithms
discrete-mathematics
linear-algebra
engineering-mathematics
0
votes
0
answers
6
Numerical Method Analysis : Help...
Solve the following system using Gauss elimination with partial pivoting. $\left\{\begin{matrix} &2x_{1}+x_{2}+x_{3}=10\\ & 3x_{1}+2x_{2}+3x_{3}=18 \\ & 5x_{1}+4x_{2}+2x_{3}=9 \end{matrix}\right.$ ...
kidussss
asked
in
Linear Algebra
Mar 8
by
kidussss
30
views
numerical-methods
algorithms
linear-algebra
engineering-mathematics
discrete-mathematics
0
votes
0
answers
7
Numerical Method Analysis : Help...
Use Secant method to find roots of: $x^3-2x^2+3x-5=0$ $x+1 = 4sinx$ $e^x = x + 2$
kidussss
asked
in
Linear Algebra
Mar 8
by
kidussss
29
views
numerical-methods
algorithms
discrete-mathematics
linear-algebra
engineering-mathematics
0
votes
0
answers
8
Numerical Method Analysis : Help....
Use NR method to find a root of the equation with tolerance x=0.00001. $x^3-2x-5=0$ $e^x-3x^2=0$
kidussss
asked
in
Linear Algebra
Mar 8
by
kidussss
21
views
numerical-methods
algorithms
discrete-mathematics
linear-algebra
engineering-mathematics
0
votes
0
answers
9
Numerical Method Analysis : Help...
Use Bisection method to find all roots of $x^3 – 5x + 3 = 0$
kidussss
asked
in
Linear Algebra
Mar 8
by
kidussss
34
views
numerical-methods
algorithms
linear-algebra
engineering-mathematics
discrete-mathematics
0
votes
0
answers
10
Numerical Method Analysis : Help...
Use Bisection method to find the root of the following equation with tolerance 0.001. $x^4 - 2x^3 - 4x^2 + 4x + 4 = 0$ $x^3 – e^x + sin(x) = 0$
kidussss
asked
in
Linear Algebra
Mar 8
by
kidussss
39
views
numerical-methods
algorithms
linear-algebra
engineering-mathematics
discrete-mathematics
0
votes
2
answers
11
Chose the correct big- Θ expression to describe: T(N) = T(N / 2) + Log(N/2); T(1) = 1
I
ahmed malik
asked
in
Algorithms
Mar 5
by
ahmed malik
94
views
algorithms
time-complexity
asymptotic-notations
3
votes
1
answer
12
GATE CSE 2023 | Question: 10
An algorithm has to store several keys generated by an adversary in a hash table. The adversary is malicious who tries to maximize the number of collisions. Let $k$ be the number of keys, $m$ be the number of slots in the hash ... a carefully chosen constant. Universal hashing method. If $k$ is a prime number, use Division method. Otherwise, use Multiplication method.
admin
asked
in
Algorithms
Feb 15
by
admin
1.3k
views
gatecse-2023
algorithms
hashing
1-mark
3
votes
0
answers
13
GATE CSE 2023 | Question: 19
Let $f$ and $g$ be functions of natural numbers given by $f(n)=n$ and $g(n)=n^{2}.$ Which of the following statements is/are $\text{TRUE}?$ $f \in O(g)$ $f \in \Omega(g)$ $f \in o(g)$ $f \in \Theta(g)$
admin
asked
in
Algorithms
Feb 15
by
admin
1.3k
views
gatecse-2023
algorithms
asymptotic-notations
multiple-selects
1-mark
3
votes
1
answer
14
GATE CSE 2023 | Question: 44
Consider functions $\textsf{Function_1}$ and $\textsf{Function_2}$ ... $f_{1}(n) \in \omega\left(f_{2}(n)\right)$ $f_{1}(n) \in O(n)$
admin
asked
in
Algorithms
Feb 15
by
admin
1.3k
views
gatecse-2023
algorithms
asymptotic-notations
multiple-selects
2-marks
1
vote
1
answer
15
GATE CSE 2023 | Question: 46
Let $U=\{1,2,3\}$. Let $2^{U}$ denote the powerset of $U$. Consider an undirected graph $G$ whose vertex set is $2^{U}$. For any $A, B \in 2^{U},(A, B)$ is an edge in $G$ if and only if (i) $A \neq B$, and (ii) ... $A$ is denoted by $\mathcal{B}(A)$. If $\emptyset$ denotes the empty set, then the cardinality of $\mathcal{B}(\emptyset)$ is ______________.
admin
asked
in
Algorithms
Feb 15
by
admin
873
views
gatecse-2023
algorithms
breadth-first-search
numerical-answers
2-marks
0
votes
0
answers
16
GATE CSE 2023 | Memory Based Question: 37
Time complexity f( ) { while(n>1) { for (i = 1 to n) { } n = n/2 } } g ( ) { for (i = 1 to 100n) { } } $f(x)=O(g(x))$ $f(x)=\theta(g(x))$ $f(x)=o(g(x))$ $f(x)=\omega(g(x))$
GO Classes
asked
in
Algorithms
Feb 6
by
GO Classes
548
views
memorybased-gatecse2023
goclasses
algorithms
time-complexity
multiple-selects
3
votes
0
answers
17
Number of possible permutations that can be obtained using stack for input seq
Number of possible permutations that can be obtained using stack if the input sequence is 1, 2, 3, 4, 5 (in the order) is
h4kr
asked
in
Algorithms
Jan 31
by
h4kr
138
views
algorithms
stack
0
votes
1
answer
18
TestBook TestSeries Finding number of records under join of 2 tables
Assume a relation R' having 200 records. These records are stored in blocks having block factor as 20. Consider another relation S' having 120 records and all these records are stored in 30 blocks. These two tables have to be joined ... the total number of block access required to join R and S ? A. 2430 B. 6010 C. 6120 D. 1230
Sahil_Lather
asked
in
Databases
Jan 29
by
Sahil_Lather
74
views
databases
algorithms
loop
testbook-test-series
Page:
1
2
3
4
5
6
...
110
next »
Subscribe to GATE CSE 2023 Test Series
Subscribe to GO Classes for GATE CSE 2023
Quick search syntax
tags
tag:apple
author
user:martin
title
title:apple
content
content:apple
exclude
-tag:apple
force match
+apple
views
views:100
score
score:10
answers
answers:2
is accepted
isaccepted:true
is closed
isclosed:true
Recent Posts
Central Pollution Control Board CPCB Various Post Recruitment 2023
MP Rajya Sahkari Apex Bank Various Post Recruitment 2023
NITIE MUMBAI throgh GATE
PGCIL recruitment 2023 – Apply Online For 138 Posts through GATE
Admission guidance for GATE CSE 2023
Subjects
All categories
General Aptitude
(2.6k)
Engineering Mathematics
(9.4k)
Digital Logic
(3.3k)
Programming and DS
(5.9k)
Algorithms
(4.6k)
Theory of Computation
(6.7k)
Compiler Design
(2.3k)
Operating System
(5.0k)
Databases
(4.6k)
CO and Architecture
(3.8k)
Computer Networks
(4.7k)
Non GATE
(1.3k)
Others
(2.5k)
Admissions
(655)
Exam Queries
(847)
Tier 1 Placement Questions
(17)
Job Queries
(77)
Projects
(9)
Unknown Category
(866)
Recent questions tagged algorithms
Recent Blog Comments
Please see the updated link.
Unfortunately there won't be a hardcopy coming...
this book is not available on amazon now, i want...
Yes
Hi! @AnkitMazumder14 bhaiya,Is python...