1. Question:What are linked list? 

    Answer
    A linked list is composed of nodes that are connected with another. In C programming, linked lists are created using pointers. Using linked lists is one efficient way of utilizing memory for storage.






    1. Report
  2. Question:What is FIFO? 

    Answer
    In C programming, there is a data structure known as queue. In this structure, data is stored and accessed using FIFO format, or First-In-First-Out. A queue represents a line wherein the first data that was stored will be the first one that is accessible as well.






    1. Report
  3. Question:What are binary trees? 

    Answer
    Binary trees are actually an extension of the concept of linked lists. A binary tree has two pointers, a left one and a right one. Each side can further branch to form additional nodes, which each node having two pointers as well.






    1. Report
  4. Question:What is a program flowchart and how does it help in writing a program? 

    Answer
    A flowchart provides a visual representation of the step by step procedure towards solving a given problem. Flowcharts are made of symbols, with each symbol in the form of different shapes. Each shape may represent a particular entity within the entire program structure, such as a process, a condition, or even an input/output phase.






    1. Report
  5. Question:What is a newline escape sequence? 

    Answer
    A newline escape sequence is represented by the \n character. This is used to insert a new line when displaying data in the output screen. More spaces can be added by inserting more \n characters. For example, \n\n would insert two spaces. A newline escape sequence can be placed before the actual output expression or after.






    1. Report
Copyright © 2025. Powered by Intellect Software Ltd