Skip to content

Learn CS with Eliza

  • Home
  • Prog.
    • C
      • Overview
        • Introduction
        • Features
        • Importance
        • Applications
        • Basic Structure
        • Sample Program
        • Compile & Execute
        • Character Set
        • Variables
        • Data Types
        • Constants
        • Keyword & Identifier
        • Tokens
        • Escape Sequence
        • Assignment Statement
        • Type Conversion
      • Operators & Expressions
        • Operators
        • Unary Operator
        • Arithmetic Expression
        • Precedence & Associativity
      • I/O Operations
      • Decision Making & Branching
      • Looping Statement
      • Arrays & Functions
        • Arrays
        • Functions
          • Functions in C
          • User Defined Func
          • Math Functions
          • Storage Classes
      • Structures & Unions
        • Structures
        • Unions
      • Preprocessor & macros
        • Preprocessor
        • Macros
      • Pointers & File Management
        • Pointers
        • File Management
        • Memory Allocation
        • Command Line Arguments
      • Practical Programs
        • Practical Set-1
        • Practical Set-2
      • Important Questions
        • Set-1
        • Set-2
      • Question Answer
        • Set-1
        • Set-2
        • Set-3
      • MCQ
      • Solved Paper
        • Set-1
        • Set-2
        • Set-3
    • C++
      • Practical Programs
    • JAVA
      • OOP Concept
      • OOP in Java
      • Interfaces
      • Packages
      • Exception Handling
      • Multithreading
      • MCQ
      • Important Questions
      • Practical
        • Set-1
  • DSA
    • DS Tutorial
    • Linear DS
    • Non-Linear DS
    • Algorithm Concept
    • Important Questions
    • Solved Paper
      • Set-1
      • Set-2
    • MCQ
  • DBMS
    • DBMS Concepts
    • RDBMS
    • SQL
    • Data Modeling
    • Normalization
    • Functional Dependency
    • Data Abstraction
    • Data Independence
    • Database Schema
    • E-R Diagram
    • Imp Questions-RDBMS
  • SE
    • Introduction
      • Overview
      • Software Processes
      • SDLC
      • Phases of SDLC
      • Waterfall
        • Classical Waterfall
        • Iterative Waterfall
      • Prototype
      • Spiral
      • Iterative
    • Project Management
      • Project Planning
      • Software Cost estimation
      • COCOMO Models
    • Software Requirement
      • Feasibility Studies
      • Functional/Non Functional Requirement
      • SRS Document
    • Design Concepts
      • Design Fundamental
      • Software Design
      • Function/Object Oriented Design
      • Cohesion/Coupling
      • DFD
      • UML
    • Coding & Testing
      • Coding & Testing Notes
      • Coding Style
      • Structured Programming
      • Verification & Validation
      • Error, Fault & Failure
      • Debugging
      • Testing Types
      • Level of Testing
      • White Box Testing
      • Black Box Testing
    • Software Maintenance
    • Solved Paper
      • Set-1
      • Set-2
    • Imp Questions
    • MCQ
  • WebTch
    • Internet & Web
      • Introduction
      • Complete Notes
      • Question Answers
    • HTML
      • Introduction
      • Complete Notes
      • Imp Questions
    • CSS
    • Java Script
      • Notes
      • Programs
    • PHP
  • Networks
    • Important Questions
    • Solved paper
      • Set-1
      • Set-2
  • NSC
    • Overview NSC
    • Cryptography
    • Symmetric Key Ciphers
      • Symmetric Key Ciphers (Classical)
      • Block Cipher
      • Block & Stream Cipher
      • Feistel Cipher
      • Confusion & Diffusion
    • Symmetric Key Algo
      • DES
      • AES
    • Asymmetric Key Algo
      • RSA
    • SHA
      • SHA-1
    • MD5
    • Digital Signature
    • Hash Function
    • Questions
    • Important Questions
    • Questions & Ans
    • MCQ
  • DS
    • DS Introduction
    • Clock Synchronization
    • Distributed ME
    • Election Algorithm
    • Termination Detection
    • Tran & Con Control
    • DS Notes
    • MCQ
    • DS Questions
    • Solved Paper
  • MobileTch
    • Complete Notes
    • Question & Ans
  • QP
    • C Programming
      • C-2021
      • C-2022
      • C-2023
      • C 2023
    • Data Structure
      • DS-2022
      • DS-2023(ASTU)
      • DS-2023(DU)
    • Digital Logic
      • DL-2023
    • OOP in Java
      • JAVA-2021
      • JAVA-2023
      • JAVA-2024
    • Computer Architecture And Organization
      • CAO-2021
      • CAO-2023
      • CAO 2023
      • CAO-2024
    • DBMS
      • DBMS-2021
      • DBMS-2023
    • EVS
      • EVS-2023
      • EVS-2024
    • Software Engineering
      • SE-2022
      • SE-2023
      • SE-2024
    • Computer Network
      • CN-2022
      • CN-2023
      • CN-2024
    • Web Technology
      • WT-2022
      • WT-2023
      • WT-2024
    • Theory of Computer Science
      • TCS-2022
      • TCS-2023
      • TCS-2024
    • Operating System
      • OS-2022
      • OS-2023
    • Network Security & Cryptography
      • NSC-2022
      • NSC-2023
    • System Software
      • SS-2022
      • SS-2023
      • SS-2024
    • Design & Analysis of Algorithms
      • DAA-2022
      • DAA-2023
      • DAA-2024
    • Distributed System
      • DS-2023
      • DS-2024
    • Artificial Intelligence
      • AI-2023
      • AI-2024
  • Syllabus
    • BCA
      • 1st Sem
      • 2nd Sem
      • 3rd Sem
      • 4th Sem
      • 5th Sem
      • 6th Sem

