Recommended Books for IT

 


1. Discrete Mathematics

Discrete Mathematics and Its Applications - Kenneth H. Rosen 4.3k

Elements of Discrete mathematics - C.L Liu 752

Discrete Mathematics (Schaum’s Outline) - Seymour Lipschutz and Marc Laras Lipson 377

Discrete Mathematics with Applications - Susanna S. Epp 393

2. Computer Organization and Architecture

Computer Organization - Carl Hamacher 2.0k

Computer Organization and Architecture: Designing for Performance - William Stallings 1.1k

3. C Programming

The C programming language - Brian W. Kernighan/Dennis Ritchie 4.8k

Let us C - Yashwant Kanetkar 2.1k

Programming in C - Reema Thareja 2.1k

4. Data Structures

Data Structures Using C and C++ - Tenenbaum 3.0k

Data Structures - Schaum’s Series 1.1k

Data Structures Using C - Reema Thareja 1.2k

5. Algorithms

Introduction to Algorithms - Thomas H. Cormen 1.3k

The Algorithm Design Manual - Steven S Skiena 335

Data Structures and Algorithms Made Easy - Narasimha Karumanchi 788

6. Theory of Computation

Introduction to The Theory of Computation - Michael Sipser 1.8k

An Introduction to Formal Languages and Automata - Peter Linz 649

Theory of Computer Science: Automata, Languages, and computation - K.L.P Mishra 797

7. Compiler Design

Principles of Compiler Design - Alfred V Aho, Jeffrey D. Ullman 414

A Textbook of Compiler Design - Adesh K. Pandey 246

8. Operating System

Operating System Concepts - Silberschatz and Galvin 3.9k

Operating Systems: Internals and Design Principles - Stallings 1.0k

9. Database Management System

Database System Concepts - Abraham Silberschatz and Henry F. Korth 795

Fundamentals of Database Systems - Elmasri Ramez and Navathe Shamkant 229

Database Management Systems - Raghu Ramakrishnan and Johannes Gehrke 200

Database Management Systems - Rajiv Chopra 254

10. Computer Networks

Computer Networking: A Top-down Approach - James F. Kurose and Keith W. Ross 2.3k

Data Communications and Networking - Behrouz A. Forouzan 972

Computer Networks - Tennenbaum

netaji gandi Thursday, September 29, 2022
How to install Code::Blocks

 1. Click on this link: http://www.codeblocks.org/ 19.0k

2. Then click on downloads tab mentioned on the website.

Code_blocks_neso_academy

3. Then click on “download the binary release”.

4. Then you’ll select a suitable package depending on your platform. If you are a windows user, simply click on codeblocks-17.12mingw-setup.exe ​and run this exe file and follow the instructions as it is given. This setup will also download the GNU gcc compiler.

5. Finally, open the codeblocks IDE, you may have to specify the compiler and debugger path

Go to settings -> compiler -> In "Selected Compiler", choose "GNU GCC Compiler" -> Select tab "Toolchain Executables" -> Check the "Compiler's Installation Directory" -> set it to "c:\Program Files\codeblocks\MinGW" if not already set.

6. You are all set.

Happy Coding!

Mr. G. Netaji

netaji gandi
NPTEL » Problem Solving Through Programming In C Week-03: Program-01 02 03 and 04

Week-03: Program-01


 #include <stdio.h>

#define PI 3.14

void main()

{

    int radius;

    float area;

    /* Enter the radius of a circle */

    scanf("%d", &radius);

    area = PI * radius * radius;

    printf("Area of a circle = %5.2f", area);

}

Week-03: Program-02

#include <stdio.h>

int main()

{

    double number;

    scanf("%lf", &number);

    if(number <= 0.0)

    {

        if (number == 0.0)

            printf("The number is 0.");

        else

            printf("Negative number.");

    }

    else

        printf("Positive number.");

}

Week-03: Program-03

#include <stdio.h>

int main()

{

    int number;

    scanf("%d", &number);

     if(number % 2 == 0)

    printf("%d is even.", number);

    else

    printf("%d is odd.", number);

}

Week-03: Program-04

#include <stdio.h>

int main()

{

    int n1, n2, n3;


    scanf("%d %d %d", &n1, &n2, &n3);

    if( n1>=n2 && n1>=n3 )

        printf("%d is the largest number.", n1);


    if( n2>=n1 && n2>=n3 )

        printf("%d is the largest number.", n2);


    if( n3>=n1 && n3>=n2 )

        printf("%d is the largest number.", n3);


}

netaji gandi Wednesday, August 17, 2022
NPTEL » Week 3: Assignment 3 Problem Solving Through Programming In C Aug 2022

 

Week 3: Assignment 3

Due date: 2022-08-17, 23:59 IST.
Assignment not submitted
1 point
 
 
 
 
1 point
 
 
 
 Ans: a
1 point
 
 
 
 Ans: d
1 point
 
 
 
 Ans: c
1 point
 
 
 
 Ans: a
1 point
 
 
 
 Ans: b
1 point
 
 
 
 Ans: b
1 point
 
 
 
 Ans: C
1 point
 
 
 
 Ans: a
1 point
 
 
 
 Ans: b

netaji gandi
R20 C - Previous Question papers

R20 C - Previous Question papers



R20 C Syllabus


Regulation Month & Year Download File
R20 April -2022-Regular 4 Sets
R20 Dec -2021-Supply 1 Set
R20 AUG -2021-Regular 1 Set
R19 JAN -2020-Regular 4 Sets

netaji gandi Tuesday, August 16, 2022
Python Unit Wise Important Questions

 



Unit-I

  1. Explain about the need for learning python programming and its importance.
  2. Write in brief about the applications of Python.
  3. Explain the basics for executing a python program using REPL(Shell) with an example.
  4. Write a python program  to read input using REPL(Shell) and display the output.
  5. Write the rules for choosing names of variables.
  6. Write in brief about any 5 keywords in Python.
  7. Explain about different Logical operators in python with appropriate examples.
  8. Explain about different Relational operators in python with appropriate examples.
  9. Explain about Membership operators in python with appropriate examples.
  10. Explain about Identity operators in python with appropriate examples.
  11. Explain about Arithmetic operators in python with appropriate examples.
  12. List different conditional statements in python with appropriate examples.
  13. What are the different Loops available in python?
  14. What are the different loop control statements available in python? Explain with suitable examples.



netaji gandi
JNTUK R20 R19 R16 PYTHON PROGRAMMING PREVIOUS QUESTION PAPERS
PYTHON PROGRAMMING PREVIOUS QUESTION PAPERS




Regulation

Month & Year
     Download File
              R20            March -2022-Supply                     1 Set
              R20              Sep -2021-Regular                       1 Set
              R19          March -2021-Regular                       4 Sets
              R16       Oct/Nov-2017-Regular                       4 Sets
              R16       Oct/Nov-2018-Regular                       4 Sets
              R16         May-2018-Supply                       1 Set
              R16       Oct/Nov-2019-Regular                       4 Sets
              R16        May-2019-Supply                       1 Set
              R16                    Oct/Nov-2020-Supply                       1 Set

netaji gandi

OBJECT ORIENTED PROGRAMMING USING JAVA LAB

Java Programming Lab Experiments VR-23 2025-26 Java Programming Lab Experiments Experiment 1: Fibonacci Sequence The F...