Saturday, May 3, 2025
  • Home
  • About Us
  • Disclaimer
  • Contact Us
  • Terms & Conditions
  • Privacy Policy
T3llam
  • Home
  • App
  • Mobile
    • IOS
  • Gaming
  • Computing
  • Tech
  • Services & Software
  • Home entertainment
No Result
View All Result
  • Home
  • App
  • Mobile
    • IOS
  • Gaming
  • Computing
  • Tech
  • Services & Software
  • Home entertainment
No Result
View All Result
T3llam
No Result
View All Result
Home Services & Software

Knowledge Buildings & C Programming – GATE CSE Earlier Yr Questions

admin by admin
May 20, 2023
in Services & Software
0
0
SHARES
0
VIEWS
Share on FacebookShare on Twitter


Fixing GATE Earlier Yr’s Questions (PYQs) not solely clears the ideas but additionally helps to achieve flexibility, pace, accuracy, and understanding of the extent of questions typically requested within the GATE examination, and that ultimately lets you achieve good marks within the examination. Earlier Yr Questions assist a candidate observe and revise for GATE, which helps crack GATE with rating. 

Knowledge Buildings & C Programming Earlier Yr GATE Questions assist in analyzing the query sample of a topic and marking scheme in addition to it helps in time administration which general will increase the rating within the GATE examination. With common observe of PYQs, candidates can simply crack GATE with GATE Rating.

Earlier than 2006, questions requested in GATE have been primarily theoretical, however lately, the questions requested have been multiple-choice questions with a single appropriate possibility or a number of appropriate choices. We want to present the multiple-choice questions which are requested in GATE.

Knowledge Buildings & C Programming GATE Earlier Yr Questions

On this article, we’re primarily specializing in the Knowledge Buildings & C Programming GATE Questions which are requested in Earlier Years with their options, and the place an evidence is required, now we have additionally supplied the explanation.

In Knowledge Buildings, we are going to cope with the next ideas. We now have additionally supplied GATE Earlier Yr’s Questions on these subjects. Right here is the record of these subjects together with their hyperlinks.

In C Programming, we are going to cope with the next ideas:

  • Arithmetic Operations
  • Conditional Assertion
  • Loops
  • Array and Pointer
  • Capabilities

Beneath talked about are the hyperlinks to the C Programming PYQ’s pages. On every web page, you’ll get the questions requested in C Programming together with the years requested.

Additionally, right here we’re going to talk about some primary PYQs associated to Knowledge Buildings & C Programming.

1. The preorder traversal of a binary search tree is 15, 10, 12, 11, 20, 18, 16, 19. Which one of many following is the postorder traversal of the tree? [GATE CSE 2020]

(A) 10, 11, 12, 15, 16, 18, 19, 20

(B) 11, 12, 10, 16, 19, 18, 20, 15

(C) 20, 19, 18, 16, 15, 12, 11, 10

(D) 19, 16, 18, 20, 11, 12, 10, 15

Resolution: Appropriate reply is (B)

For extra, seek advice from GATE | GATE CS 2020 | Query 15.

2. What’s the worst-case time complexity of inserting n parts into an empty linked record, if the linked record must be maintained in sorted order? A couple of reply could also be appropriate. [GATE CSE 2020]

(A) Θ(n)

(B) Θ(n log n)

(C) Θ(n2)

(D) Θ(1)

Resolution: Appropriate reply is (C)

For extra, seek advice from GATE | GATE CS 2020 | Query 26.

3. What’s the worst-case time complexity of inserting n2 parts into an AVL tree with n parts initially? [GATE CSE 2020]

(A) Θ(n4)

(B) Θ(n2)

(C) Θ(n2 log n)

(D) Θ(n3)

Resolution: Appropriate reply is (C)

For extra, seek advice from GATE | GATE CS 2020 | Query 16.

4. Contemplate the next C program. [GATE CSE 2018]

#embody<stdio.h>
struct Ournode{
    char x,y,z;
};
int fundamental(){
    struct Ournode p = {'1', '0', 'a'+2};
    struct Ournode *q = &p;
    printf ("%c, %c", *((char*)q+1), *((char*)q+2));
    return 0;
}

The output of this program is:

(A) 0, c

(B) 0, a+2

(C) ‘0’, ‘a+2’

(D) ‘0’, ‘c’

Resolution: Appropriate reply is (A)

For extra, seek advice from GATE | GATE CS 2018 | Query 33.

5. Contemplate the next C Program [GATE CSE 2016]

void f(int, quick);
void fundamental()
{
    int i = 100;
    quick s = 12;
    quick *p = &s;
    ___________ ; // name to f()
}

Which one of many following expressions, when positioned within the clean above, will NOT lead to a type-checking error?

(A) f(s, *s)

(B) i = f(i,s)

(C) f(i, *s)

(D) f(i, *p)

Resolution: Appropriate reply is (D)

For extra, seek advice from GATE | GATE-CS-2016 (Set 1) | Query 22.

6. A queue is carried out utilizing an array such that ENQUEUE and DEQUEUE operations are carried out effectively. Which one of many following statements is CORRECT (n refers back to the variety of gadgets within the queue)? [GATE CSE 2016]

(A) Each operations will be carried out in O(1) time