Database Concept: Data, Meta data, Data item, Files, Database, DBMS

December 3, 2023March 30, 2022 by Eliza Begum

Data: In simple words, data is raw facts or figures or entity. For example, data relating to an individual would …

Read more

Important questions of C programming

August 26, 2023March 27, 2022 by Eliza Begum

1.      Draw the basic structure of a C program. 2.    State the series of steps for executing a program …

Read more

Dynamic Memory Allocation in C programming

December 15, 2023March 25, 2022 by Eliza Begum

  The process of allocating and deallocating (freeing) memory at the time of execution of a program (at runtime) is …

Read more

C Practice Questions with Solutions |C Programming Exercises with Solutions

July 6, 2025March 22, 2022 by Eliza Begum

1. Write a C program to check two numbers are equal or not. Output: 2. Write a program to find …

Read more

Command Line Arguments in C | C – Command Line Arguments

December 13, 2023March 16, 2022 by Eliza Begum

Command line arguments provide a way to pass a set of arguments into a program at run time. When we …

Read more

File handling in C | Basics of File Handling in C

September 26, 2023March 16, 2022 by Eliza Begum

File handling in C refers to the task of storing data in the form of input or output produced by …

Read more

C Pointers | Pointers in C

June 10, 2024March 16, 2022 by Eliza Begum

Definition of Pointers: A pointer is a variable which stores the address of another variable. It is called pointer because …

Read more

Preprocessor in C |C – Preprocessors |C Preprocessor Directives

March 4, 2024March 16, 2022 by Eliza Begum

The ‘C’ preprocessor is a program which processes the source program before compilation.  Or we can say that the preprocessor …

Read more

C Union | Union in C | Introduction to Union in C

February 24, 2024March 16, 2022 by Eliza Begum

A union is collection of variables of different data types. However, with unions, we can only store information in one …

Read more

C Structures| Structures in C |C struct (Structures)

June 10, 2024March 16, 2022 by Eliza Begum

A structure is a heterogeneous set of data items. That is, a structure is a set of data items belonging …

Read more

Older posts
Newer posts
← Previous Page1 … Page27 Page28 Page29 Page30 Next →
  • About Us
  • Contact Us
  • Disclaimer
  • Privacy Policy
  • Terms and Conditions

