Answer Posted / rohit sah
A data structure is a way of organizing data that considers not only the items stored, but also their relationship to each other. Advance knowledge about the relationship between data items allows designing of efficient algorithms for the manipulation of data.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the purpose of 'register' keyword in c language?
What is the significance of scope resolution operator?
Process by which one bit pattern in to another by bit wise operation is?
What are the ways to a null pointer can use in c programming language?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
write an algorithm to display a square matrix.
What is "Duff's Device"?
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
Explain output of printf("Hello World"-'A'+'B'); ?
What type is sizeof?
can we change the default calling convention in c if yes than how.........?
Write a program to maintain student’s record. Record should
not be available to any unauthorized user. There are three
(3) categories of users. Each user has its own type. It
depends upon user’s type that which kind of operations user
can perform. Their types and options are mentioned below:
1. Admin
(Search Record [by Reg. No or Name], View All Records,
Insert New Record, Modify Existing Record)
2. Super Admin
(Search Record [by Reg. No or Name], View All Records,
Insert New Record, Modify Existing Record, Delete Single Record)
3. Guest
(Search Record [by Reg. No or Name], View All Records)
When first time program runs, it asks to create accounts.
Each user type has only 1 account (which means that there
can be maximum 3 accounts). In account creation, following
options are required:
Login Name: <6-10 alphabets long, should be unique>
Password: <6-10 alphabets long, should not display
characters when user type>
Confirm Password:
write a program to concatenation the string using switch case?
Explain what does a function declared as pascal do differently?
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none