Set - 2________________________________________1. The memory address o dịch - Set - 2________________________________________1. The memory address o Hindi làm thế nào để nói

Set - 2____________________________

Set - 2
________________________________________
1. The memory address of the first element of an array is called
a. floor address
b. foundation address
c. first address
d. base address
2. The memory address of fifth element of an array can be calculated by the formula
a. LOC(Array[5]=Base(Array)+w(5-lower bound), where w is the number of words per memory cell for the array
b. LOC(Array[5])=Base(Array[5])+(5-lower bound), where w is the number of words per memory cell for the array
c. LOC(Array[5])=Base(Array[4])+(5-Upper bound), where w is the number of words per memory cell for the array
d. None of above

________________________________________
3. Which of the following data structures are indexed structures?
a. linear arrays
b. linked lists
c. both of above
d. none of above

________________________________________
4. Which of the following is not the required condition for binary search algorithm?
a. The list must be sorted
b. there should be the direct access to the middle element in any sublist
c. There must be mechanism to delete and/or insert elements in list
d. none of above

________________________________________
5. Which of the following is not a limitation of binary search algorithm?
a. must use a sorted array
b. requirement of sorted array is expensive when a lot of insertion and deletions are needed
c. there must be a mechanism to access middle element directly
d. binary search algorithm is not efficient when the data elements are more than 1000.

________________________________________
6. Two dimensional arrays are also called
a. tables arrays
b. matrix arrays
c. both of above
d. none of above

________________________________________
7. A variable P is called pointer if
a. P contains the address of an element in DATA.
b. P points to the address of first element in DATA
c. P can store only memory addresses
d. P contain the DATA and the address of DATA

________________________________________
8. Which of the following data structure can't store the non-homogeneous data elements?
a. Arrays
b. Records
c. Pointers
d. None

________________________________________
9. Which of the following data structure store the homogeneous data elements?
a. Arrays
b. Records
c. Pointers
d. None

________________________________________
10. Each data item in a record may be a group item composed of sub-items; those items which are indecomposable are called
a. elementary items
b. atoms
c. scalars
d. all of above

________________________________________
11. The difference between linear array and a record is
a. An array is suitable for homogeneous data but hte data items in a record may have different data type
b. In a record, there may not be a natural ordering in opposed to linear array.
c. A record form a hierarchical structure but a lienear array does not
d. All of above

________________________________________
12. Which of the following statement is false?
a. Arrays are dense lists and static data structure
b. data elements in linked list need not be stored in adjecent space in memory
c. pointers store the next data element of a list
d. linked lists are collection of the nodes that contain information part and next pointer

________________________________________
13. Binary search algorithm can not be applied to
a. sorted linked list
b. sorted binary trees
c. sorted linear array
d. pointer array

________________________________________
14. When new data are to be inserted into a data structure, but there is no available space; this situation is usually called
a. underflow
b. overflow
c. housefull
d. saturated

________________________________________
15. The situation when in a linked list START=NULL is
a. underflow
b. overflow
c. housefull
d. saturated

________________________________________
16. Which of the following is two way list?
a. grounded header list
b. circular header list
c. linked list with header and trailer nodes
d. none of above

________________________________________
17. Which of the following name does not relate to stacks?
a. FIFO lists
b. LIFO list
c. Piles
d. Push-down lists

________________________________________
18. The term "push" and "pop" is related to the
a. array
b. lists
c. stacks
d. all of above

________________________________________
19. A data structure where elements can be added or removed at either end but not in the middle
a. Linked lists
b. Stacks
c. Queues
d. Deque

________________________________________
20. When inorder traversing a tree resulted E A C K F H D B G; the preorder traversal would return
a. FAEKCDBHG
b. FAEKCDHGB
c. EAFKHDCBG
d. FEAKDCHBG


Answers

1. The memory address of the first element of an array is called
d. base address

________________________________________
2. The memory address of fifth element of an array can be calculated by the formula
a. LOC(Array[5]=Base(Array)+w(5-lower bound), where w is the number of words per memory cell for the array

________________________________________
3. Which of the following data structures are indexed structures?
a. linear arrays

________________________________________
4. Which of the following is not the required condition for binary search algorithm?
c. There must be mechanism to delete and/or insert elements in list

________________________________________
5. Which of the following is not a limitation of binary search algorithm?
d. binary search algorithm is not efficient when the data elements are more than 1000.

________________________________________
6. Two dimensional arrays are also called
c. both of above

________________________________________
7. A variable P is called pointer if
a. P contains the address of an element in DATA.

________________________________________
8. Which of the following data structure can't store the non-homogeneous data elements?
a. Arrays

________________________________________
9. Which of the following data structure store the non-homogeneous data elements?
b. Records

________________________________________
10. Each data item in a record may be a group item composed of sub-items; those items which are indecomposable are called
d. all of above

________________________________________
11. The difference between linear array and a record is
d. All of above

________________________________________
12. Which of the following statement is false?
c. pointers store the next data element of a list

________________________________________
13. Binary search algorithm can not be applied to
a. sorted linked list

________________________________________
14. When new data are to be inserted into a data structure, but there is no available space; this situation is usually called
b. overflow

________________________________________
15. The situation when in a linked list START=NULL is
a. underflow

________________________________________
16. Which of the following is two way list?
d. none of above

________________________________________
17. Which of the following name does not relate to stacks?
a. FIFO lists

________________________________________
18. The term "push" and "pop" is related to the
c. stacks

________________________________________
19. A data structure where elements can be added or removed at either end but not in the middle
d. Deque

________________________________________
20. When inorder traversing a tree resulted E A C K F H D B G; the preorder traversal would return
b. FAEKCDHGB

0/5000
Từ: -
Sang: -
Kết quả (Hindi) 1: [Sao chép]
Sao chép!
Set - 2________________________________________1. The memory address of the first element of an array is calleda. floor addressb. foundation addressc. first addressd. base address2. The memory address of fifth element of an array can be calculated by the formulaa. LOC(Array[5]=Base(Array)+w(5-lower bound), where w is the number of words per memory cell for the arrayb. LOC(Array[5])=Base(Array[5])+(5-lower bound), where w is the number of words per memory cell for the arrayc. LOC(Array[5])=Base(Array[4])+(5-Upper bound), where w is the number of words per memory cell for the arrayd. None of above ________________________________________3. Which of the following data structures are indexed structures?a. linear arraysb. linked listsc. both of aboved. none of above ________________________________________4. Which of the following is not the required condition for binary search algorithm?a. The list must be sortedb. there should be the direct access to the middle element in any sublistc. There must be mechanism to delete and/or insert elements in listd. none of above ________________________________________5. Which of the following is not a limitation of binary search algorithm?a. must use a sorted arrayb. requirement of sorted array is expensive when a lot of insertion and deletions are neededc. there must be a mechanism to access middle element directlyd. binary search algorithm is not efficient when the data elements are more than 1000. ________________________________________6. Two dimensional arrays are also calleda. tables arraysb. matrix arraysc. both of aboved. none of above ________________________________________7. A variable P is called pointer ifa. P contains the address of an element in DATA.b. P points to the address of first element in DATAc. P can store only memory addressesd. P contain the DATA and the address of DATA ________________________________________8. Which of the following data structure can't store the non-homogeneous data elements?a. Arraysb. Recordsc. Pointersd. None ________________________________________9. Which of the following data structure store the homogeneous data elements?a. Arraysb. Recordsc. Pointersd. None ________________________________________10. Each data item in a record may be a group item composed of sub-items; those items which are indecomposable are calleda. elementary itemsb. atomsc. scalarsd. all of above ________________________________________11. The difference between linear array and a record isa. An array is suitable for homogeneous data but hte data items in a record may have different data typeb. In a record, there may not be a natural ordering in opposed to linear array.c. A record form a hierarchical structure but a lienear array does notd. All of above ________________________________________12. Which of the following statement is false?a. Arrays are dense lists and static data structure b. data elements in linked list need not be stored in adjecent space in memoryc. pointers store the next data element of a listd. linked lists are collection of the nodes that contain information part and next pointer ________________________________________13. Binary search algorithm can not be applied toa. sorted linked listb. sorted binary treesc. sorted linear arrayd. pointer array ________________________________________14. When new data are to be inserted into a data structure, but there is no available space; this situation is usually calleda. underflowb. overflowc. housefulld. saturated ________________________________________15. The situation when in a linked list START=NULL isa. underflowb. overflowc. housefulld. saturated ________________________________________16. Which of the following is two way list?a. grounded header listb. circular header listc. linked list with header and trailer nodesd. none of above ________________________________________17. Which of the following name does not relate to stacks?a. FIFO listsb. LIFO listc. Pilesd. Push-down lists ________________________________________18. The term "push" and "pop" is related to thea. arrayb. listsc. stacksd. all of above ________________________________________19. A data structure where elements can be added or removed at either end but not in the middlea. Linked listsb. Stacksc. Queuesd. Deque ________________________________________20. When inorder traversing a tree resulted E A C K F H D B G; the preorder traversal would returna. FAEKCDBHGb. FAEKCDHGBc. EAFKHDCBGd. FEAKDCHBGAnswers1. The memory address of the first element of an array is calledd. base address ________________________________________2. The memory address of fifth element of an array can be calculated by the formulaa. LOC(Array[5]=Base(Array)+w(5-lower bound), where w is the number of words per memory cell for the array ________________________________________3. Which of the following data structures are indexed structures?a. linear arrays ________________________________________4. Which of the following is not the required condition for binary search algorithm?c. There must be mechanism to delete and/or insert elements in list ________________________________________5. Which of the following is not a limitation of binary search algorithm?d. binary search algorithm is not efficient when the data elements are more than 1000. ________________________________________6. Two dimensional arrays are also calledc. both of above ________________________________________7. A variable P is called pointer ifa. P contains the address of an element in DATA. ________________________________________8. Which of the following data structure can't store the non-homogeneous data elements?a. Arrays ________________________________________9. Which of the following data structure store the non-homogeneous data elements?b. Records ________________________________________10. Each data item in a record may be a group item composed of sub-items; those items which are indecomposable are calledd. all of above ________________________________________11. The difference between linear array and a record isd. All of above ________________________________________12. Which of the following statement is false?c. pointers store the next data element of a list ________________________________________13. Binary search algorithm can not be applied toa. sorted linked list ________________________________________14. When new data are to be inserted into a data structure, but there is no available space; this situation is usually calledb. overflow ________________________________________15. The situation when in a linked list START=NULL isa. underflow ________________________________________16. Which of the following is two way list?d. none of above ________________________________________17. Which of the following name does not relate to stacks?a. FIFO lists ________________________________________18. The term "push" and "pop" is related to thec. stacks ________________________________________19. A data structure where elements can be added or removed at either end but not in the middled. Deque ________________________________________20. When inorder traversing a tree resulted E A C K F H D B G; the preorder traversal would returnb. FAEKCDHGB
đang được dịch, vui lòng đợi..
Kết quả (Hindi) 2:[Sao chép]
Sao chép!
सेट - 2
________________________________________
1। एक सरणी के पहले तत्व की स्मृति पता कहा जाता है
एक। मंजिल का पता
ख। नींव का पता
सी। पहले पता
घ। आधार पता
2। एक सरणी के पांचवें तत्व की स्मृति पता सूत्र द्वारा गणना की जा सकती
है। नियंत्रण रेखा (सरणी [5] = आधार डब्ल्यू सरणी के लिए स्मृति सेल प्रति शब्दों की संख्या है जहां + (ऐरे) डब्ल्यू (बाध्य 5-कम),
बी। नियंत्रण रेखा (सरणी [5]) = बेस (सरणी [5]) (+ बाध्य-कम 5), डब्ल्यू सरणी के लिए स्मृति सेल प्रति शब्दों की संख्या है, जहां
सी। नियंत्रण रेखा (सरणी [5]) = बेस (सरणी [4]) + (5-ऊपरी सीमा), w है जहां सरणी के लिए स्मृति सेल प्रति शब्दों की संख्या
से ऊपर की घ। कोई भी ________________________________________ संरचनाओं अनुक्रमित रहे हैं निम्नलिखित डेटा संरचनाओं में से कौन सा 3.? एक। रेखीय सरणियों बी। लिंक सूचियों सी। से ऊपर के दोनों ऊपर की घ। कोई भी ________________________________________ 4. में से कौन सा निम्नलिखित द्विआधारी खोज एल्गोरिथ्म के लिए आवश्यक शर्त नहीं है? एक। सूची हल किया जाना चाहिए ख। किसी भी sublist में मध्यम तत्व के लिए सीधी पहुँच नहीं होनी चाहिए ग। तंत्र को नष्ट करना और / या सूची में तत्वों को सम्मिलित करने के लिए होना चाहिए घ । ऊपर से कोई भी ________________________________________ द्विआधारी खोज एल्गोरिथ्म की एक सीमा नहीं है निम्न में से कौन 5.? एक। एक सॉर्ट सरणी का उपयोग करना चाहिए ख। एक प्रविष्टि की एक बहुत है और विलोपन की जरूरत है जब सॉर्ट सरणी की आवश्यकता महंगा है ग। बीच तत्व सीधे का उपयोग करने के लिए एक तंत्र होना चाहिए घ। डेटा तत्वों से अधिक 1000 के हैं, जब द्विआधारी खोज एल्गोरिथ्म कुशल नहीं है ________________________________________ 6। दो आयामी arrays भी कहा जाता है एक। टेबल सरणियों बी। मैट्रिक्स सरणियों सी। ऊपर के दोनों घ। ऊपर से कोई भी ________________________________________ 7। एक चर पी सूचक है, तो कहा जाता है एक। पी आंकड़े। में एक तत्व का पता होता है ख। पी डेटा में पहला तत्व का पता करने के लिए अंक ग। पी केवल स्मृति पते स्टोर कर सकते हैं घ। पी डेटा और डेटा का पता हो ________________________________________ 8। निम्न डेटा संरचना में से कौन सा गैर सजातीय डेटा तत्वों की दुकान नहीं कर सकते? एक। सारणियों बी। रिकॉर्ड्स सी। सूचक घ। कोई नहीं ________________________________________ 9। निम्न डेटा संरचना की दुकान में से कौन सा सजातीय डेटा तत्वों? एक। सारणियों बी। रिकॉर्ड्स सी। सूचक घ। कोई नहीं ________________________________________ 10। एक रिकॉर्ड में प्रत्येक डेटा आइटम उप आइटम से बना एक समूह आइटम हो सकता है; indecomposable हैं जो उन वस्तुओं को कहा जाता है एक। प्राथमिक आइटम बी। परमाणुओं सी। Scalars घ। ऊपर के सभी ________________________________________ 11। रैखिक सरणी और एक रिकार्ड के बीच अंतर है एक। एक रिकार्ड में सजातीय डेटा लेकिन hte डेटा आइटम अलग डेटा प्रकार हो सकता है के लिए एक सरणी उपयुक्त है ख। एक रिकॉर्ड में, सरणी रैखिक करने का विरोध किया। में एक प्राकृतिक आदेश देने नहीं हो सकता सी। एक रिकॉर्ड एक श्रेणीबद्ध संरचना के रूप में, लेकिन एक lienear सरणी नहीं है घ। उपरोक्त सभी ________________________________________ 12। निम्नलिखित बयान से कौन सा गलत है? एक। सारणियों घने सूचियों और स्थिर डेटा संरचना कर रहे हैं ख। लिंक सूची में डेटा तत्वों स्मृति में adjecent अंतरिक्ष में संग्रहित होने की जरूरत नहीं सी। संकेत एक सूची के अगले डेटा तत्व की दुकान घ। लिंक सूचियों जानकारी हिस्सा है और अगले सूचक होते हैं कि नोड्स के संग्रह कर रहे हैं ________________________________________ 13। द्विआधारी खोज एल्गोरिथ्म के लिए लागू नहीं किया जा सकता है। लिंक्ड सूची हल बी। छाँटे गए द्विआधारी पेड़ ग। सॉर्ट रैखिक सरणी घ। सूचक सरणी ________________________________________ 14। जब नए डेटा एक डेटा संरचना में डाला जा रहे हैं, लेकिन कोई उपलब्ध स्थान नहीं है; इस स्थिति में आम तौर पर कहा जाता है एक। अधःप्रवाह बी। अतिप्रवाह सी। हाउसफुल घ। संतृप्त ________________________________________ 15। स्थिति एक लिंक सूची में शुरू = नल है जब एक। अधःप्रवाह बी। अतिप्रवाह सी। हाउसफुल घ। संतृप्त ________________________________________ 16। निम्न में से कौन सा दो तरह की सूची? है एक। जमीन हेडर सूची बी। परिपत्र हेडर सूची ग। शीर्षक और ट्रेलर नोड्स के साथ लिंक सूची घ। ऊपर से कोई भी ________________________________________ 17। निम्न नाम से कौन? ढेर से संबंधित नहीं है एक। फीफो सूचीबद्ध करता है ख। LIFO सूची ग। पाइल्स घ। पुश-डाउन सूचियों ________________________________________ 18। शब्द "धक्का" और "पॉप" से संबंधित है एक। सरणी बी। सूचियों सी। ढेर घ। ऊपर के सभी ________________________________________ 19। तत्वों से नहीं बल्कि बीच में जोड़ा या अंत में या तो हटाया जा सकता है, जहां एक डेटा संरचना एक। लिंक सूचियों बी। ढेर सी। कतारों घ। Deque ________________________________________ 20। जब एक पेड़ से गुजर EACKFHDBG हुई inorder; अग्रिम आदेश चंक्रमण लौटेंगे एक। FAEKCDBHG बी। FAEKCDHGB सी। EAFKHDCBG घ। FEAKDCHBG जवाब 1। एक सरणी के पहले तत्व की स्मृति पता कहा जाता है घ। आधार पता ________________________________________ 2। एक सरणी के पांचवें तत्व की स्मृति पता सूत्र द्वारा गणना की जा सकती है। नियंत्रण रेखा (सरणी [5] = आधार डब्ल्यू सरणी के लिए स्मृति सेल प्रति शब्दों की संख्या है जहां + (ऐरे) डब्ल्यू (बाध्य 5-कम), ________________________________________ संरचनाओं अनुक्रमित रहे हैं निम्नलिखित डेटा संरचनाओं में से कौन सा 3.? एक। रेखीय सरणियों ________________________________________ द्विआधारी खोज एल्गोरिथ्म के लिए? आवश्यक शर्त नहीं है निम्न में से कौन 4. सी। तंत्र को नष्ट करना और / या सूची में तत्वों को सम्मिलित करने के लिए होना चाहिए ________________________________________ 5. द्विआधारी खोज एल्गोरिथ्म की एक सीमा नहीं है निम्न में से कौन? घ। डेटा तत्वों को और अधिक 1000 की तुलना में कर रहे हैं जब द्विआधारी खोज एल्गोरिथ्म कुशल नहीं है ________________________________________ 6. दो आयामी arrays भी कहा जाता है ग। उपरोक्त दोनों की ________________________________________ 7. एक चर पी सूचक है, तो कहा जाता है एक। पी डाटा में एक तत्व का पता होता है । ________________________________________ गैर सजातीय डेटा तत्वों की दुकान नहीं कर सकते हैं निम्नलिखित डेटा संरचना में से कौन सा 8.? एक। सारणियों ________________________________________ 9। निम्न डेटा संरचना की दुकान में से कौन सा गैर सजातीय डेटा तत्वों? बी। रिकॉर्ड्स ________________________________________ 10। एक रिकॉर्ड में प्रत्येक डेटा आइटम उप आइटम से बना एक समूह आइटम हो सकता है; indecomposable हैं जो उन वस्तुओं को कहा जाता है घ। ऊपर के सभी ________________________________________ 11। रैखिक सरणी और एक रिकार्ड के बीच का अंतर है घ। उपरोक्त सभी ________________________________________ 12। निम्नलिखित बयान से कौन? गलत है ग। संकेत एक सूची के अगले डेटा तत्व की दुकान ________________________________________ 13। द्विआधारी खोज एल्गोरिथ्म के लिए लागू नहीं किया जा सकता है। छाँटे गए लिंक सूची ________________________________________ 14। जब नए डेटा एक डेटा संरचना में डाला जा रहे हैं, लेकिन कोई उपलब्ध स्थान नहीं है; इस स्थिति में आम तौर पर कहा जाता है ख। अतिप्रवाह ________________________________________ 15। स्थिति एक लिंक सूची में शुरू = नल है जब एक। अधःप्रवाह ________________________________________ 16। इनमें से कौन सी दो तरह की सूची? है घ। ऊपर से कोई भी ________________________________________ 17। निम्न नाम से कौन? ढेर से संबंधित नहीं है एक। फीफो सूचीबद्ध करता ________________________________________ 18। शब्द "धक्का" और "पॉप" से संबंधित है ग। ढेर ________________________________________ 19। तत्वों से नहीं बल्कि बीच में जोड़ा या अंत में या तो हटाया जा सकता है, जहां एक डेटा संरचना घ। Deque ________________________________________ 20। जब एक पेड़ से गुजर EACKFHDBG हुई inorder; अग्रिम आदेश चंक्रमण लौटेंगे बी। FAEKCDHGB

















































































































































































































đang được dịch, vui lòng đợi..
Kết quả (Hindi) 3:[Sao chép]
Sao chép!
सेट करें - 2
___________________________________________________________________________________________________________________________________________________________________________ 1. त प्रथम श्रेणी की स्मृति को पता है। एक मंजिल पर तत्व काफी सोच-समझकर ये काम सी.बी. की नींव पता पहले पता पते पर डी. आधार पर पता 2. पांचवीं तत्व की स्मृति का पता हो सकता है यह फार्मूला गणना द्वारा संख्य्आ नियंत्रण रेखा के आधार(5)(ऐरे[5]।(ब=ऐरे, जहां डब्ल्यू की संख्या कम समयबद्ध) कोशिका के अनुसार बी. आमापन पर शब्द याद
đang được dịch, vui lòng đợi..
 
Các ngôn ngữ khác
Hỗ trợ công cụ dịch thuật: Albania, Amharic, Anh, Armenia, Azerbaijan, Ba Lan, Ba Tư, Bantu, Basque, Belarus, Bengal, Bosnia, Bulgaria, Bồ Đào Nha, Catalan, Cebuano, Chichewa, Corsi, Creole (Haiti), Croatia, Do Thái, Estonia, Filipino, Frisia, Gael Scotland, Galicia, George, Gujarat, Hausa, Hawaii, Hindi, Hmong, Hungary, Hy Lạp, Hà Lan, Hà Lan (Nam Phi), Hàn, Iceland, Igbo, Ireland, Java, Kannada, Kazakh, Khmer, Kinyarwanda, Klingon, Kurd, Kyrgyz, Latinh, Latvia, Litva, Luxembourg, Lào, Macedonia, Malagasy, Malayalam, Malta, Maori, Marathi, Myanmar, Mã Lai, Mông Cổ, Na Uy, Nepal, Nga, Nhật, Odia (Oriya), Pashto, Pháp, Phát hiện ngôn ngữ, Phần Lan, Punjab, Quốc tế ngữ, Rumani, Samoa, Serbia, Sesotho, Shona, Sindhi, Sinhala, Slovak, Slovenia, Somali, Sunda, Swahili, Séc, Tajik, Tamil, Tatar, Telugu, Thái, Thổ Nhĩ Kỳ, Thụy Điển, Tiếng Indonesia, Tiếng Ý, Trung, Trung (Phồn thể), Turkmen, Tây Ban Nha, Ukraina, Urdu, Uyghur, Uzbek, Việt, Xứ Wales, Yiddish, Yoruba, Zulu, Đan Mạch, Đức, Ả Rập, dịch ngôn ngữ.

Copyright ©2024 I Love Translation. All reserved.

E-mail: