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-295
4
4 votes
4
4 answers
244
244 views
GO Classes DPP | GATE CS | Digital Logic | K-map Simplification
For the Boolean function $\mathrm{F}(\mathrm{A},\mathrm{B},\mathrm{C},\mathrm{D})=\Sigma _m(0,2,4,5,6,7,8,10,13,15)$, which of the following is the minimal SOP form using...
GO Classes
244
views
asked
Jun 11
Digital Logic
goclasses
goclasses-cs-dpp
digital-logic
goclasses-cs-dpp-day-295
goclasses-digital-logic-practice-questions
k-map
+
–
4
4 votes
2
2 answers
184
184 views
GO Classes DPP | GATE CS | Digital Logic | K-map Simplification
For the Boolean function $\mathrm{F}(\mathrm{A},\mathrm{B},\mathrm{C},\mathrm{D})=\Sigma _m(0,1,2,4,5,7,11,15)$, which of the following is a correct minimal SOP form usin...
GO Classes
184
views
asked
Jun 11
Digital Logic
goclasses
goclasses-cs-dpp
digital-logic
goclasses-cs-dpp-day-295
goclasses-digital-logic-practice-questions
k-map
multiple-selects
+
–
3
3 votes
2
2 answers
131
131 views
GO Classes DPP | GATE CS | Digital Logic | K-map Simplification
For the Boolean function $\mathrm{F}(\mathrm{A},\mathrm{B},\mathrm{C},\mathrm{D})=\Sigma _m(0,1,2,3,8,9,10,11,14,15)$, which of the following is the minimal SOP form usin...
GO Classes
131
views
asked
Jun 11
Digital Logic
goclasses
goclasses-cs-dpp
digital-logic
goclasses-cs-dpp-day-295
goclasses-digital-logic-practice-questions
k-map
+
–
1
1 vote
2
2 answers
165
165 views
GO Classes DPP | GATE CS | Digital Logic | K-map Simplification
For the Boolean function $\mathrm{F}(\mathrm{A},\mathrm{B},\mathrm{C})=\Sigma _m(1,3,4,5,7)$, which of the following is the minimal SOP form?$\mathrm{F}=\mathrm{A}+\mathr...
GO Classes
165
views
asked
Jun 11
Digital Logic
goclasses
goclasses-cs-dpp
digital-logic
goclasses-cs-dpp-day-295
goclasses-digital-logic-practice-questions
k-map
+
–
2
2 votes
3
3 answers
178
178 views
GO Classes DPP | GATE CS | Digital Logic | Boolean Simplification
Simplify the Boolean expression $\mathrm{Z=AB+(C'+A'B')'+A'(AB+AC'D')}$ and identify its minterm form.$\mathrm{Z=AB+AC+BC},\ \quad\Sigma _m(6,7,10,11,12,13,14,15)$ $\math...
GO Classes
178
views
asked
Jun 11
Digital Logic
goclasses
goclasses-cs-dpp
digital-logic
goclasses-cs-dpp-day-295
goclasses-digital-logic-practice-questions
boolean-expression
+
–
8
8 votes
2
2 answers
221
221 views
GO Classes DPP | GATE CS | C Programming | Static Function Linkage
Given the following two files, what will happen when they are compiled and linked together?file1.c#include <stdio.h static void show() { printf("Hello"); }main.cvoid show...
GO Classes
221
views
asked
Jun 11
Programming in C
goclasses
goclasses-cs-dpp
goclasses-cs-dpp-day-295
programming-in-c
c-programming
goclasses-c-programming-practice-questions
static-allocation
+
–
7
7 votes
2
2 answers
202
202 views
GO Classes DPP | GATE CS | C Programming | Extern with Local Shadowing
What is the output of the following code?#include <stdio.h int x = 10; int main() { int x = 20; { extern int x; printf("%d", x); } return 0; }$\texttt{10}$ $\texttt{20}$ ...
GO Classes
202
views
asked
Jun 11
Programming in C
goclasses
goclasses-cs-dpp
goclasses-cs-dpp-day-295
programming-in-c
c-programming
goclasses-c-programming-practice-questions
extern-variable
+
–
5
5 votes
3
3 answers
206
206 views
GO Classes DPP | GATE CS | C Programming | Static Local Variable
What is the output of the following code?#include <stdio.h int add(int n) { static int total = 1; total = total + n; return total; } int main() { int i, ans = 0; for (i =...
GO Classes
206
views
asked
Jun 11
Programming in C
goclasses
goclasses-cs-dpp
goclasses-cs-dpp-day-295
programming-in-c
c-programming
goclasses-c-programming-practice-questions
numerical-answers
+
–
7
7 votes
2
2 answers
210
210 views
GO Classes DPP | GATE CS | C Programming | Multiple Global Declarations
What is the output of the following code?#include <stdio.h int x; int x; int main() { printf("%d", x); return 0; }$\texttt{0}$ Garbage value Compilation error Linker erro...
GO Classes
210
views
asked
Jun 11
Programming in C
goclasses
goclasses-cs-dpp
goclasses-cs-dpp-day-295
programming-in-c
c-programming
goclasses-c-programming-practice-questions
+
–
10
10 votes
3
3 answers
281
281 views
GO Classes DPP | GATE CS | C Programming | Multi-file Extern Linkage
Given the following three files, what will be the output after compiling and linking them together?file1.cextern int i; void f() { i++; }file2.cint i = 0; void f(); void ...
GO Classes
281
views
asked
Jun 11
Programming in C
goclasses
goclasses-cs-dpp
goclasses-cs-dpp-day-295
programming-in-c
c-programming
goclasses-c-programming-practice-questions
+
–
To see more, click for the
full list of questions
or
popular tags
.