Login
Register
Dark Mode
Brightness
Ambient Glow – Questions list
Register
Profile
Edit Profile
Messages
My favorites
My Updates
Logout
Recent questions tagged goclasses-cs-dpp-day-291
6
6 votes
2
2 answers
206
206 views
GO Classes DPP | GATE CS | Digital Logic | Boolean Laws
Which of the following Boolean algebraic equations represent valid mathematical identities? (Select all that apply)$A \oplus B \oplus AB = A + B$$A + \bar{A}B + \bar{A}\b...
GO Classes
206
views
asked
Jun 8
Digital Logic
goclasses
goclasses-cs-dpp
digital-logic
goclasses-cs-dpp-day-291
goclasses-digital-logic-practice-questions
boolean-algebra
boolean-expression
multiple-selects
+
–
5
5 votes
3
answers
3 answers
240
240 views
GO Classes DPP | GATE CS | Digital Logic | Boolean Laws
Consider the Boolean function $F(w, x, y, z)$ given by the following expression:$$F = wxy + \bar{w}z + xyz + w\bar{x}y$$If this expression is minimized using Boolean alge...
GO Classes
240
views
asked
Jun 8
Digital Logic
goclasses
goclasses-cs-dpp
digital-logic
goclasses-cs-dpp-day-291
goclasses-digital-logic-practice-questions
boolean-algebra
boolean-expression
+
–
4
4 votes
1
1 answer
148
148 views
GO Classes DPP | GATE CS | Digital Logic | Number Representation
Let $X$ be an $8$-bit integer stored in $2$'s complement representation. If the hexadecimal value of $X$ is given as $(E4)_{16}$, what is the decimal equivalent of the va...
GO Classes
148
views
asked
Jun 8
Digital Logic
goclasses
goclasses-cs-dpp
digital-logic
goclasses-cs-dpp-day-291
goclasses-digital-logic-practice-questions
number-representation
numerical-answers
+
–
5
5 votes
2
2 answers
201
201 views
GO Classes DPP | GATE CS | Digital Logic | Number Systems
Consider the valid base conversion equation $(123)_5 = (x8)_y$, where $x$ and $y$ are positive integers. What is the minimum possible decimal value of $x + y$?
GO Classes
201
views
asked
Jun 8
Digital Logic
goclasses
goclasses-cs-dpp
digital-logic
goclasses-cs-dpp-day-291
goclasses-digital-logic-practice-questions
number-system
numerical-answers
+
–
5
5 votes
2
2 answers
192
192 views
GO Classes DPP | GATE CS | Digital Logic | Boolean Laws
Simplify $F=(A+B)(\overline{A}+C)(B+C)+AB$.$B+AC$ $AB+BC$ $AC+\overline{A}B$ $A+B+C$
GO Classes
192
views
asked
Jun 8
Digital Logic
goclasses
goclasses-cs-dpp
digital-logic
goclasses-cs-dpp-day-291
goclasses-digital-logic-practice-questions
boolean-algebra
boolean-expression
+
–
8
8 votes
2
2 answers
301
301 views
GO Classes DPP | GATE CS | C Programming | Nested Loops
What is the output of the following code?#include <stdio.h int main() { int i, j, sum = 0; for (i = 1; i <= 4; i++) { for (j = 1; j <= 5; j++) { if (j % i == 0) continue;...
GO Classes
301
views
asked
Jun 6
Programming in C
goclasses
goclasses-cs-dpp
goclasses-cs-dpp-day-291
programming-in-c
c-programming
goclasses-c-programming-practice-questions
for-loop
numerical-answers
+
–
7
7 votes
1
1 answer
232
232 views
GO Classes DPP | GATE CS | C Programming | Static Variable in Recursion
What is the output of the following code?#include <stdio.h int solve(int n) { static int x = 1; if (n == 0) return x; x = x + n; return solve(n - 1); } int main() { print...
GO Classes
232
views
asked
Jun 6
Programming in C
goclasses
goclasses-cs-dpp
goclasses-cs-dpp-day-291
programming-in-c
c-programming
goclasses-c-programming-practice-questions
pointers
+
–
6
6 votes
1
1 answer
232
232 views
GO Classes DPP | GATE CS | C Programming | Structures and Pass by Value
What is the output of the following code?#include <stdio.h struct Student { int marks; }; void update(struct Student s) { s.marks = s.marks + 10; } int main() { struct St...
GO Classes
232
views
asked
Jun 6
Programming in C
goclasses
goclasses-cs-dpp
goclasses-cs-dpp-day-291
programming-in-c
c-programming
goclasses-c-programming-practice-questions
structure
+
–
7
7 votes
1
1 answer
199
199 views
GO Classes DPP | GATE CS | C Programming | Recursion
What is the output of the following code?#include <stdio.h int fun(int n) { if (n == 0) return 1; return n * fun(n - 2); } int main() { printf("%d", fun(6)); return 0; }
GO Classes
199
views
asked
Jun 6
Programming in C
goclasses
goclasses-cs-dpp
goclasses-cs-dpp-day-291
programming-in-c
c-programming
goclasses-c-programming-practice-questions
recursion
numerical-answers
+
–
7
7 votes
1
1 answer
220
220 views
GO Classes DPP | GATE CS | C Programming | Pointer to Pointer
What is the output of the following code?#include <stdio.h int main() { int a = 5, b = 10; int *p = &a; int q = &p; q = q + 3; p = &b; q = q + a; printf("%d %d", a, ...
GO Classes
220
views
asked
Jun 6
Programming in C
goclasses
goclasses-cs-dpp
goclasses-cs-dpp-day-291
programming-in-c
c-programming
goclasses-c-programming-practice-questions
pointers
+
–
To see more, click for the
full list of questions
or
popular tags
.