Recent Posts

  • COMMIT, ROLLBACK and SAVEPOINT in SQL|TCL commands-COMMIT, ROLLBACK and SAVEPOINT
  • Natural Language Processing (NLP)| What is Natural Language Processing (NLP)
  • Machine Learning Tutorial|What is Machine Learning?
  • Expert Systems in Artificial Intelligence| Artificial Intelligence – Expert Systems | Expert Systems in AI | What are Expert Systems in AI?
  • Knowledge Representation in Artificial Intelligence (AI)| What is Knowledge Representation in AI?
  • 1st Sem
  • 2nd Sem
  • 3rd Sem
  • 4th Sem
  • 5th Sem
  • 6th Sem
  • AES
  • AI-2023
  • AI-2024
  • Algorithm Concept
  • Arithmetic Expression
  • Arrays
  • Assignment Statement
  • Basic Structure
  • Black Box
  • Block & Stream Cipher
  • Block Cipher
  • C 2023
  • C Programming
  • C-2021
  • C-2022
  • C-2023
  • CAO 2023
  • CAO-2021
  • CAO-2023
  • CAO-2024
  • Character Set
  • Classical
  • Clock Synchronization
  • CN Solved Paper SEt-1
  • CN solved Paper Set-2
  • CN-2022
  • CN-2023
  • COCOMO Models
  • Coding & Testing Notes
  • Coding Style
  • Cohesion/Coupling
  • Command Line Arguments
  • Compile & Execute
  • Complete Notes – Mobile Tech
  • Confusion & Diffusion
  • Constants
  • Cryptography
  • CSS
  • DAA-2022
  • DAA-2023
  • DAA-2024
  • Data Abstraction
  • Data Independence
  • Data Modeling
  • Data Structure
  • Data Types
  • Database Schema
  • DBMS Concepts
  • DBMS-2021
  • DBMS-2023
  • Debugging
  • Decision Making & Branching
  • DES
  • Design Fundamental
  • DFD
  • Digital Signature
  • Distributed ME
  • DL-2023
  • DS Introduction
  • DS MCQ
  • DS Notes
  • DS Questions
  • DS Tutorial
  • DS-2022
  • DS-2023
  • DS-2023(ASTU)
  • DS-2023(DU)
  • DS-2024
  • DSA
  • E-R Diagram
  • Election Algorithm
  • Error, Fault & Failure
  • Escape Sequence
  • EVS-2023
  • EVS-2024
  • Exception Handling
  • Feasibility Studies
  • Features
  • Feistel Cipher
  • File Management
  • Function/Object Oriented Design
  • Functional Dependency
  • Functional/Non Functional Requirement
  • Functions in C
  • Hash Function
  • I/O Operations
  • Imp Questions SE
  • Imp Questions-RDBMS
  • Importance
  • Important Question-NSC
  • Important Questions
  • Important Questions – HTML&CSS
  • Important Questions- DS
  • Interfaces
  • Intro HTML
  • Intro Internet
  • Introduction
  • Iterative
  • Iterative
  • Java Imp Questions
  • JAVA-2021
  • JAVA-2023
  • JS Notes
  • JS programs
  • Keyword & Identifier
  • Level of Testing
  • Linear DS
  • Looping Statement
  • Macros
  • Math Functions
  • MCQ – JAVA
  • MCQ-C
  • MCQ-DSA
  • MCQ-NSC
  • MCQ-SE
  • MD5
  • Memory Allocation
  • Multithreading
  • Network Security & Cryptography
  • Non-Linear DS
  • Normalization
  • Notes -HTML&CSS
  • Notes Internet & Web
  • NSC Questions
  • NSC-2022
  • NSC-2023
  • OOP Concept
  • OOP in JAVA
  • OOP in Java
  • Operating System
  • Operators
  • OS-2022
  • OS-2023
  • Overview
  • Overview NSC
  • Packages
  • Phases of SDLC
  • PHP
  • Pointers
  • Practical Programs
  • Practical Set-1
  • Practical Set-1 Java
  • Practical Set-2
  • Precedence & Associativity
  • Preprocessor
  • Project Management
  • Project Planning
  • Prototype
  • Que-Ans Mobile Tech
  • Ques-Ans Internet Tech
  • Questions & Ans NSC
  • RDBMS
  • RSA
  • Sample Program
  • SDLC
  • SE-2022
  • SE-2023
  • SE-2024
  • Set-1
  • Set-1 QA
  • Set-2
  • Set-2
  • Set-3
  • SHA
  • SHA-1
  • Software Cost estimation
  • Software Design
  • Software Maintenance
  • Software Processes
  • Software Requirement
  • Solved Paper Set 1-SE
  • Solved Paper Set 2-SE
  • Solved Paper- DS
  • Solved Paper-C Set-1
  • Solved Paper-C Set-2
  • Solved Paper-C Set-3
  • Solved Paper-DSA (Set-1)
  • Solved Paper-DSA(Set-2)
  • Spiral
  • SQL
  • SRS Document
  • SS-2022
  • SS-2023
  • SS-2024
  • Storage Classes
  • Structured Programming
  • Structures
  • Symmetric Key Ciphers (Classical)
  • TCS-2022
  • TCS-2023
  • TCS-2024
  • Termination detection
  • Testing
  • Tokens
  • Tran & Con Control
  • Type Conversion
  • UML
  • Unary Operator
  • Uncategorized
  • Unions
  • User Defined Func
  • Variables
  • Verification & Validation
  • White Box
  • WT-2022
  • WT-2023
  • WT-2024
  1. Java Burn on Python Arrays | Arrays in PythonJanuary 20, 2025

    Great work! This is the type of info that should be shared around the net. Shame on the search engines…

  2. Java Burn on Design and Analysis of Algorithms Question Paper 2023 | Question Paper Design and Analysis of Algorithms BCAJanuary 20, 2025

    Very interesting details you have noted, regards for posting. "Opportunities are seldom labeled." by John H. Shield.

  3. semutwin on Design and Analysis of Algorithms Question Paper 2023 | Question Paper Design and Analysis of Algorithms BCAJanuary 20, 2025

    Some truly interesting information, well written and generally user genial.

  4. Sight Care on Sample C Program | How to write a simple C Program?January 20, 2025

    This really answered my problem, thank you!

  5. sukre sugar where to buy usa on Python Arrays | Arrays in PythonJanuary 20, 2025

    Lovely just what I was looking for.Thanks to the author for taking his time on this one.

  • About Us
  • Contact Us
  • Privacy Policy
  • Terms and Conditions
  • Disclaimer
© 2025 Computer Science Knowledge • Built with GeneratePress