Podcast
Questions and Answers
Linux is a _____ software.
Linux is a _____ software.
Data items that are divided into sub items are called as ______.
Data items that are divided into sub items are called as ______.
In the declaration float *ptr;
, the data type of ptr
is _____ and the data type of the variable pointed to by ptr
is ______.
In the declaration float *ptr;
, the data type of ptr
is _____ and the data type of the variable pointed to by ptr
is ______.
The HTML tag used to write the definition list ______.
The HTML tag used to write the definition list ______.
Signup and view all the answers
What is Memory Management? What are the services provided under it?
What is Memory Management? What are the services provided under it?
Signup and view all the answers
What is a pointer in C++? Give suitable example.
What is a pointer in C++? Give suitable example.
Signup and view all the answers
Write advantages and disadvantages of HTML.
Write advantages and disadvantages of HTML.
Signup and view all the answers
What are Pointer Arrays? Explain giving an example.
What are Pointer Arrays? Explain giving an example.
Signup and view all the answers
What is traversing an Array? Give the algorithm for Traversing of Linear Array.
What is traversing an Array? Give the algorithm for Traversing of Linear Array.
Signup and view all the answers
What are different attributes of the body
tag in HTML?
What are different attributes of the body
tag in HTML?
Signup and view all the answers
What is a Class in C++? Explain the general form of the Class Declaration.
What is a Class in C++? Explain the general form of the Class Declaration.
Signup and view all the answers
What are the different methods by which a virus can infect other programs?
What are the different methods by which a virus can infect other programs?
Signup and view all the answers
Write two features of each of the following data structures: Record, Array, and Linked List.
Write two features of each of the following data structures: Record, Array, and Linked List.
Signup and view all the answers
Write a short note on inline function.
Write a short note on inline function.
Signup and view all the answers
What are COLSPAN
and ROWSPAN
attributes?
What are COLSPAN
and ROWSPAN
attributes?
Signup and view all the answers
Explain three types of control structures used for flow of control.
Explain three types of control structures used for flow of control.
Signup and view all the answers
Give the basic structure of an HTML program. State its advantages and disadvantages.
Give the basic structure of an HTML program. State its advantages and disadvantages.
Signup and view all the answers
What is a file system? List and explain types of file systems used in OS.
What is a file system? List and explain types of file systems used in OS.
Signup and view all the answers
Write the size in bytes of the following data types: float
, double
, short int
, unsigned int
, long double
, and char
.
Write the size in bytes of the following data types: float
, double
, short int
, unsigned int
, long double
, and char
.
Signup and view all the answers
What is an object? Describe how members of a class can be accessed using an object of that class.
What is an object? Describe how members of a class can be accessed using an object of that class.
Signup and view all the answers
What is process scheduling? Explain scheduling objectives.
What is process scheduling? Explain scheduling objectives.
Signup and view all the answers
Explain Bubble sort algorithm with suitable example.
Explain Bubble sort algorithm with suitable example.
Signup and view all the answers
Write a C++ program to accept a set of 10 numbers and print the numbers using pointers.
Write a C++ program to accept a set of 10 numbers and print the numbers using pointers.
Signup and view all the answers
Write a C++ program to accept a string from the user and reverse the string.
Write a C++ program to accept a string from the user and reverse the string.
Signup and view all the answers
Write HTML code for a webpage displaying the following table:
City
High
Low
Wing
Mumbai
33
24
West
Pune
34
25
South
Latur
32
20
South
Write HTML code for a webpage displaying the following table:
City | High | Low | Wing |
---|---|---|---|
Mumbai | 33 | 24 | West |
Pune | 34 | 25 | South |
Latur | 32 | 20 | South |
Signup and view all the answers
Write a program in C++ to read a line of text and count the number of words in a text.
Write a program in C++ to read a line of text and count the number of words in a text.
Signup and view all the answers
Write a program in C++ to find the sum of the first 100 natural numbers.
Write a program in C++ to find the sum of the first 100 natural numbers.
Signup and view all the answers
Write HTML code for the following table:
Ind
Eng
Yuvraj
Sehwag
Peterson
Bopara
IND Win I ODI by
387
238
183*
83
58
49
149
Write HTML code for the following table:
Ind | Eng | Yuvraj | Sehwag | Peterson | Bopara | IND Win I ODI by |
---|---|---|---|---|---|---|
387 | 238 | 183* | 83 | 58 | 49 | 149 |
Signup and view all the answers
Study Notes
Computer Science - I
- Linux is a public domain software.
- Data items divided into sub-items are called elementary items.
- In float *ptr declaration, the data type of ptr is float and the data type of the variable pointed to by ptr is also float.
Memory Management
- Memory management involves services provided to manage memory.
- A pointer in C++ is a variable that holds the memory address of another variable.
Pointer Arrays
- Pointer arrays are arrays of pointers.
Traversing an Array
- The process of accessing each element of an array one by one is array traversing. Algorithm exists to traverse arrays.
HTML Body Tag Attributes
- HTML body tags have attributes.
Classes
- Classes are used for object-oriented programming(OOP).
Virus Infection Methods
- Viruses can infect programs in various ways.
Data Structures
- Records, arrays, and linked lists are data structures.
Inline Functions
- Inline functions enhance code efficiency.
COLSPAN and ROWSPAN Attributes
- HTML attributes for controlling column and row spans in tables.
Control Structures
- Control structures like loops(for, while) and conditional statements(if/else) form the flow of control in most programs
HTML Program Structure
- The HTML program structure includes elements like , .
- Advantages and disadvantages of HTML programming are present.
Studying That Suits You
Use AI to generate personalized quizzes and flashcards to suit your learning preferences.
Related Documents
Description
This quiz covers essential topics in Computer Science I, including memory management, pointer arrays, data structures, and HTML body tag attributes. Test your understanding of these foundational concepts and their practical applications in programming and software development.