(B) At most one operation will be carried out on O(1) time however the worst-case time for the opposite operation might be Ω(n)

(C) The worst-case time complexity for each operations might be Ω(n)

(D) Worst case time complexity for each operations might be Ω(log n)

Resolution: Appropriate reply is (A)

For extra, seek advice from GATE | GATE-CS-2016 (Set 1) | Query 20.

7. The outcome evaluating the postfix expression 10 5 + 60 6/ * 8 – is [GATE CSE 2015]

(A) 284

(B) 213

(C) 142

(D) 71

Resolution: Appropriate reply is (C)

For extra, seek advice from GATE | GATE-CS-2015 (Set 3) | Query 65.

8. Let A be a sq. matrix of measurement n x n. Contemplate the next program. What’s the anticipated output? [GATE CSE 2014]

C = 100
for i = 1 to n do
    for j = 1 to n do
    {
        Temp = A[i][j] + C
        A[i][j] = A[j][i]
        A[j][i] = Temp - C
    }
for i = 1 to n do
    for j = 1 to n do
        Output(A[i][j]);

(A) The matrix A itself

(B) Transpose of the matrix A

(C) Including 100 to higher diagonal parts and subtracting 100 from diagonal parts of A

(D) Not one of the above

Resolution: Appropriate reply is (A)

For extra, seek advice from GATE | GATE-CS-2014-(Set-3) | Query 20.

9. Contemplate the next program in C language: [GATE CSE 2014]

#embody<stdio.h>
fundamental()
{
    int i;
    int *pi = &i;
    scanf("%d", pi);
    printf("%dn", i+5);
}

Which one of many following statements is TRUE?

(A) Compilation fails

(B) Execution leads to a run-time error

(C) On execution, the worth printed is 5 greater than the handle of variable i

(D) On execution, the worth printed is 5 greater than the integer worth entered

Resolution: Appropriate reply is (D)

For extra, seek advice from GATE | GATE-CS-2014-(Set-1) | Query 19.

10. A program P reads 500 integers within the vary [0, 100] representing the cores of 500 college students. It then prints the frequency of every rating above 50. What could be the easiest way for P to retailer the frequencies? [GATE CSE 2005] 

(A) An array of fifty numbers

(B) An array of 100 numbers

(C) An array of 500 numbers

(D) A dynamically allotted array of 550 numbers

Resolution: Appropriate reply is (A)

For extra, seek advice from GATE | GATE-CS-2005 | Query 5.

GATE CSE Earlier Yr Query Papers

These earlier yr’s questions aid you in understanding the query patterns adopted by GATE that immediately assist a candidate in scoring good marks in GATE. Beneath are the talked about hyperlinks of year-wise GATE Earlier Query Papers.

Final Up to date :
20 Could, 2023

Like Article

Save Article

RelatedPosts

Person Information for WooCommerce WhatsApp Order Notifications

Person Information for WooCommerce WhatsApp Order Notifications

April 2, 2025
Report reveals overinflated opinion of infrastructure automation excellence

Report reveals overinflated opinion of infrastructure automation excellence

April 2, 2025
I have been kidnapped by Robert Caro

I have been kidnapped by Robert Caro

April 2, 2025
Previous Post

Is Nvidia now a software program inventory? The aggressive benefit of CUDA

Next Post

Introducing Intel® Licensed GEEKNUC On-line Retailer

Next Post

Introducing Intel® Licensed GEEKNUC On-line Retailer

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Categories

  • App (3,061)
  • Computing (4,342)
  • Gaming (9,491)
  • Home entertainment (633)
  • IOS (9,408)
  • Mobile (11,737)
  • Services & Software (3,935)
  • Tech (5,253)
  • Uncategorized (4)

Recent Posts

  • Essential Launch Intel You Must Know!
  • New Plex Cellular App With Streamlined Interface Rolling Out to Customers
  • I’ve had it with the present GPU market – and the costs for AMD Radeon companion playing cards on Finest Purchase are why
  • MCP: The brand new “USB-C for AI” that’s bringing fierce rivals collectively
  • Realme GT7’s processor confirmed, launching this month
  • App
  • Computing
  • Gaming
  • Home entertainment
  • IOS
  • Mobile
  • Services & Software
  • Tech
  • Uncategorized
  • Home
  • About Us
  • Disclaimer
  • Contact Us
  • Terms & Conditions
  • Privacy Policy

© 2025 JNews - Premium WordPress news & magazine theme by Jegtheme.

No Result
View All Result
  • Home
  • App
  • Mobile
    • IOS
  • Gaming
  • Computing
  • Tech
  • Services & Software
  • Home entertainment

© 2025 JNews - Premium WordPress news & magazine theme by Jegtheme.

We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept”, you consent to the use of ALL the cookies. However you may visit Cookie Settings to provide a controlled consent.
Cookie settingsACCEPT
Manage consent

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these cookies, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may have an effect on your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
CookieDurationDescription
cookielawinfo-checkbox-analyticsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".
cookielawinfo-checkbox-functionalThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
cookielawinfo-checkbox-necessaryThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".
cookielawinfo-checkbox-othersThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.
cookielawinfo-checkbox-performanceThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".
viewed_cookie_policyThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
Save & Accept