<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;Dk4CQHo8eyp7ImA9WhRaFEw.&quot;"><id>tag:blogger.com,1999:blog-2766243001280496875</id><updated>2012-02-16T23:26:01.473+05:30</updated><category term="java thread" /><category term="Linux / Unix" /><category term="Remember this" /><category term="transmission cable" /><category term="javabeans" /><category term="Java Technology" /><category term="j2ee interview quesitons" /><category term="php" /><category term="DBMS / PL / SQL" /><category term="Data Communication" /><category term="Software Engg." /><category term="multithreading" /><category term="jsp" /><category term=".NET Technology" /><category term="IT Fundamental" /><category term="threading" /><category term="CSMA" /><category term="Micro Processor" /><category term="Data Structure" /><category term="Computer Network" /><category term="advance java" /><category term="container" /><category term="Multiple Choice" /><category term="Technical Interview" /><category term="Teckaptipedia" /><category term="java 2 enterprise" /><category term="servlet" /><category term="Miscellaneous" /><category term="core java" /><category term="C / C++ / OOPS" /><category term="Operating System" /><category term="Aptipedia Blog" /><category term="java server pages" /><title>Aptipedia Tecknowledgies</title><subtitle type="html">Technical Interview Question, Objective Type Question, Multiple Choice Question, Computer Aptitude Question, Information Technology Question</subtitle><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://aptipedia.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://aptipedia.blogspot.com/" /><link rel="next" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default?start-index=26&amp;max-results=25&amp;redirect=false&amp;v=2" /><author><name>Vijay Vishwakarma</name><uri>http://www.blogger.com/profile/01477230667424407281</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://3.bp.blogspot.com/_dheBdt7i2eE/SsrrsB1K_dI/AAAAAAAAAB4/yDL9KQVLd78/S220/vijay.JPG" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>84</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/blogspot/aptipedia" /><feedburner:info uri="blogspot/aptipedia" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry gd:etag="W/&quot;CkQGRXs_eSp7ImA9WhdXE04.&quot;"><id>tag:blogger.com,1999:blog-2766243001280496875.post-493240233926068430</id><published>2011-05-10T18:13:00.001+05:30</published><updated>2011-08-26T09:15:24.541+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-08-26T09:15:24.541+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Software Engg." /><title>Software Engineering Questions</title><content type="html">&lt;b&gt;1. How might a project policy that requires all programming staff to produce 50 lines of documentation per 1000 LOC prove inappropriate or counter-productive? &lt;/b&gt;&lt;br /&gt;
&lt;b&gt;Ans :&lt;/b&gt; Provide 5 examples to support your position and limit your answer to 500 words or less. &lt;br /&gt;
This policy could reward inappropriate behaviour such as&lt;br /&gt;
1. a programmer that is very careful to produce self-documenting code and thus may feel that he/she does not need to add extra documentation may be discouraged from continuing to produce self-documenting code.&lt;br /&gt;
2. mandating a specific number of documentation lines per 1000 LOC does not take into account that there are differences in the amount of documentation needed for different types of code - very complex algorithms may need more and standard business type apps may take less and rewarding them in the same way does not impress upon the programmers when documentation is appropriate and necessary.&lt;br /&gt;
3. mandating the amount and not the quality does not reward the programmer that produces clear, concise comments as opposed to the programmer that produces lots of rambling, confusing documentation.&lt;br /&gt;
4. to connect the code to the requirements, specification and design documents, the comments may in fact be very terse since they just reference these documents and thus once again this appropriate behaviour may be inadvertently discouraged.&lt;br /&gt;
5. this policy does not address the case where programmers are extending classes or modifying existing codes - there may not be a clear way to count either the real LOC or the appropriate number of comments since these are both influenced by previous work. If the current programmer is punished for the inappropriate behaviour of others this will taint the programmer's view of extending or using other's code.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;2. Compute the function point count for the system which is described in the following informal requirements statement. Clearly state all assumptions that you make. &lt;/b&gt;&lt;br /&gt;
&lt;b&gt;Ans : &lt;/b&gt;The system processes various commands from an operator of a chemical plant. These commands include:&lt;br /&gt;
• calculate and display the average temperature of a specific reactor over a 24-hour period&lt;br /&gt;
• calculate and display the average pressure in a specific reactor over a 24-hour period&lt;br /&gt;
• calculate and display a summary of the average temperatures and pressures in a specific reactor over a given time period (where the time period is greater than 1 day)&lt;br /&gt;
The operator can also send the results to an electronic bulletin board.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;3. Develop 4 different definitions for LOC that are most appropriate for the following purposes:&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;1. maintainability&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;2. testability&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;3. system efficiency&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;4. programmer efficiency&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;Justify your definitions and test them out on the code you and your partner produced for any of the pair programming exercises. &lt;/b&gt;&lt;br /&gt;
&lt;b&gt;Ans :&lt;/b&gt; • maintainability&lt;br /&gt;
o For maintainability, one should reward behaviour that produces well-documented code that is neither too terse or too verbose. To this end, LOC should be divided into lines of documentation, total number of LOC, and lines of executable code. If there are many lines of executable code versus total LOC then this is probably complex code that should be very well documented and thus the number of documentation lines can be evaluated with this in mind.&lt;br /&gt;
• testability&lt;br /&gt;
o For testability, the most important LOC feature is the number of executable lines since this will give you an idea of the complexity of the code and thus the quantity of testing that will be needed. If number of executable lines can be further divided into number of "control" lines (if-then-else, switch, etc) then this measure of complexity and need for tests will be further enhanced.&lt;br /&gt;
• system efficiency&lt;br /&gt;
o For system efficiency, the most important LOC features are lines of execution versus lines of non-execution that are not comment lines. A large number of non-execution lines may be an indication of lots of memory allocations - this might be a sign of possible system efficiency problems - not guaranteed to be but worth a look.&lt;br /&gt;
• programmer efficiency&lt;br /&gt;
o For programmer efficiency, the LOC features to compare would be the ratio between executable lines, non-executable lines and comment lines. This should be in balance so that one does not dominant the others. Once again this is just a way to flag if a programmer has a distinctive propensity to be too verbose or too terse.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;4. Compare the measurement of program size in the case of traditional procedural programming languages and in the case of object-oriented languages. Construct your answer in the following way:&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;• briefly describe how size is measured in procedural language programs&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;• briefly describe how size is measured in object-oriented language programs&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;• describe the similarities&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;• describe the differences&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;Limit your answer to 500 words. &lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;5. Develop a project policy statement that uses lines of code and the quality metrics of your choice (i.e. equations that relate LOC to elements of quality such as productivity, maintainability, etc.) to motivate and reward team member&lt;/b&gt;s. &lt;br /&gt;
&lt;b&gt;Ans :&lt;/b&gt; Provide 4 examples to support your policy decisions and limit your answer to 100 words or less.&lt;br /&gt;
Policy: To produce extensible/reusable code, programmers will be advised to produce code that has the following properties:&lt;br /&gt;
• each logical segment of code (e.g. class, method, etc) will have a ratio of lines of documentation to lines of code of at least 1:10&lt;br /&gt;
• all logical segment of code should be of a similar size (+- 20%) with regards LOC&lt;br /&gt;
This policy will have the following effects:&lt;br /&gt;
1. encourage documentation but not too much documentation&lt;br /&gt;
2. encourage programmers to consider the size of their classes and methods and thus to review their design choices and code properties such as high cohesion and low coupling&lt;br /&gt;
3. since this policy will probably result in code that is highly compartmentalized and well designed, it will be easier to reuse&lt;br /&gt;
4. since each module will be appropriately documented this should also make reuse and extending more likely&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;6. Assume that you're the manager of a small project. What baselines would you define for the project and how would you control them?&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;Ans :&lt;/b&gt; A baseline is a software configuration management concept that helps us to control change without seriously impeding justifiable change. The baselines that I will define for the project are as under:&lt;br /&gt;
• Schedule baseline&lt;br /&gt;
• Cost baseline&lt;br /&gt;
• Scope baseline&lt;br /&gt;
•  Development baseline&lt;br /&gt;
•  Source code&lt;br /&gt;
•  Test cases&lt;br /&gt;
•  Design specification&lt;br /&gt;
• System specification&lt;br /&gt;
• Software requirements&lt;br /&gt;
As a project manager, I will ensure that all the baselines are being met accordingly and the software project is proceeding as desired. Software schedule will be monitored throughout the software development, and in case of any deficiencies, appropriate solution will be figured out. Cost is also a baseline for project. It can only be met in case the software requirements are easily understood and are complete. Source code needs also be checked through the development process and the bugs that are found will be fixed at appropriate time in order to deliver good quality product to end users.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;2. What is the difference between an SCM audit and a formal technical review?&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;Answer.&lt;/b&gt;&lt;br /&gt;
1st version of the answer:&lt;br /&gt;
SCM Audit:&lt;br /&gt;
A software configuration audit complements the formal technical review by assessing aconfiguration object for characteristics that are generally not considered during review.&lt;br /&gt;
Formal Technical Review:&lt;br /&gt;
The formal technical review focuses on the technical correctness of the configuration object thathas been modified. The reviewers assess the SCI to determine consistency with other SCIs,omissions, or potential side effects. A formal technical review is the most effective filter from aquality assurance standpoint. Conducted by software engineers for software engineers, the FTRis an effective means for improving software quality.&lt;br /&gt;
No, the functions of SCM Audit and Formal Technical Review cannot be folded into one reviewbecause of the fact.&lt;br /&gt;
Formal Technical Reviews are used for improving software quality, whereas softwareconfiguration management audit is usually used to answer the questions that are indirectlyrelated to software to achieve the desired quality. For example, we can perform formal technicalreviews for coding, testing, debugging, etc., as these are directly related to the quality of thesoftware, however, for SCM Audit, we will answer the questions which are not directly related tosoftware quality rather indirectly. Some questions could be...&lt;br /&gt;
• Has the change specified in the ECO been made? &lt;br /&gt;
• Have any additional modifications beenincorporated?&lt;br /&gt;
• Has a formal technical review been conducted to assess technical correctness?&lt;br /&gt;
• Has the software process been followed and have software engineering standards beenproperly applied?&lt;br /&gt;
• Has the change been "highlighted" in the SCI? &lt;br /&gt;
• Have the change date and change authorbeen specified? &lt;br /&gt;
• Do the attributes of the configuration object reflect the change?&lt;br /&gt;
• Have SCM procedures for noting the change, recording it, and reporting it beenfollowed?&lt;br /&gt;
• Have all related SCIs been properly updated?&lt;br /&gt;
• Besides above, in some cases questions are asked as part of a formal technical review. However,when SCM is a formal activity, the SCM audit is conducted separately by the quality assurancegroup.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;a href='http://aptipedia.blogspot.com/'&gt;&lt;b&gt;Aptipedia Tecknowledgies&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://bioinfosys.blogspot.com/'&gt;&lt;b&gt;Bio-informatics System&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://clickitworld.blogspot.com/'&gt;&lt;b&gt;Click-IT-World SEO&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://ecomatter.blogspot.com/'&gt;&lt;b&gt;Ecomatter-Save the Earth&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://www.indiastudychannel.com/r/vijaykrvishwakarma.aspx'&gt;Vijay Kumar Vishwakarma&lt;/a&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2766243001280496875-493240233926068430?l=aptipedia.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/pQHwTrYedg0aw39zWxX0fpas9OY/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/pQHwTrYedg0aw39zWxX0fpas9OY/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/pQHwTrYedg0aw39zWxX0fpas9OY/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/pQHwTrYedg0aw39zWxX0fpas9OY/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=nh_aqwTv5RU:KsyDAnY1QTI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=nh_aqwTv5RU:KsyDAnY1QTI:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/aptipedia/~4/nh_aqwTv5RU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://aptipedia.blogspot.com/feeds/493240233926068430/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://aptipedia.blogspot.com/2011/05/software-engineering-questions.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/493240233926068430?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/493240233926068430?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/aptipedia/~3/nh_aqwTv5RU/software-engineering-questions.html" title="Software Engineering Questions" /><author><name>Vijay Vishwakarma</name><uri>http://www.blogger.com/profile/09057543518085257619</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://4.bp.blogspot.com/_uDMQ1-TasRI/S3GH0MbMZBI/AAAAAAAAAIw/UlDqZQBKXUY/S220/VIJAY+KUMAR+VISHWAKARMA.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://aptipedia.blogspot.com/2011/05/software-engineering-questions.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkACRXgzeSp7ImA9WhZSFks.&quot;"><id>tag:blogger.com,1999:blog-2766243001280496875.post-7638151709969286886</id><published>2011-04-01T19:02:00.000+05:30</published><updated>2011-04-01T19:02:44.681+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-04-01T19:02:44.681+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Computer Network" /><category scheme="http://www.blogger.com/atom/ns#" term="CSMA" /><category scheme="http://www.blogger.com/atom/ns#" term="transmission cable" /><title>Computer Network Questions and Answers</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;table&gt;&lt;tbody&gt;
&lt;tr&gt; &lt;td&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8537332319263609";
/* 336x280, created 7/4/10 */
google_ad_slot = "9806425052";
google_ad_width = 336;
google_ad_height = 280;
//--&gt;
&lt;/script&gt; &lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt; &lt;/td&gt; &lt;td&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8537332319263609";
/* 336x280, created 7/4/10 */
google_ad_slot = "4165684471";
google_ad_width = 336;
google_ad_height = 280;
//--&gt;
&lt;/script&gt; &lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt; &lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;b&gt;Q-1 What are the goals in mind of IEEE 802 committee?&lt;/b&gt;&lt;br /&gt;
Ans: IEEE 802 committee has few goals in mind, namely&lt;br /&gt;
–To promote compatibility&lt;br /&gt;
–Implementation with minimum efforts&lt;br /&gt;
–Accommodate diverse applications&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Q-2. List the functions performed by the physical layer of 802.3 standard?&lt;/b&gt;&lt;br /&gt;
Ans. Functions of physical layer are:&lt;br /&gt;
i) Data encoding/decoding (To facilitate synchronization and efficient transfer of signal through the medium).&lt;br /&gt;
ii) Collision detection (It detects at the transmit side)&lt;br /&gt;
iii) Carrier sensing (Channel access senses a carrier on the channel at both the transmit and receive sides)&lt;br /&gt;
iv) Transmit/receive the packets (Frame transmitted to all stations connected to the channel)&lt;br /&gt;
v) Topology and medium used (Mediums are co-axial cable, twisted pair and fiber optic cable)&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Q-3. Why do you require a limit on the minimum size of Ethernet frame?&lt;/b&gt;&lt;br /&gt;
Ans. To detect collision, it is essential that a sender continue sending a frame and at the same time receives another frame sent by another station. Considering maximum delay with five Ethernet segments in cascade, the size of frame has been found to be 64 bytes such that the above condition is satisfied.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Q-4. What are the different types of cabling supported by Ethernet standard?&lt;/b&gt;&lt;br /&gt;
Ans. Types of cabling are:&lt;br /&gt;
i) 10 BASE 5 - Maximum cable length is 500 meters using 4” diameter coaxial cable.&lt;br /&gt;
ii) 10 BASE 2 - Maximum cable length is 185 meters using 0.25” diameter CATV cable.&lt;br /&gt;
iii) 10 BASE T - Maximum cable length is 100 meters using twisted-pair cable (CAT-3 UTP).&lt;br /&gt;
iv) 10 BASE FL - Maximum cable length is 2 Km using multimode fiber optic cable (125/62.5 micrometer).&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Q-5. Explain the basic difference between IEEE 802.3 and switched Ethernet, as far as implementation is concerned.&lt;/b&gt;&lt;br /&gt;
Ans: In Ethernet (IEEE 802.3) the topology, though physically is start but logically is BUS. i.e. the collision domain of all the nodes in a LAN is common. In this situation only one frame can send the frame, if more than one station sends the frame, there is a collision.&lt;br /&gt;
In Switched Ethernet, this collision domain is separated. Hub is replaced by a switch, a device that can recognize the destination address and can route the frame to the port to which the destination station is connected, the rest of the media is not involved in the transmission process. The switch can receive another frame from another station at the same time and can route this frame to its own final destination.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Q-6. Explain the two techniques for implementing Ethernet switches.&lt;/b&gt;&lt;br /&gt;
Ans: There are two techniques used in the implementation of Ethernet switches: store-and-forward and cut-through. In the first case, the entire frame is captured at the incoming port, stored in the switch’s memory, and after an address lookup to determine the LAN destination port, forwarded to the appropriate port. The lookup table is automatically built up. On the other hand, a cut-through switch begins to transmit the frame to the destination port as soon as it decodes the destination address from the frame header.&lt;br /&gt;
Store-and-forward approach provides a greater level of error detection because damaged frames are not forwarded to the destination port. But, it introduces longer delay of about 1.2 msec for forwarding a frame and suffers from the chance of loosing data due to reliance on buffer memory. The cut-through switches, on the other hand, has reduced latency but has higher switch cost.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Q-7. What are the different categories of Fast Ethernet?&lt;/b&gt;&lt;br /&gt;
Ans: IEEE has designed two categories of Fast Ethernet: 100Base-X and 100Base-T4. 100Base-X uses two cables between hub and the station while 100Base-T4 uses four. 100-Base-X itself is divided into two: 100Base-TX and 100base-FX.&lt;br /&gt;
* 100 BASE-T4: This option is designed to avoid overwriting. It is used for half-duplex communication using four wire-pairs of the existing category 3 UTP cable, which is already available for telephone services in homes/offices. Two of four pairs are bi-directional; other two are unidirectional. This means that there are 3 pairs to be used for carrying data, in each direction (2 bi-directional and 1 uni-directional). Because 100Mbps data cannot be handled by voice-grade UTP, this specification splits the 100 Mbps flow into three 33.66Mbps flow.&lt;br /&gt;
* 100 BASE TX: This option uses two category 5 UTP or two shielded (STP) cable to connect a station to hub. One pair is used to carry frames from the hub to the station and other to carry frames from station to hub. Encoding is 4B/5B to handle 100 Mbps; signaling is NRZ-I. The distance between station and hub should be less than 100 meters.&lt;br /&gt;
* 100 BASE FX: This option uses two Fiber optic cables, one carry frames from station to hub and other from hub to station. The encoding is 4B/5B and signaling in NRZ-I. the distance between station and hub should be less than 2000 meters.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Q-8. What are the Objectives of The Gigabit Ethernet Alliance?&lt;/b&gt;&lt;br /&gt;
Ans: The objectives of the alliance are:&lt;br /&gt;
• supporting extension of existing Ethernet and Fast Ethernet technology in response to demand for higher network bandwidth.&lt;br /&gt;
• developing technical proposals for the inclusion in the standard&lt;br /&gt;
• establishment of inter-operability test procedures and processes&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Q-9. Explain GMII (Gigabit Media Independent Interface) in brief.&lt;/b&gt;&lt;br /&gt;
Ans: The GMII is the interface between the MAC layer and the Physical layer. It allows any physical layer to be used with the MAC layer. It is an extension of the MII (Media Independent Interface) used in Fast Ethernet. It uses the same management interface as MII. It supports 10, 100 and 1000 Mbps data rates. It provides separate 8-bit wide receive and transmit data paths, so it can support both full-duplex as well as half-duplex operation.&lt;br /&gt;
The GMII provides 2 media status signals: one indicates presence of the carrier, and the other indicates absence of collision. With the GMII, it is possible to connect various&lt;br /&gt;
media types such as shielded and unshielded twisted pair, and single-mode and multi mode optical fiber, while using the same MAC controller. It has three sub-layers namely: PCS (Physical Coding Sublayer), PMA (Physical Medium Attachment) and PMD (Physical Medium Dependent)&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;a href='http://aptipedia.blogspot.com/'&gt;&lt;b&gt;Aptipedia Tecknowledgies&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://bioinfosys.blogspot.com/'&gt;&lt;b&gt;Bio-informatics System&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://clickitworld.blogspot.com/'&gt;&lt;b&gt;Click-IT-World SEO&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://ecomatter.blogspot.com/'&gt;&lt;b&gt;Ecomatter-Save the Earth&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://www.indiastudychannel.com/r/vijaykrvishwakarma.aspx'&gt;Vijay Kumar Vishwakarma&lt;/a&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2766243001280496875-7638151709969286886?l=aptipedia.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/KW4-FpglcBNEMB1FeSnlj3vP6d0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/KW4-FpglcBNEMB1FeSnlj3vP6d0/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/KW4-FpglcBNEMB1FeSnlj3vP6d0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/KW4-FpglcBNEMB1FeSnlj3vP6d0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=NRMICZ2DO8I:7SffbmVtqn0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=NRMICZ2DO8I:7SffbmVtqn0:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/aptipedia/~4/NRMICZ2DO8I" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://aptipedia.blogspot.com/feeds/7638151709969286886/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://aptipedia.blogspot.com/2011/04/computer-network-questions-and-answers.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/7638151709969286886?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/7638151709969286886?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/aptipedia/~3/NRMICZ2DO8I/computer-network-questions-and-answers.html" title="Computer Network Questions and Answers" /><author><name>Vijay Vishwakarma</name><uri>http://www.blogger.com/profile/09057543518085257619</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://4.bp.blogspot.com/_uDMQ1-TasRI/S3GH0MbMZBI/AAAAAAAAAIw/UlDqZQBKXUY/S220/VIJAY+KUMAR+VISHWAKARMA.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://aptipedia.blogspot.com/2011/04/computer-network-questions-and-answers.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DE4FQ3g7fip7ImA9WhZTGEs.&quot;"><id>tag:blogger.com,1999:blog-2766243001280496875.post-7121806511601721045</id><published>2011-03-23T13:25:00.000+05:30</published><updated>2011-03-23T13:25:12.606+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-03-23T13:25:12.606+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Computer Network" /><title>Computer Network Questions and Answers</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;table&gt;&lt;tbody&gt;
&lt;tr&gt; &lt;td&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8537332319263609";
/* 336x280, created 7/4/10 */
google_ad_slot = "9806425052";
google_ad_width = 336;
google_ad_height = 280;
//--&gt;
&lt;/script&gt; &lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt; &lt;/td&gt; &lt;td&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8537332319263609";
/* 336x280, created 7/4/10 */
google_ad_slot = "4165684471";
google_ad_width = 336;
google_ad_height = 280;
//--&gt;
&lt;/script&gt; &lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt; &lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;b&gt;1. The IP datagram for a TCP ACK message is 40 bytes long: It contains 20 bytes of TCP header and 20 bytes of IP header. Assume that this ACK is traversing an ATM network that uses AAL5 to encapsulate IP packets. How many ATM layer packets will it take to carry the ACK for each of AAL layer? &lt;/b&gt;&lt;br /&gt;
a. AAL5&lt;br /&gt;
b. AAL3/4&lt;br /&gt;
ANS&lt;br /&gt;
a))  The length of the AAL5 CS-PDU into which the ACK is encapsulated is exactly 48 bytes, and this fits into a single ATM cell. &lt;br /&gt;
b)) When AAL3/4 is used the CS-PDU is again 48 bytes, but now the per-cell payload is only 44 bytes and two cells are necessary.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;2. Suppose there are N stations on a LAN that has capacity (transmission rate) C. All packets have a fixed length L and the end-to-end propagation delay of the channel is P. If only one station ever has a message to send (i.e., the other N-1 stations generate no traffic). What is the maximum possible throughput seen by this single node under each of the protocols:&lt;/b&gt;&lt;br /&gt;
a. CSMA&lt;br /&gt;
Assuming that the station senses the channel immediately after finishing its transmission, and finding it idle, sends another packet, the throughput is C. Note that this ignores the overhead time needed to do channel sensing.&lt;br /&gt;
&lt;br /&gt;
b. Slotted Aloha&lt;br /&gt;
Assuming the station always has data to send, it will always to do under slotted Aloha, so the throughput would be C.&lt;br /&gt;
&lt;br /&gt;
c. Token Passing&lt;br /&gt;
After sending a message, a station gives up the token. The token circulates around the ring (taking time P). Assuming that L is the amount of time needed to transmit a message, the throughput is thus (L/(L+PC))*C.&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;3. Consider sending a 1500-byte datagram into a link that has an MTU of 500 bytes. Suppose the original datagram is stamped with the identification number 1. Assume that IPv4 is used.&lt;/b&gt;&lt;br /&gt;
a. Where does fragmentation happen? Where are the fragments reassembled?&lt;br /&gt;
Fragmentation happens in the router preceding the link with the small MTU. The fragments are reassembled in the end system.&lt;br /&gt;
&lt;br /&gt;
b. How many fragments are generated?&lt;br /&gt;
The maximum size of the data field in each fragment = 480 (because there are 20   bytes IP header). Thus the number of required fragments= 1500-20/480 = 4&lt;br /&gt;
&lt;br /&gt;
c. What are the values of the fragmentation-related fields in the generated IP   datagram(s)?&lt;br /&gt;
Each fragment will have an identical identification number. Each fragment except the last one will be of size 500 bytes (including the IP header). The last datagram will be of size 60 bytes (including the IP header). The offsets of the 4 fragments will be 0, 60, 120, 180. Each of the first 3 fragments will have flag=1; the last fragment will have flag=0.&lt;br /&gt;
&lt;br /&gt;
d. What changes if IPv6 were used?&lt;br /&gt;
The router preceding the link with the small MTU will drop the packet and send an ICMP error  message “Packet Too Big” back to the source. The source is responsible for adjusting the packet size.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;4. Consider building a CSMA/CD network running at 1 Gbps over a 1-km cable with no repeaters. The signal speed in the cable is 200,000 km/sec. What is the minimum frame size? &lt;/b&gt;&lt;br /&gt;
ANS&lt;br /&gt;
For a 1-km cable, the one-way propagation time is 5 μsec, so 2τ = 10 μsec. To make CSMA/CD work, it must be impossible to transmit an entire frame in this interval. At 1 Gbps, all frames shorter than 10,000 bits can be completely transmitted in under 10 μsec, so the minimum frame is 10,000 bits or 1250 bytes&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;5. In the CSMA/CD protocol, what condition on the transmission delay Ttrans and the propagation delay Tprop has to be satisfied to guarantee that a node always detects a collision?  &lt;/b&gt;&lt;br /&gt;
ANS Ttrans&amp;gt;2Tprop&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;6. At low load, consider the delay of pure ALOHA versus slotted ALOHA. Which one is less? Explain your answer.&lt;/b&gt; &lt;br /&gt;
ANSWith pure ALOHA, transmission can start instantly. At low load, no collisions are expected so the transmission is likely to be successful. With slotted ALOHA, it has to wait for the next slot. This introduces half a slot time of delay.&lt;br /&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;a href='http://aptipedia.blogspot.com/'&gt;&lt;b&gt;Aptipedia Tecknowledgies&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://bioinfosys.blogspot.com/'&gt;&lt;b&gt;Bio-informatics System&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://clickitworld.blogspot.com/'&gt;&lt;b&gt;Click-IT-World SEO&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://ecomatter.blogspot.com/'&gt;&lt;b&gt;Ecomatter-Save the Earth&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://www.indiastudychannel.com/r/vijaykrvishwakarma.aspx'&gt;Vijay Kumar Vishwakarma&lt;/a&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2766243001280496875-7121806511601721045?l=aptipedia.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/gub5it-euMIfPw3p35smfSEDMCI/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/gub5it-euMIfPw3p35smfSEDMCI/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/gub5it-euMIfPw3p35smfSEDMCI/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/gub5it-euMIfPw3p35smfSEDMCI/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=aYXIHaJWd6M:22mjc7zAHJw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=aYXIHaJWd6M:22mjc7zAHJw:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/aptipedia/~4/aYXIHaJWd6M" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://aptipedia.blogspot.com/feeds/7121806511601721045/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://aptipedia.blogspot.com/2011/03/computer-network-questions-and-answers.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/7121806511601721045?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/7121806511601721045?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/aptipedia/~3/aYXIHaJWd6M/computer-network-questions-and-answers.html" title="Computer Network Questions and Answers" /><author><name>Vijay Vishwakarma</name><uri>http://www.blogger.com/profile/09057543518085257619</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://4.bp.blogspot.com/_uDMQ1-TasRI/S3GH0MbMZBI/AAAAAAAAAIw/UlDqZQBKXUY/S220/VIJAY+KUMAR+VISHWAKARMA.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://aptipedia.blogspot.com/2011/03/computer-network-questions-and-answers.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEIAQXYzcSp7ImA9WhZTGEs.&quot;"><id>tag:blogger.com,1999:blog-2766243001280496875.post-957330330467893407</id><published>2011-03-22T09:44:00.000+05:30</published><updated>2011-03-23T13:19:00.889+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-03-23T13:19:00.889+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Operating System" /><title>Operating System Questions</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;table&gt;&lt;tbody&gt;
&lt;tr&gt; &lt;td&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8537332319263609";
/* 336x280, created 7/4/10 */
google_ad_slot = "9806425052";
google_ad_width = 336;
google_ad_height = 280;
//--&gt;
&lt;/script&gt; &lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt; &lt;/td&gt; &lt;td&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8537332319263609";
/* 336x280, created 7/4/10 */
google_ad_slot = "4165684471";
google_ad_width = 336;
google_ad_height = 280;
//--&gt;
&lt;/script&gt; &lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt; &lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;b&gt;1.  Define operating system  (MU AP-96)&lt;/b&gt;&lt;br /&gt;
An operating system is a set of program that controls, co-ordinates and supervises the activities of the computer hardware and software.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;2.  What is the role of an os?&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
An OS acts as an interface between the user and the computer. It acts as The manager of the resources of the computer.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;3.  Write the functions of an OS(BU Ap-97) &lt;/b&gt;                  &lt;br /&gt;
&lt;br /&gt;
(i)     Memory Management.&lt;br /&gt;
(ii)    Processor management.&lt;br /&gt;
(iii)    Interrupt Handling.&lt;br /&gt;
(iv)    Accounting.&lt;br /&gt;
(v)    Automatic job sequencing.&lt;br /&gt;
(vi)  Management and control of  I/O devices&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;4. What is the need for an OS?&lt;/b&gt;&lt;br /&gt;
A medium is needed to communicate between the user and the m/c. An OS acts as a medium of interface&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;5. What are the characteristics of an OS(MSU Ap-96)&lt;/b&gt;&lt;br /&gt;
(i) User friendly .&lt;br /&gt;
(ii) Keep track of the status of  eaCH RESOURCE.&lt;br /&gt;
(iii) Allows sharing of resources(H/W and S/W).&lt;br /&gt;
(iv) Provides adequate security.&lt;br /&gt;
(v) Protection.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;6. What is a process?&lt;/b&gt;&lt;br /&gt;
A process is basically a program in execution. It is the unit of work in a Modern operating system.&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;7. What is meant by a process state?&lt;/b&gt;&lt;br /&gt;
When a process executes, it changes, its status. This is known as process's State.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;8. What are the various process states ?&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
The various process states are&lt;br /&gt;
(i) new&lt;br /&gt;
(ii) ready&lt;br /&gt;
(iii) running&lt;br /&gt;
(iv) suspended&lt;br /&gt;
(v) terminated&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;9. How does a process differ from a job?(BDU Ap-96).&lt;/b&gt;&lt;br /&gt;
A process is an active entity with a program counter specifying the next instructions to execute and a set to associated resources, whereas a batch System executes jobs.(which is a collection of processes).&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;10. Differentiate program and a process?&lt;/b&gt;&lt;br /&gt;
A process is a program in execution(ie) A program is a passive entity, Where as a process is an active entity.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;11. What is process control Block?&lt;/b&gt;&lt;br /&gt;
Each process is represented in the operating system by a process control Block(PCB) also called a task control block.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;12. What is the function of a process  control block?&lt;/b&gt;&lt;br /&gt;
A (PCB) contains many pieces of information associated with a specific Process. It serves as the repository for any information that may vary From  process to process.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;13. What are the information contained in a PCB?&lt;/b&gt;&lt;br /&gt;
A PCB contains pieces of information associated with a specific process, Namely&lt;br /&gt;
&lt;br /&gt;
(i) process state&lt;br /&gt;
(ii) program counter&lt;br /&gt;
(iii) CPU register&lt;br /&gt;
(iv) CPU scheduling information&lt;br /&gt;
(v) Memory management information&lt;br /&gt;
(vi) Accounting information&lt;br /&gt;
(vii) I/O status information&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;14. What are the operations on process?&lt;/b&gt;&lt;br /&gt;
(i) create  a process&lt;br /&gt;
(ii) destroy a process&lt;br /&gt;
(iii) suspend a process&lt;br /&gt;
(iv) resume a process&lt;br /&gt;
(v) change the priority of a process&lt;br /&gt;
(vi) block a process&lt;br /&gt;
(vii) wakeup  a process&lt;br /&gt;
(viii) dispatch a process&lt;br /&gt;
(ix) enable a process to communicate with another &lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;15. What are the operation involved  in creating  a process?&lt;/b&gt;&lt;br /&gt;
(i) name the process&lt;br /&gt;
(ii) insert it in the system’s known processes list(or) process table.&lt;br /&gt;
(iii) Determine the process’s initial priority&lt;br /&gt;
(iv) Create the process control block&lt;br /&gt;
(v) Allocate the process’s initial resource.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;16. What  is the nucleus or kernel of an operating system?&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
Kernel is the part of  the OS which directly makes interface with the Hardware system.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;17. What are the main functions of the kernel?&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
To provide mechanism for&lt;br /&gt;
(i) creation and deletion of processes&lt;br /&gt;
(ii) inter process communication&lt;br /&gt;
(iii) synchronization of processes.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;18. What are the components of an OS?&lt;/b&gt;&lt;br /&gt;
OS which is a collection of programs are of 2 types&lt;br /&gt;
(i) control program&lt;br /&gt;
(ii) supervisory program&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;19. What is multi programming?&lt;/b&gt;&lt;br /&gt;
The ability of keeping several jobs in the memory at one time, where The cpu is switched back and forth among  them is called as Multi programming&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;20. What is  the use of Multi Programming ?&lt;/b&gt;&lt;br /&gt;
Multi programming helps to increase CPU utilization, and to decrease the total time needed to execute the jobs.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;21. Illustrate the factors that usually determine the degree of Multi Programming     &lt;/b&gt;&lt;br /&gt;
&lt;b&gt;(MSU: Nov-96)&lt;/b&gt;&lt;br /&gt;
(i) The number of Programs residing in Primary memory.&lt;br /&gt;
(ii) Passing of the control of the CPU rapidly between these programs.&lt;br /&gt;
(iii) Protection of user process from one another.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;a href='http://aptipedia.blogspot.com/'&gt;&lt;b&gt;Aptipedia Tecknowledgies&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://bioinfosys.blogspot.com/'&gt;&lt;b&gt;Bio-informatics System&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://clickitworld.blogspot.com/'&gt;&lt;b&gt;Click-IT-World SEO&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://ecomatter.blogspot.com/'&gt;&lt;b&gt;Ecomatter-Save the Earth&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://www.indiastudychannel.com/r/vijaykrvishwakarma.aspx'&gt;Vijay Kumar Vishwakarma&lt;/a&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2766243001280496875-957330330467893407?l=aptipedia.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/tIyijXc7l4yqXq1R8T0-rK0iQ_0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/tIyijXc7l4yqXq1R8T0-rK0iQ_0/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/tIyijXc7l4yqXq1R8T0-rK0iQ_0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/tIyijXc7l4yqXq1R8T0-rK0iQ_0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=hTWuaUJRfmo:XKwwzY9XuBo:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=hTWuaUJRfmo:XKwwzY9XuBo:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/aptipedia/~4/hTWuaUJRfmo" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://aptipedia.blogspot.com/feeds/957330330467893407/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://aptipedia.blogspot.com/2011/03/operating-system-questions.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/957330330467893407?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/957330330467893407?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/aptipedia/~3/hTWuaUJRfmo/operating-system-questions.html" title="Operating System Questions" /><author><name>Vijay Vishwakarma</name><uri>http://www.blogger.com/profile/09057543518085257619</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://4.bp.blogspot.com/_uDMQ1-TasRI/S3GH0MbMZBI/AAAAAAAAAIw/UlDqZQBKXUY/S220/VIJAY+KUMAR+VISHWAKARMA.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://aptipedia.blogspot.com/2011/03/operating-system-questions.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEMMQHg5fip7ImA9WhZTGEs.&quot;"><id>tag:blogger.com,1999:blog-2766243001280496875.post-3181962191798956415</id><published>2010-12-16T10:41:00.001+05:30</published><updated>2011-03-23T13:18:01.626+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-03-23T13:18:01.626+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Computer Network" /><title>Computer Network Questions and Answers</title><content type="html">&lt;table&gt;&lt;tr&gt; &lt;td&gt; &lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-8537332319263609";
/* 336x280, created 7/4/10 */
google_ad_slot = "9806425052";
google_ad_width = 336;
google_ad_height = 280;
//--&gt;
&lt;/script&gt; &lt;script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt; &lt;/td&gt; &lt;td&gt; &lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-8537332319263609";
/* 336x280, created 7/4/10 */
google_ad_slot = "4165684471";
google_ad_width = 336;
google_ad_height = 280;
//--&gt;
&lt;/script&gt; &lt;script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt; &lt;/td&gt; &lt;/tr&gt;
&lt;/table&gt;&lt;b&gt;1. Why is it important for protocols configured on top of the Ethernet to have a length field in their header, indicating how long the message is?&lt;/b&gt;&lt;br /&gt;
Ans:   It is important to indicate the message size because of the following reasons:&lt;br /&gt;
 There can be padded data inside the message, &lt;br /&gt;
 In case of collision only part of data is received, so it can checked by the message length field, otherwise, it won't be known.&lt;br /&gt;
 The Ethernet frame size isn't fixed. It can hold up to 1500 bytes but it can vary from network to network.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;2. What kinds of problems can arise when two hosts on the same Ethernet share the same hardware address? Describe what happens and why that behavior is a problem&lt;/b&gt;.&lt;br /&gt;
Ans : 1. Hosts are using hardware address to filter whether the packet is for them or not. So, they can discard the packets which do not belong to them. However, if the same hardware address is shared with other host, it is likely to receive wrong packets which can harm the host.&lt;br /&gt;
2. On the same Ethernet line, hosts keep dynamic ARP table to match Internet address and physical address (MAC address), but if they see two different IP addresses having same MAC address. It is hard to tell what happens for this.&lt;br /&gt;
3. If hosts share the switch on the Ethernet line, the switch will get confused to update the address table. It will continuously change the address table, so it can lead to unstable state.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;3.  The 1982 Ethernet specification allowed between any two stations up to 1500 m of coaxial cable, 1000 m of other point-to-point link cable, and two repeaters. Each station or repeater connects to the coaxial cable via up to 50 m of “drop cable.” Typical delays associated with each device are given in Table below (where c = speed of light in a vacuum = 3×108 m/s). What is the worst-case round-trip propagation delay, measured in bits, due to the sources listed? (This list is not complete; other sources of delay include sense time and signal rise time.)&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
Item Delay&lt;br /&gt;
Coaxial cable propagation speed .77c&lt;br /&gt;
Link/drop cable propagation speed .65c&lt;br /&gt;
Repeaters approximately 0.6 μs each&lt;br /&gt;
Transceivers  approximately 0.2 μs each&lt;br /&gt;
Typical delays associated with various devices&lt;br /&gt;
One-way delays:&lt;br /&gt;
Coax:   1500m   6.49 3 s&lt;br /&gt;
link:   1000m   5.13 3 s&lt;br /&gt;
repeaters  two   1.20 3 s&lt;br /&gt;
transceivers  six (two for  1.20 3 s&lt;br /&gt;
each repeater,&lt;br /&gt;
one for each &lt;br /&gt;
station)&lt;br /&gt;
&lt;br /&gt;
drop cable  6 , 50m   1.54 3 s&lt;br /&gt;
Total:     15.56 3 s&lt;br /&gt;
The roundtrip delay is thus about 31.1 3 s, or 311 bits. The “official” total is 464 bits, which when extended by 48 bits of jam signal exactly accounts for the 512-bit minimum packet size.&lt;br /&gt;
The 1982 Digital-Intel-Xerox specification presents a delay budget (page 62 of that document) that totals 463.8 bit-times, leaving 20 nanoseconds for unforeseen contingencies.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;4. Coaxial cable Ethernet was limited to a maximum of 500 m between repeaters, which regenerate the signal to 100% of its original amplitude. Along one 500-m segment, the signal could decay to no less than 14% of its original value (8.5 dB). Along 1500 m, then, the decay might be (0.14)3 = 0.3%. Such a signal, even along 2500 m, is still strong enough to be read; why then are repeaters required every 500 m?&lt;/b&gt;&lt;br /&gt;
Ans&gt;&gt;A station must not only detect a remote signal, but for collision detection it must detect a remote signal while it itself is transmitting. This requires much higher remote-signal intensity.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;5. Suppose the round-trip propagation delay for Ethernet is 46.4 μs. This yields a minimum packet size of 512 bits (464 bits corresponding to propagation delay + 48 bits of jam signal).&lt;br /&gt;
(a) What happens to the minimum packet size if the delay time is held constant, and the signaling rate rises to 100 Mbps?&lt;br /&gt;
(b) What are the drawbacks to so large a minimum packet size?&lt;br /&gt;
(c) If compatibility were not an issue, how might the specifications be written so as to permit a smaller minimum packet size?&lt;/b&gt;&lt;br /&gt;
Ans&gt;&gt;(a) Assuming 48 bits of jam signal was still used, the minimum packet size would be 4640+48 bits = 586 bytes.&lt;br /&gt;
(b) This packet size is considerably larger than many higher-level packet sizes, resulting in considerable wasted bandwidth.&lt;br /&gt;
(c) The minimum packet size could be smaller if maximum collision domain diameter were reduced, and if sundry other tolerances were tightened up.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;6. A group of N stations share a 56-kbps pure ALOHA channel. Each station outputs a 1000-bit frame on an average of once every 100 sec, even if the previous one has not yet been sent (e.g., the stations can buffer outgoing frames). What is the maximum value of N? &lt;/b&gt;&lt;br /&gt;
ANS&gt;&gt;with pure ALOHA the usable bandwidth is 0.184 × 56 kbps = 10.3 kbps.Each station requires 10 bps, so N = 10300/10 = 1030 stations&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;7. Consider the delay of pure ALOHA versus slotted ALOHA at low load. Which one is less? Explain your answer.&lt;/b&gt; &lt;br /&gt;
ANS&gt;&gt;With pure ALOHA, transmission can start instantly. At low load, no collisions are expected so the transmission is likely to be successful. With slotted ALOHA, it has to wait for the next slot. This introduces half a slot time of delay.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;8. Ten thousand airline reservation stations are competing for the use of a single slotted ALOHA channel. The average station makes 18 requests/hour. A slot is 125 μsec. What is the approximate total channel load?&lt;/b&gt; &lt;br /&gt;
ANS&gt;&gt;Each terminal makes one request every 200 sec, for a total load of 50 requests/sec. Hence G = 50/8000 = 1/160.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;9. A large population of ALOHA users manages to generate 50 requests/sec, including both originals and retransmissions. Time is slotted in units of 40 msec. &lt;br /&gt;
a. What is the chance of success on the first attempt? &lt;br /&gt;
b. What is the probability of exactly k collisions and then a success? &lt;br /&gt;
c. What is the expected number of transmission attempts needed? &lt;/b&gt;&lt;br /&gt;
ANS&gt;&gt; (a) With G = 2 the Poisson law gives a probability of e −2.&lt;br /&gt;
(b) (1 − e −G)ke −G = 0.135 × 0.865k .&lt;br /&gt;
(c) The expected number of transmissions is eG = 7.4.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;10. Measurements of a slotted ALOHA channel with an infinite number of users show that 10 percent of the slots are idle. &lt;br /&gt;
a. What is the channel load, G? &lt;br /&gt;
b. What is the throughput? &lt;br /&gt;
c. Is the channel underloaded or overloaded? &lt;/b&gt;&lt;br /&gt;
ANS&gt;&gt; (a) From the Poisson law again, P0 = e −G, so G = −lnP0 = −ln 0.1 = 2.3.&lt;br /&gt;
(b) Using S = Ge−G with G = 2.3 and e −G = 0.1, S = 0.23.&lt;br /&gt;
(c) Whenever G &gt; 1 the channel is overloaded, so it is overloaded.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;11. In an infinite-population slotted ALOHA system, the mean number of slots a station waits between a collision and its retransmission is 4. Plot the delay versus throughput curve for this system.&lt;/b&gt; &lt;br /&gt;
ANS&gt;&gt;The number of transmissions is E = eG. The E events are separated by E – 1 intervals of four slots each, so the delay is 4(eG − 1). The throughput is given by S = Ge−G. Thus, we have two parametric equations, one for delay and one for throughput, both in terms of G. For each G value it is possible to find the corresponding delay and throughput, yielding one point on the curve.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;12. 1-km-long, 10-Mbps CSMA/CD LAN (not 802.3) has a propagation speed of 200 m/μsec. Repeaters are not allowed in this system. Data frames are 256 bits long, including 32 bits of header, checksum, and other overhead. The first bit slot after a successful transmission is reserved for the receiver to capture the channel in order to send a 32-bit acknowledgement frame. What is the effective data rate, excluding overhead, assuming that there are no collisions? &lt;/b&gt;&lt;br /&gt;
ANS&gt;&gt; The round-trip propagation time of the cable is 10µsec. A complete transmission has six phases: transmitter seizes cable (10µsec) transmit data (25.6µsec) Delay for last bit to get to the end (5.0 µsec) receiver seizes cable (10µsec) acknowledgement sent (3.2 µsec) Delay for last bit to get to the end (5.0 µsec) the sum of these is 58.8 µsec. In this period, 224 data bits are sent, for a rate of about 3.8 Mbps.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;13. Consider building a CSMA/CD network running at 1 Gbps over a 1-km cable with no repeaters. The signal speed in the cable is 200,000 km/sec. What is the minimum frame size? &lt;/b&gt;&lt;br /&gt;
ANS&gt;&gt; For a 1-km cable, the one-way propagation time is 5 μsec, so 2τ = 10 μsec. To make CSMA/CD work, it must be impossible to transmit an entire frame in this interval. At 1 Gbps, all frames shorter than 10,000 bits can be completely transmitted in under 10 μsec, so the minimum frame is 10,000 bits or 1250 bytes.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;14. An IP packet to be transmitted by Ethernet is 60 bytes long, including all its headers. If LLC is not in use, is padding needed in the Ethernet frame, and if so, how many bytes?&lt;/b&gt; &lt;br /&gt;
ANS&gt;&gt;The minimum Ethernet frame is 64 bytes, including both addresses in the Ethernet frame header, the type/length field, and the checksum. Since the header fields occupy 18 bytes and the packet is 60 bytes, the total frame size is 78 bytes, which exceeds the 64-byte minimum. Therefore, no padding is used.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;15. Ethernet frames must be at least 64 bytes long to ensure that the transmitter is still going in the event of a collision at the far end of the cable. Fast Ethernet has the same 64-byte minimum frame size but can get the bits out ten times faster. How is it possible to maintain the same minimum frame size? &lt;/b&gt;&lt;br /&gt;
ANS&gt;&gt;The maximum wire length in fast Ethernet is 1/10 as long as in Ethernet.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;16. Some books quote the maximum size of an Ethernet frame as 1518 bytes instead of 1500 bytes. Are they wrong? Explain your answer. &lt;/b&gt;&lt;br /&gt;
ANS&gt;&gt;The payload is 1500 bytes, but when the destination address, source address, type/length, and checksum fields are counted too, the total is indeed 1518.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;17. Recall that with the CSMA/CD protocol, the adapter waits K*512 bit times after a collision, where K is drawn randomly. For K=100, how long does the adapter wait until returning to Step 2 for a 10 Mbps Ethernet? For a 100 Mbps Ethernet?&lt;/b&gt;&lt;br /&gt;
ANS&gt;&gt; Wait for 51,200 bit times. For 10 Mbps, this wait is&lt;br /&gt;
&lt;br /&gt;
For 100 Mbps, the wait is 512 μ sec.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;18. Suppose nodes A and B are on the same 10 Mbps Ethernet segment, and the propagation delay between the two nodes is 225 bit times. Suppose node A begins transmitting a frame, and before it finishes station B begins transmitting a frame. Can A finish transmitting before it detects that B has transmitted? Why or why not? If the answer is yes, then A incorrectly believes that its frame was successfully transmitted without a collision.&lt;/b&gt;&lt;br /&gt;
Hint: Suppose at time t=0 bit times, A begins transmitting a frame. In the worst case, A transmits a minimum size frame of 512+64(prembale) bit times. So A would finish transmitting the frame at t=512+64 bit times. Thus the answer is no if B's signal reaches A before bit time t=512+64 bits. In the worst case, when does B's signal reach A?&lt;br /&gt;
&lt;br /&gt;
ANS&gt;&gt; At t = 0 A transmits. At t = 576 , A would finish transmitting. In the worst case, B begins transmitting at time t = 224 . At time t = 224 + 225 = 449 B 's first bit arrives at A . Because 449 &lt; 576 , A aborts before completing the transmission of the packet, as it is supposed to do. 
Thus A cannot finish transmitting before it detects that B transmitted. This implies that if A does not detect the presence of a host, then no other host begins transmitting while A is transmitting.

&lt;b&gt;19. Suppose nodes A and B are on the same 10 Mbps Ethernet segment, and the propagation delay between the two nodes is 225 bit times. Suppose A and B send frames at the same time, the frames collide, and then A and B choose different values of K in the CSMA/CD algorithm. Assuming no other nodes are active, can the retransmissions from A and B collide? For our purposes, it suffices to work out the following example. Suppose A and B begin transmission at t=0 bit times. They both detect collisions at t=225 bit times. They finish transmitting jam signal at t= 225+48= 273 bit times. Suppose KA=0 and KB=1. At what time does B schedule its retransmission? At what time does A begin transmission? (Note, the nodes must wait for an idle channel after returning to Step 2-- see protocol.) At what time does A's signal reach B? Does B refrain from transmitting at its scheduled time?&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
Time Event&lt;br /&gt;
0 A and B begin transmission&lt;br /&gt;
225 A and B detect collision&lt;br /&gt;
273 A and B finish transmitting jam signal&lt;br /&gt;
273+225=498 B 's last bit arrives at A ;A detects an idle channel&lt;br /&gt;
498+96=594 A starts transmitting&lt;br /&gt;
273+512=785 B returns to Step2&lt;br /&gt;
B must sense idle channel for 96 bit times before it transmits&lt;br /&gt;
785+96=881 B starts transmitting&lt;br /&gt;
594+225=819 A’s transmission reaches B&lt;br /&gt;
Because A 's retransmission reaches B before B 's scheduled retransmission time, B refrains from transmitting while A retransmits. Thus A and B do not collide. Thus the factor 512 appearing in the exponential backoff algorithm is sufficiently large.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;20. Consider a 100Mbps 100-BT Ethernet. In order to have an efficiency of .50, what should be the maximum distance between a node and the hub? Assume a frame length of 64 bytes and that there are no repeaters. Does this maximum distance also ensure that a transmitting node A will be able to detect whether any other node transmitted while A was transmitting? Why or why not? How does your maximum distance compare to the actual 100 Mbps standard?&lt;/b&gt;&lt;br /&gt;
Ans&gt;&gt;We want 1/(1+ 5a) = .5 or, equivalently, prop trans a = .2 = t / t . t = d /(1.8 ×108 ) prop m/sec and = (576 trans t bits ) /(108 bits/sec ) = 5.76μ sec. Solving for d we obtain d = 265 meters. For the 100 Mbps Ethernet standard, the maximum distance between two hosts is 200 m.&lt;br /&gt;
For transmitting station A to detect whether any other station transmitted during A 's interval, trans t must be greater than 2 = 2 ⋅ 265 prop t m/1.8 ×108 m/sec = 2.94μ sec. Because 2.94 &lt; 5.76 , A will detect B 's signal before the end of its transmission.

&lt;b&gt;21. Suppose two nodes, A and B, are attached to opposite ends of a 900 m cable, and that they each have one frame of 1000 bits (including all headers and preambles) to send to each other. Both nodes attempt to transmit at time t=0. Suppose there are four repeaters between A and B, each inserting a 20 bit delay. Assume the transmission rate is 10 Mbps, and CSMA/CD with backoff intervals of multiples of 512 bits is used. After the first collision, A draws K=0 and B draws K=1 in the exponential backoff protocol. Ignore the jam signal.&lt;br /&gt;
a. What is the one-way propagation delay (including repeater delays) between A and B in seconds. Assume that the signal propagation speed is 2 * 108m/sec.&lt;br /&gt;
b. At what time (in seconds) is A's packet completely delivered at B.&lt;br /&gt;
c. Now suppose that only A has a packet to send and that the repeaters are replaced with bridges. Suppose that each bridge has a 20 bit processing delay in addition to a store-and-forward delay. At what time in seconds is A's packet delivered at B?&lt;/b&gt;&lt;br /&gt;
ANS&gt;&gt; a)  &lt;br /&gt;
= (4.5 10-6+8 10-6)&lt;br /&gt;
=12.5µsec&lt;br /&gt;
b) frame transmission time is (1000bits/10*106bps)=100  μsec&lt;br /&gt;
At time t = 0 , both A and B transmit.&lt;br /&gt;
At time t = 12.5μ sec , A detects a collision.&lt;br /&gt;
At time t = 25μ sec last bit of B 's aborted transmission arrives at A .&lt;br /&gt;
At time t = 37.5μ sec first bit of A 's retransmission arrives at B .&lt;br /&gt;
At time t= 37.5 μsec + 100 μsec =137.5 μsecA 's packet is completely delivered at B .&lt;br /&gt;
c) 12.5μ sec+ 5⋅100μ sec = 512.5μ sec&lt;div class="blogger-post-footer"&gt;&lt;a href='http://aptipedia.blogspot.com/'&gt;&lt;b&gt;Aptipedia Tecknowledgies&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://bioinfosys.blogspot.com/'&gt;&lt;b&gt;Bio-informatics System&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://clickitworld.blogspot.com/'&gt;&lt;b&gt;Click-IT-World SEO&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://ecomatter.blogspot.com/'&gt;&lt;b&gt;Ecomatter-Save the Earth&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://www.indiastudychannel.com/r/vijaykrvishwakarma.aspx'&gt;Vijay Kumar Vishwakarma&lt;/a&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2766243001280496875-3181962191798956415?l=aptipedia.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/SzKG7k2P0KaDeu9di18LrV8hm7g/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/SzKG7k2P0KaDeu9di18LrV8hm7g/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/SzKG7k2P0KaDeu9di18LrV8hm7g/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/SzKG7k2P0KaDeu9di18LrV8hm7g/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=eiM4uJTXzgo:uKDkq9NFCio:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=eiM4uJTXzgo:uKDkq9NFCio:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/aptipedia/~4/eiM4uJTXzgo" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://aptipedia.blogspot.com/feeds/3181962191798956415/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://aptipedia.blogspot.com/2010/12/computer-network-questions-and-answers.html#comment-form" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/3181962191798956415?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/3181962191798956415?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/aptipedia/~3/eiM4uJTXzgo/computer-network-questions-and-answers.html" title="Computer Network Questions and Answers" /><author><name>Vijay Vishwakarma</name><uri>http://www.blogger.com/profile/09057543518085257619</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://4.bp.blogspot.com/_uDMQ1-TasRI/S3GH0MbMZBI/AAAAAAAAAIw/UlDqZQBKXUY/S220/VIJAY+KUMAR+VISHWAKARMA.JPG" /></author><thr:total>1</thr:total><feedburner:origLink>http://aptipedia.blogspot.com/2010/12/computer-network-questions-and-answers.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CkUFRHg6eSp7ImA9Wx5UEEo.&quot;"><id>tag:blogger.com,1999:blog-2766243001280496875.post-866531383203198512</id><published>2010-10-14T20:54:00.002+05:30</published><updated>2010-10-14T21:00:15.611+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-10-14T21:00:15.611+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="php" /><title>PHP interview questions and answers</title><content type="html">&lt;table&gt;&lt;tr&gt; &lt;td&gt; &lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-8537332319263609";
/* 336x280, created 7/4/10 */
google_ad_slot = "9806425052";
google_ad_width = 336;
google_ad_height = 280;
//--&gt;
&lt;/script&gt; &lt;script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt; &lt;/td&gt; &lt;td&gt; &lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-8537332319263609";
/* 336x280, created 7/4/10 */
google_ad_slot = "4165684471";
google_ad_width = 336;
google_ad_height = 280;
//--&gt;
&lt;/script&gt; &lt;script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt; &lt;/td&gt; &lt;/tr&gt;
&lt;/table&gt;&lt;b&gt;1. What does a special set of tags &lt;?= and ?&gt; do in PHP?&lt;/b&gt;&lt;br /&gt;
Ans - The output is displayed directly to the browser.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;2. What’s the difference between include and require?&lt;/b&gt;&lt;br /&gt;
Ans - It’s how they handle failures. If the file is not found by require(), it will cause a fatal error and halt the execution of the script. If the file is not found by include(), a warning will be issued, but execution will continue.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;3. I am trying to assign a variable the value of 0123, but it keeps coming up with a different number, what’s the problem?&lt;/b&gt;&lt;br /&gt;
Ans - PHP Interpreter treats numbers beginning with 0 as octal. Look at the similar PHP interview questions for more numeric problems.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;4. Would I use print "$a dollars" or "{$a} dollars" to print out the amount of dollars in this example?&lt;/b&gt;&lt;br /&gt;
Ans - In this example it wouldn’t matter, since the variable is all by itself, but if you were to print something like "{$a},000,000 mln dollars", then you definitely need to use the braces.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;5. How do you define a constant?&lt;/b&gt;&lt;br /&gt;
Ans - Via define() directive, like define ("MYCONSTANT", 100);&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;6. How do you pass a variable by value?&lt;/b&gt;&lt;br /&gt;
Ans - Just like in C++, put an ampersand in front of it, like $a = &amp;$b&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;7. Will comparison of string "10" and integer 11 work in PHP?&lt;/b&gt;&lt;br /&gt;
Ans - Yes, internally PHP will cast everything to the integer type, so numbers 10 and 11 will be compared.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;8. When are you supposed to use endif to end the conditional statement?&lt;/b&gt;&lt;br /&gt;
Ans - When the original if was followed by : and then the code block without braces.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;9. Explain the ternary conditional operator in PHP?&lt;/b&gt;&lt;br /&gt;
Ans - Expression preceding the ? is evaluated, if it’s true, then the expression preceding the : is executed, otherwise, the expression following : is executed.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;10. How do I find out the number of parameters passed into function?&lt;/b&gt;&lt;br /&gt;
Ans - func_num_args() function returns the number of parameters passed in.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;11. If the variable $a is equal to 5 and variable $b is equal to character a, what’s the value of $$b?&lt;/b&gt;&lt;br /&gt;
Ans - 100, it’s a reference to existing variable.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;12. What’s the difference between accessing a class method via -&gt; and via ::?&lt;/b&gt;&lt;br /&gt;
Ans - :: is allowed to access methods that can perform static operations, i.e. those, which do not require object initialization.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;13. Are objects passed by value or by reference?&lt;/b&gt;&lt;br /&gt;
Ans - Everything is passed by value.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;14. How do you call a constructor for a parent class?&lt;/b&gt;&lt;br /&gt;
Ans - parent::constructor($value)&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;15. What’s the special meaning of __sleep and __wakeup?&lt;/b&gt;&lt;br /&gt;
Ans - __sleep returns the array of all the variables than need to be saved, while __wakeup retrieves them.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;16. Would you initialize your strings with single quotes or double quotes?&lt;/b&gt;&lt;br /&gt;
Ans - Since the data inside the single-quoted string is not parsed for variable substitution, it’s always a better idea speed-wise to initialize a string with single quotes, unless you specifically need variable substitution.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;17. How come the code &lt;?php print "Contents: $arr[1]"; ?&gt; works, but &lt;?php print "Contents: $arr[1][2]"; ?&gt; doesn’t for two-dimensional array of mine?&lt;/b&gt;&lt;br /&gt;
Ans - Any time you have an array with more than one dimension, complex parsing syntax is required. print "Contents: {$arr[1][2]}" would’ve worked.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;18. What is the difference between characters �23 and x23?&lt;/b&gt;&lt;br /&gt;
Ans - The first one is octal 23, the second is hex 23.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;19. With a heredoc syntax, do I get variable substitution inside the heredoc contents?&lt;/b&gt;&lt;br /&gt;
Ans - Yes.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;20. I am writing an application in PHP that outputs a printable version of driving directions. It contains some long sentences, and I am a neat freak, and would like to make sure that no line exceeds 50 characters. How do I accomplish that with PHP?&lt;/b&gt;&lt;br /&gt;
Ans - On large strings that need to be formatted according to some length specifications, use wordwrap() or chunk_split().&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;21. What’s the difference between htmlentities() and htmlspecialchars()?&lt;/b&gt;&lt;br /&gt;
Ans - htmlspecialchars only takes care of &lt;, &gt;, single quote ‘, double quote " and ampersand. htmlentities translates all occurrences of character sequences that have different meaning in HTML.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;22. What’s the difference between md5(), crc32() and sha1() crypto on PHP?&lt;/b&gt;&lt;br /&gt;
Ans - The major difference is the length of the hash generated. CRC32 is, evidently, 32 bits, while sha1() returns a 128 bit value, and md5() returns a 160 bit value. This is important when avoiding collisions.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;23. So if md5() generates the most secure hash, why would you ever use the less secure crc32() and sha1()?&lt;/b&gt;&lt;br /&gt;
Ans - Crypto usage in PHP is simple, but that doesn’t mean it’s free. First off, depending on the data that you’re encrypting, you might have reasons to store a 32-bit value in the database instead of the 160-bit value to save on space. Second, the more secure the crypto is, the longer is the computation time to deliver the hash value. A high volume site might be significantly slowed down, if frequent md5() generation is required.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;24. How do you match the character ^ at the beginning of the string?&lt;/b&gt;&lt;br /&gt;
Ans - ^^&lt;div class="blogger-post-footer"&gt;&lt;a href='http://aptipedia.blogspot.com/'&gt;&lt;b&gt;Aptipedia Tecknowledgies&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://bioinfosys.blogspot.com/'&gt;&lt;b&gt;Bio-informatics System&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://clickitworld.blogspot.com/'&gt;&lt;b&gt;Click-IT-World SEO&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://ecomatter.blogspot.com/'&gt;&lt;b&gt;Ecomatter-Save the Earth&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://www.indiastudychannel.com/r/vijaykrvishwakarma.aspx'&gt;Vijay Kumar Vishwakarma&lt;/a&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2766243001280496875-866531383203198512?l=aptipedia.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/rVSmV4jFNi1umIO4hOW2DMyOrT4/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/rVSmV4jFNi1umIO4hOW2DMyOrT4/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/rVSmV4jFNi1umIO4hOW2DMyOrT4/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/rVSmV4jFNi1umIO4hOW2DMyOrT4/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=JC5VFIxLi1U:1Nh2i7Mf4ns:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=JC5VFIxLi1U:1Nh2i7Mf4ns:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/aptipedia/~4/JC5VFIxLi1U" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://aptipedia.blogspot.com/feeds/866531383203198512/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://aptipedia.blogspot.com/2010/10/php-interview-questions-and-answers.html#comment-form" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/866531383203198512?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/866531383203198512?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/aptipedia/~3/JC5VFIxLi1U/php-interview-questions-and-answers.html" title="PHP interview questions and answers" /><author><name>Vijay Vishwakarma</name><uri>http://www.blogger.com/profile/09057543518085257619</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://4.bp.blogspot.com/_uDMQ1-TasRI/S3GH0MbMZBI/AAAAAAAAAIw/UlDqZQBKXUY/S220/VIJAY+KUMAR+VISHWAKARMA.JPG" /></author><thr:total>1</thr:total><feedburner:origLink>http://aptipedia.blogspot.com/2010/10/php-interview-questions-and-answers.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEANQHY7cCp7ImA9Wx5VGEo.&quot;"><id>tag:blogger.com,1999:blog-2766243001280496875.post-6709014271569837595</id><published>2010-10-12T15:14:00.001+05:30</published><updated>2010-10-12T15:16:31.808+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-10-12T15:16:31.808+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="advance java" /><category scheme="http://www.blogger.com/atom/ns#" term="java thread" /><category scheme="http://www.blogger.com/atom/ns#" term="multithreading" /><category scheme="http://www.blogger.com/atom/ns#" term="threading" /><category scheme="http://www.blogger.com/atom/ns#" term="core java" /><title>Java Thread Questions and answers</title><content type="html">&lt;table&gt;&lt;tr&gt; &lt;td&gt; &lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-8537332319263609";
/* 336x280, created 7/4/10 */
google_ad_slot = "9806425052";
google_ad_width = 336;
google_ad_height = 280;
//--&gt;
&lt;/script&gt; &lt;script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt; &lt;/td&gt; &lt;td&gt; &lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-8537332319263609";
/* 336x280, created 7/4/10 */
google_ad_slot = "4165684471";
google_ad_width = 336;
google_ad_height = 280;
//--&gt;
&lt;/script&gt; &lt;script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt; &lt;/td&gt; &lt;/tr&gt;
&lt;/table&gt;&lt;b&gt;1. Do I need to use synchronized on setValue(int)?&lt;/b&gt;&lt;br /&gt;
Ans: It depends whether the method affects method local variables, class static or instance variables. If only method local variables are changed, the value is said to be confined by the method and is not prone to threading issues.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;2. Do I need to use synchronized on setValue(int)?&lt;/b&gt;&lt;br /&gt;
Ans: It depends whether the method affects method local variables, class static or instance variables. If only method local variables are changed, the value is said to be confined by the method and is not prone to threading issues.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;3. What is the SwingUtilities.invokeLater(Runnable) method for?&lt;/b&gt;&lt;br /&gt;
Ans: The static utility method invokeLater(Runnable) is intended to execute a new runnable thread from a Swing application without disturbing the normal sequence of event dispatching from the Graphical User Interface (GUI). The method places the runnable object in the queue of Abstract Windowing Toolkit (AWT) events that are due to be processed and returns immediately. The runnable objectrun() method is only called when it reaches the front of the queue. The deferred effect of the invokeLater(Runnable) method ensures that any necessary updates to the user interface can occur immediately, and the runnable work will begin as soon as those high priority events are dealt with. The invoke later method might be used to start work in response to a button click that also requires a significant change to the user interface, perhaps to restrict other activities, while the runnable thread executes.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;4. What is the volatile modifier for?&lt;/b&gt;&lt;br /&gt;
Ans: The volatile modifier is used to identify variables whose values should not be optimized by the Java Virtual Machine, by caching the value for example. The volatile modifier is typically used for variables that may be accessed or modified by numerous independent threads and signifies that the value may change without synchronization.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;5. Which class is the wait() method defined in?&lt;/b&gt;&lt;br /&gt;
Ans: The wait() method is defined in the Object class, which is the ultimate superclass of all others. So the Thread class and any Runnable implementation inherit this method from Object. The wait() method is normally called on an object in a multi-threaded program to allow other threads to run. The method should should only be called by a thread that has ownership of the objectÃ¢â‚¬â„¢s monitor, which usually means it is in a synchronized method or statement block.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;6. Which class is the wait() method defined in?&lt;/b&gt;&lt;br /&gt;
Ans: I get incompatible return type for my threadÃ¢â‚¬â„¢s getState( ) method! - It sounds like your application was built for a Java software development kit before Java 1.5. The Java API Thread class method getState() was introduced in version 1.5. Your thread method has the same name but different return type. The compiler assumes your application code is attempting to override the API method with a different return type, which is not allowed, hence the compilation error.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;7. What is a working thread?&lt;/b&gt;&lt;br /&gt;
Ans: A working thread, more commonly known as a worker thread is the key part of a design pattern that allocates one thread to execute one task. When the task is complete, the thread may return to a thread pool for later use. In this scheme a thread may execute arbitrary tasks, which are passed in the form of a Runnable method argument, typically execute(Runnable). The runnable tasks are usually stored in a queue until a thread host is available to run them. The worker thread design pattern is usually used to handle many concurrent tasks where it is not important which finishes first and no single task needs to be coordinated with another. The task queue controls how many threads run concurrently to improve the overall performance of the system. However, a worker thread framework requires relatively complex programming to set up, so should not be used where simpler threading techniques can achieve similar results.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;8. What is a green thread?&lt;/b&gt;&lt;br /&gt;
Ans: A green thread refers to a mode of operation for the Java Virtual Machine (JVM) in which all code is executed in a single operating system thread. If the Java program has any concurrent threads, the JVM manages multi-threading internally rather than using other operating system threads. There is a significant processing overhead for the JVM to keep track of thread states and swap between them, so green thread mode has been deprecated and removed from more recent Java implementations. Current JVM implementations make more efficient use of native operating system threads.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;9. What are native operating system threads?&lt;/b&gt;&lt;br /&gt;
Ans : Native operating system threads are those provided by the computer operating system that plays host to a Java application, be it Windows, Mac or GNU/Linux. Operating system threads enable computers to run many programs simultaneously on the same central processing unit (CPU) without clashing over the use of system resources or spending lots of time running one program at the expense of another. Operating system thread management is usually optimised to specific microprocessor architecture and features so that it operates much faster than Java green thread processing.&lt;div class="blogger-post-footer"&gt;&lt;a href='http://aptipedia.blogspot.com/'&gt;&lt;b&gt;Aptipedia Tecknowledgies&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://bioinfosys.blogspot.com/'&gt;&lt;b&gt;Bio-informatics System&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://clickitworld.blogspot.com/'&gt;&lt;b&gt;Click-IT-World SEO&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://ecomatter.blogspot.com/'&gt;&lt;b&gt;Ecomatter-Save the Earth&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://www.indiastudychannel.com/r/vijaykrvishwakarma.aspx'&gt;Vijay Kumar Vishwakarma&lt;/a&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2766243001280496875-6709014271569837595?l=aptipedia.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/7mIm9tO9YxXISVhxnaxb8aZUHcc/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/7mIm9tO9YxXISVhxnaxb8aZUHcc/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/7mIm9tO9YxXISVhxnaxb8aZUHcc/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/7mIm9tO9YxXISVhxnaxb8aZUHcc/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=Whrul2jF484:ZyX_c2R1pOE:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=Whrul2jF484:ZyX_c2R1pOE:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/aptipedia/~4/Whrul2jF484" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://aptipedia.blogspot.com/feeds/6709014271569837595/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://aptipedia.blogspot.com/2010/10/java-thread-questions-and-answers.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/6709014271569837595?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/6709014271569837595?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/aptipedia/~3/Whrul2jF484/java-thread-questions-and-answers.html" title="Java Thread Questions and answers" /><author><name>Vijay Vishwakarma</name><uri>http://www.blogger.com/profile/09057543518085257619</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://4.bp.blogspot.com/_uDMQ1-TasRI/S3GH0MbMZBI/AAAAAAAAAIw/UlDqZQBKXUY/S220/VIJAY+KUMAR+VISHWAKARMA.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://aptipedia.blogspot.com/2010/10/java-thread-questions-and-answers.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkcCSXw5fyp7ImA9WxFbFkg.&quot;"><id>tag:blogger.com,1999:blog-2766243001280496875.post-4271810223636271080</id><published>2010-07-09T12:17:00.000+05:30</published><updated>2010-07-09T12:17:48.227+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-07-09T12:17:48.227+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="advance java" /><category scheme="http://www.blogger.com/atom/ns#" term="Technical Interview" /><category scheme="http://www.blogger.com/atom/ns#" term="j2ee interview quesitons" /><category scheme="http://www.blogger.com/atom/ns#" term="javabeans" /><category scheme="http://www.blogger.com/atom/ns#" term="jsp" /><category scheme="http://www.blogger.com/atom/ns#" term="java server pages" /><category scheme="http://www.blogger.com/atom/ns#" term="container" /><category scheme="http://www.blogger.com/atom/ns#" term="servlet" /><category scheme="http://www.blogger.com/atom/ns#" term="Java Technology" /><category scheme="http://www.blogger.com/atom/ns#" term="java 2 enterprise" /><title>J2ee Interview Questions and Answers</title><content type="html">&lt;table&gt;&lt;tr&gt; &lt;td&gt; &lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-8537332319263609";
/* 336x280, created 7/4/10 */
google_ad_slot = "9806425052";
google_ad_width = 336;
google_ad_height = 280;
//--&gt;
&lt;/script&gt; &lt;script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt; &lt;/td&gt; &lt;td&gt; &lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-8537332319263609";
/* 336x280, created 7/4/10 */
google_ad_slot = "4165684471";
google_ad_width = 336;
google_ad_height = 280;
//--&gt;
&lt;/script&gt; &lt;script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt; &lt;/td&gt; &lt;/tr&gt;
&lt;/table&gt;&lt;b&gt;1. What makes J2EE suitable for distributed multitiered Applications?&lt;/b&gt;&lt;br /&gt;
Ans : The J2EE platform uses a multitiered distributed application model. Application logic is divided into components according to function, and the various application components that make up a J2EE application are installed on different machines depending on the tier in the multitiered J2EE environment to which the application component belongs. The J2EE application parts are:&lt;br /&gt;
&lt;br /&gt;
* Client-tier components run on the client machine.&lt;br /&gt;
* Web-tier components run on the J2EE server.&lt;br /&gt;
* Business-tier components run on the J2EE server.&lt;br /&gt;
* Enterprise information system (EIS)-tier software runs on the EIS server.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;2. What is J2EE?&lt;/b&gt;&lt;br /&gt;
Ans : J2EE is an environment for developing and deploying enterprise applications. The J2EE platform consists of a set of services, application programming interfaces (APIs), and protocols that provide the functionality for developing multitiered, web-based applications.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;3. What do Enterprise JavaBeans components contain?&lt;/b&gt;&lt;br /&gt;
Ans : Enterprise JavaBeans components contains Business code, which is logic&lt;br /&gt;
that solves or meets the needs of a particular business domain such as banking, retail, or finance, is handled by enterprise beans running in the business tier. All the business code is contained inside an Enterprise Bean which receives data from client programs, processes it (if necessary), and sends it to the enterprise information system tier for storage. An enterprise bean also retrieves data from storage, processes it (if necessary), and sends it back to the client program.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;4. Is J2EE application only a web-based?&lt;/b&gt;&lt;br /&gt;
Ans : No, It depends on type of application that client wants. A J2EE application can be web-based or non-web-based. if an application client executes on the client machine, it is a non-web-based J2EE application. The J2EE application can provide a way for users to handle tasks such as J2EE system or application administration. It typically has a graphical user interface created from Swing or AWT APIs, or a command-line interface. When user request, it can open an HTTP connection to establish communication with a servlet running in the web tier.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;5. Are JavaBeans J2EE components?&lt;/b&gt;&lt;br /&gt;
Ans : No. JavaBeans components are not considered J2EE components by the J2EE specification. They are written to manage the data flow between an application client or applet and components running on the J2EE server or between server components and a database. JavaBeans components written for the J2EE platform have instance variables and get and set methods for accessing the data in the instance variables. JavaBeans components used in this way are typically simple in design and implementation, but should conform to the naming and design conventions outlined in the JavaBeans component architecture.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;6. Is HTML page a web component?&lt;/b&gt;&lt;br /&gt;
Ans : No. Static HTML pages and applets are bundled with web components during application assembly, but are not considered web components by the J2EE specification. Even the server-side utility classes are not considered web components, either.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;7. What can be considered as a web component?&lt;/b&gt;&lt;br /&gt;
Ans : J2EE Web components can be either servlets or JSP pages. Servlets are Java programming language classes that dynamically process requests and construct responses. JSP pages are text-based documents that execute as servlets but allow a more natural approach to creating static content.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;8. What is the container?&lt;/b&gt;&lt;br /&gt;
Ans : Containers are the interface between a component and the low-level platform specific functionality that supports the component. Before a Web, enterprise bean, or application client component can be executed, it must be assembled into a J2EE application and deployed into its container.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;9. What are container services?&lt;/b&gt;&lt;br /&gt;
Ans : A container is a runtime support of a system-level entity. Containers provide components with services such as lifecycle management, security, deployment, and threading.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;10. What are the components of J2EE application?&lt;/b&gt;&lt;br /&gt;
Ans: A J2EE component is a self-contained functional software unit that is assembled into a J2EE application with its related classes and files and communicates with other components. The J2EE specification defines the following J2EE components:&lt;br /&gt;
&lt;br /&gt;
1. Application clients and applets are client components.&lt;br /&gt;
2. Java Servlet and JavaServer Pages technology components are web components.&lt;br /&gt;
3. Enterprise JavaBeans components (enterprise beans) are business components.&lt;br /&gt;
4. Resource adapter components provided by EIS and tool vendors.&lt;br /&gt;
&lt;!--Start SearchLight--&gt;&lt;br /&gt;
&lt;script type='text/javascript'&gt;
  aster_cloud_id = '2438601';
  aster_cloud_format = '675x90';
&lt;/script&gt;&lt;br /&gt;
&lt;script type='text/javascript'&gt;
  document.write(unescape("%3Cscript src='http://web.asterpix.com/media/js/searchlight.js' type='text/javascript'%3E%3C/script%3E"));
&lt;/script&gt;&lt;br /&gt;
&lt;!--End SearchLight--&gt;&lt;div class="blogger-post-footer"&gt;&lt;a href='http://aptipedia.blogspot.com/'&gt;&lt;b&gt;Aptipedia Tecknowledgies&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://bioinfosys.blogspot.com/'&gt;&lt;b&gt;Bio-informatics System&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://clickitworld.blogspot.com/'&gt;&lt;b&gt;Click-IT-World SEO&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://ecomatter.blogspot.com/'&gt;&lt;b&gt;Ecomatter-Save the Earth&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://www.indiastudychannel.com/r/vijaykrvishwakarma.aspx'&gt;Vijay Kumar Vishwakarma&lt;/a&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2766243001280496875-4271810223636271080?l=aptipedia.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/_d5bwUG9RQ_TIZ4VhuKZk7BuW2g/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/_d5bwUG9RQ_TIZ4VhuKZk7BuW2g/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/_d5bwUG9RQ_TIZ4VhuKZk7BuW2g/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/_d5bwUG9RQ_TIZ4VhuKZk7BuW2g/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=2NNV1FSITe0:k4oLQ9U4EWs:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=2NNV1FSITe0:k4oLQ9U4EWs:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/aptipedia/~4/2NNV1FSITe0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://aptipedia.blogspot.com/feeds/4271810223636271080/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://aptipedia.blogspot.com/2010/07/j2ee-interview-questions-and-answers.html#comment-form" title="3 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/4271810223636271080?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/4271810223636271080?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/aptipedia/~3/2NNV1FSITe0/j2ee-interview-questions-and-answers.html" title="J2ee Interview Questions and Answers" /><author><name>Vijay Vishwakarma</name><uri>http://www.blogger.com/profile/09057543518085257619</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://4.bp.blogspot.com/_uDMQ1-TasRI/S3GH0MbMZBI/AAAAAAAAAIw/UlDqZQBKXUY/S220/VIJAY+KUMAR+VISHWAKARMA.JPG" /></author><thr:total>3</thr:total><feedburner:origLink>http://aptipedia.blogspot.com/2010/07/j2ee-interview-questions-and-answers.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUEEQXw6cSp7ImA9WxFbE0k.&quot;"><id>tag:blogger.com,1999:blog-2766243001280496875.post-9146267547916570875</id><published>2010-07-05T12:18:00.003+05:30</published><updated>2010-07-05T20:56:40.219+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-07-05T20:56:40.219+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Technical Interview" /><category scheme="http://www.blogger.com/atom/ns#" term=".NET Technology" /><title>C Sharp Interview Questions and Answers</title><content type="html">&lt;table style="text-align: justify;"&gt;&lt;tbody&gt;
&lt;tr&gt; &lt;td&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8537332319263609";
/* 336x280, created 7/4/10 */
google_ad_slot = "9806425052";
google_ad_width = 336;
google_ad_height = 280;
//--&gt;
&lt;/script&gt; &lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt; &lt;/td&gt; &lt;td&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8537332319263609";
/* 336x280, created 7/4/10 */
google_ad_slot = "4165684471";
google_ad_width = 336;
google_ad_height = 280;
//--&gt;
&lt;/script&gt; &lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt; &lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;1. What’s the advantage of using System.Text.StringBuilder over System.String?&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Ans : StringBuilder is more efficient in the cases, where a lot of manipulation is done to the text. Strings are immutable, so each time it’s being operated on, a new instance is created.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;2. What’s the C# equivalent of C++ catch (…), which was a catch-all statement for any possible exception?&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Ans : A catch block that catches the exception of type System.Exception. You can also omit the parameter data type in this case and just write catch {}.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;3. Can multiple catch blocks be executed?&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Ans : No, once the proper catch code fires off, the control is transferred to the finally block (if there are any), and then whatever follows the finally block.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;4. Why is it a bad idea to throw your own exceptions?&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Ans : Well, if at that point you know that an error has occurred, then why not write the proper code to handle that error instead of passing a new Exception object to the catch block? Throwing your own exceptions signifies some design flaws in the project.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;5. How’s the DLL Hell problem solved in .NET?&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Ans : Assembly versioning allows the application to specify not only the library it needs to run (which was available under Win32), but also the version of the assembly.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;6. What’s a satellite assembly?&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Ans : When you write a multilingual or multi-cultural application in .NET, and want to distribute the core application separately from the localized modules, the localized assemblies that modify the core application are called satellite assemblies.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;7. What debugging tools come with the .NET SDK?&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Ans : CorDBG – command-line debugger, and DbgCLR – graphic debugger. Visual Studio .NET uses the DbgCLR. To use CorDbg, you must compile the original C# file using the /debug switch.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;8. What does assert() do?&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Ans : In debug compilation, assert takes in a Boolean condition as a parameter, and shows the error dialog if the condition is false. The program proceeds without any interruption if the condition is true.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;9. Why are there five tracing levels in System.Diagnostics.TraceSwitcher?&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Ans : The tracing dumps can be quite verbose and for some applications that are constantly running you run the risk of overloading the machine and the hard drive there. Five levels range from None to Verbose, allowing to fine-tune the tracing activities.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;10. What are three test cases you should go through in unit testing?&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Ans : Positive test cases (correct data, correct output), negative test cases (broken or missing data, proper handling), exception test cases (exceptions are thrown and caught properly).&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;11. What are advantages and disadvantages of Microsoft-provided data provider classes in ADO.NET?&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Ans : SQLServer.NET data provider is high-speed and robust, but requires SQL Server license purchased from Microsoft. OLE-DB.NET is universal for accessing other sources, like Oracle, DB2, Microsoft Access and Informix, but it’s a .NET layer on top of OLE layer, so not the fastest thing in the world. ODBC.NET is a deprecated layer provided for backward compatibility to ODBC engines.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;12. Explain ACID rule of thumb for transactions.&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Ans : Transaction must be Atomic (it is one unit of work and does not dependent on previous and following transactions), Consistent (data is either committed or roll back, no “in-between” case where something has been updated and something hasn’t), Isolated (no transaction sees the intermediate results of the current transaction), Durable (the values persist if the data had been committed even if the system crashes right after).&lt;/div&gt;&lt;!--Start SearchLight--&gt;&lt;br /&gt;
&lt;script type='text/javascript'&gt;
  aster_cloud_id = '2438471';
  aster_cloud_format = '675x90';
&lt;/script&gt;&lt;br /&gt;
&lt;script type='text/javascript'&gt;
  document.write(unescape("%3Cscript src='http://web.asterpix.com/media/js/searchlight.js' type='text/javascript'%3E%3C/script%3E"));
&lt;/script&gt;&lt;br /&gt;
&lt;!--End SearchLight--&gt;&lt;div class="blogger-post-footer"&gt;&lt;a href='http://aptipedia.blogspot.com/'&gt;&lt;b&gt;Aptipedia Tecknowledgies&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://bioinfosys.blogspot.com/'&gt;&lt;b&gt;Bio-informatics System&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://clickitworld.blogspot.com/'&gt;&lt;b&gt;Click-IT-World SEO&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://ecomatter.blogspot.com/'&gt;&lt;b&gt;Ecomatter-Save the Earth&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://www.indiastudychannel.com/r/vijaykrvishwakarma.aspx'&gt;Vijay Kumar Vishwakarma&lt;/a&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2766243001280496875-9146267547916570875?l=aptipedia.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/B_W8c-NUJC1d9K7VSau05hzijmk/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/B_W8c-NUJC1d9K7VSau05hzijmk/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/B_W8c-NUJC1d9K7VSau05hzijmk/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/B_W8c-NUJC1d9K7VSau05hzijmk/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=R-0jm-LI4NE:lV81f-5xGOg:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=R-0jm-LI4NE:lV81f-5xGOg:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/aptipedia/~4/R-0jm-LI4NE" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://aptipedia.blogspot.com/feeds/9146267547916570875/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://aptipedia.blogspot.com/2010/07/c-sharp-interview-questions-and-answers.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/9146267547916570875?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/9146267547916570875?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/aptipedia/~3/R-0jm-LI4NE/c-sharp-interview-questions-and-answers.html" title="C Sharp Interview Questions and Answers" /><author><name>Vijay Vishwakarma</name><uri>http://www.blogger.com/profile/09057543518085257619</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://4.bp.blogspot.com/_uDMQ1-TasRI/S3GH0MbMZBI/AAAAAAAAAIw/UlDqZQBKXUY/S220/VIJAY+KUMAR+VISHWAKARMA.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://aptipedia.blogspot.com/2010/07/c-sharp-interview-questions-and-answers.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0QESHw6eCp7ImA9WxFUFkg.&quot;"><id>tag:blogger.com,1999:blog-2766243001280496875.post-5187733512225966714</id><published>2010-06-27T22:49:00.002+05:30</published><updated>2010-06-27T22:51:49.210+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-06-27T22:51:49.210+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Multiple Choice" /><category scheme="http://www.blogger.com/atom/ns#" term="IT Fundamental" /><title>IT Fundamental - X</title><content type="html">&lt;table style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;tbody&gt;
&lt;tr&gt; &lt;td&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8537332319263609";
/* 300x250, created 3/23/10 */
google_ad_slot = "4342862328";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt; &lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt; &lt;/td&gt; &lt;td&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8537332319263609";
/* 300x250, created 3/23/10 */
google_ad_slot = "6581308415";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt; &lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt; &lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;b&gt;1. On the motherboard (the) … is the temporary computer memory area in which data can be stored.&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;a. expansion slot&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;b. math co-processor&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;c. RAM&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;d. ROM BIOS&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;b&gt;2. The device used in a data communication network to perform the conversion between analogue and digital signals, is called a …&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;a. front end processor.&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;b. modem.&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;c. decoder.&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;d. multiplexer.&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;b&gt;3.If you look carefully at the motherboard, you will notice that some chips are soldered to the board whilst others are plugged into the board. The removable chips allow you to ...&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;a. add extra power sources to your computer.&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;b. integrate the ALU and the system clock unit.&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;c. re-arrange the layout of your motherboard.&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;d. upgrade your computer components.&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;b&gt;4. The Internet offers different services.  Which one listed below is incorrect?&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;a. Chat room&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;b. Electronic mail&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;c. Off line shopping&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;d. World Wide Web&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;b&gt;5. The Internet is ...&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;a. a global network of computers networks.&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;b. a government-owned agency that links computers.&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;c. software for sending e-mail around the world.&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;d. a specialised form of local area network.&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;b&gt;6. The CPU deals with each instruction in a cycle. The sequence of instructions to carry out one machine instruction is called the instruction or machine cycle. The first action is to fetch the instruction from memory and then the program counter is updated (reset). The other three phases of the machine cycle in the correct order are:&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;a. Decode the instruction; Execute the instruction; Transfer the data.&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;b. Decode the instruction; Transfer the data; Execute the instruction.&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;c. Execute the instruction; Decode the instruction; Transfer the data.&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;d. Transfer the data; Execute the instruction; Decode the instruction.&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;b&gt;7. When the electrical power is disrupted or cut off, data and programs are lost in/on (the) ...&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;a. basic tools.&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;b. hard disk.&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;c. memory.&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;d. secondary storage.&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;b&gt;8. The communication bus which is used to fetch the address of an instruction from memory is called the …&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;a. address bus.&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;b. control bus.&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;c. data bus.&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;d. fetch bus.&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;b&gt;9. Read Only Memory (ROM)&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;i.   Is volatile&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;ii.  Is programmable&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;iii. Is mounted on the mother board&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;iv. Contains the bootstrap loader&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;a. i and iii&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;b. i, ii and iv&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;c. ii, iii and iv&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;d. iii and iv&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;&lt;b&gt;10. An online meeting allows users to ...&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;a. determine the receiver's geographic location.&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;b. leave voice messages for one or two people.&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;c. print to a web address that is associated to a particular printer.&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif;"&gt;&lt;span style="font-size: small;"&gt;d. share documents with others in real time.&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;a href='http://aptipedia.blogspot.com/'&gt;&lt;b&gt;Aptipedia Tecknowledgies&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://bioinfosys.blogspot.com/'&gt;&lt;b&gt;Bio-informatics System&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://clickitworld.blogspot.com/'&gt;&lt;b&gt;Click-IT-World SEO&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://ecomatter.blogspot.com/'&gt;&lt;b&gt;Ecomatter-Save the Earth&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://www.indiastudychannel.com/r/vijaykrvishwakarma.aspx'&gt;Vijay Kumar Vishwakarma&lt;/a&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2766243001280496875-5187733512225966714?l=aptipedia.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/lmuUuG0TJi2HwNCkK7gl8rFxEH4/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/lmuUuG0TJi2HwNCkK7gl8rFxEH4/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/lmuUuG0TJi2HwNCkK7gl8rFxEH4/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/lmuUuG0TJi2HwNCkK7gl8rFxEH4/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=5UbIkYbSKVg:J0ooVF2BIjY:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=5UbIkYbSKVg:J0ooVF2BIjY:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/aptipedia/~4/5UbIkYbSKVg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://aptipedia.blogspot.com/feeds/5187733512225966714/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://aptipedia.blogspot.com/2010/06/it-fundamental-x.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/5187733512225966714?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/5187733512225966714?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/aptipedia/~3/5UbIkYbSKVg/it-fundamental-x.html" title="IT Fundamental - X" /><author><name>Vijay Vishwakarma</name><uri>http://www.blogger.com/profile/09057543518085257619</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://4.bp.blogspot.com/_uDMQ1-TasRI/S3GH0MbMZBI/AAAAAAAAAIw/UlDqZQBKXUY/S220/VIJAY+KUMAR+VISHWAKARMA.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://aptipedia.blogspot.com/2010/06/it-fundamental-x.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Ck4DQnYyeSp7ImA9WxFVGEk.&quot;"><id>tag:blogger.com,1999:blog-2766243001280496875.post-1222028226341833782</id><published>2010-06-18T11:32:00.000+05:30</published><updated>2010-06-18T11:32:53.891+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-06-18T11:32:53.891+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Multiple Choice" /><category scheme="http://www.blogger.com/atom/ns#" term="Software Engg." /><title>Software Engg. - III</title><content type="html">&lt;table style="text-align: justify;"&gt;&lt;tbody&gt;
&lt;tr&gt; &lt;td&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8537332319263609";
/* 300x250, created 3/23/10 */
google_ad_slot = "4342862328";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt; &lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt; &lt;/td&gt; &lt;td&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8537332319263609";
/* 300x250, created 3/23/10 */
google_ad_slot = "6581308415";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt; &lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt; &lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;1) Business model is the part of designing phase of software engineering development life cycle&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;a. True&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;b. False&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;2) The state transition diagram&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;a. depicts relationships between data objects&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;b. depicts functions that transform the data flow&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;c. indicates how data are transformed by the system&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;d. indicates system reactions to external events&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;3) The best way to conduct a requirements validation review is to&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;a. Examine the system&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;b. Have the customer look over the requirements&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;c. Send them to the design team&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;d. Use checklist to examine the questions&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;4) The system specification describes the&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;a. Function, performance and constraints of a computer-based system&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;b. implementation of each allocated system&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;c. time required for simulation&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;d. element software architecture&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;5) For each of the following given Requirement indicate whether it is Functional (F) or Non-&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana, sans-serif; font-size: small;"&gt;&lt;b&gt;Functional (N) Requirement.&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;a. The System should be designed so it can later be extended to a Blue Line&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;reservation System.(N)&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;b. The System will allow the user to view the layout of seats in Bus.(F)&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;c. The System must be available at all times.(N)&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;d. A given seat can be assigned to only one person.(F)&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;6)Both the software engineer and customer take an active role in software requirements engineering-a set of activities that is often referred to as Requirement_______________&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;a. Managing&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;b. Recognition&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;c. Analysis&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;d. Modeling&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;7)_________ is a measure of independence of a module or component.&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;a. Cohesion&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;b. Coupling&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;c. Loop coupling&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;d. Loop cohesion&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;8) In the Functional design, the structure of the system revolves around __________&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;a. Functions&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;b. Sequences&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;c. Models&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;d. Flows&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;9)Use case is the part of designing phase of software engineering&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;a. True&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;b. False&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;10) Three categories of risks are&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;a. Business, personnel risks, budget risks&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;b. project risks, technical risks, business risks&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;c. planning risks, technical risks, personnel risks&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;d. management risks, technical risks, design risks&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;a href='http://aptipedia.blogspot.com/'&gt;&lt;b&gt;Aptipedia Tecknowledgies&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://bioinfosys.blogspot.com/'&gt;&lt;b&gt;Bio-informatics System&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://clickitworld.blogspot.com/'&gt;&lt;b&gt;Click-IT-World SEO&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://ecomatter.blogspot.com/'&gt;&lt;b&gt;Ecomatter-Save the Earth&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://www.indiastudychannel.com/r/vijaykrvishwakarma.aspx'&gt;Vijay Kumar Vishwakarma&lt;/a&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2766243001280496875-1222028226341833782?l=aptipedia.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/aqYoOr4__Ygu38e6uv5egoTmxCw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/aqYoOr4__Ygu38e6uv5egoTmxCw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/aqYoOr4__Ygu38e6uv5egoTmxCw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/aqYoOr4__Ygu38e6uv5egoTmxCw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=4rAqI5Vm2IA:iSYGtQMVLH8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=4rAqI5Vm2IA:iSYGtQMVLH8:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/aptipedia/~4/4rAqI5Vm2IA" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://aptipedia.blogspot.com/feeds/1222028226341833782/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://aptipedia.blogspot.com/2010/06/software-engg-iii.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/1222028226341833782?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/1222028226341833782?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/aptipedia/~3/4rAqI5Vm2IA/software-engg-iii.html" title="Software Engg. - III" /><author><name>Vijay Vishwakarma</name><uri>http://www.blogger.com/profile/09057543518085257619</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://4.bp.blogspot.com/_uDMQ1-TasRI/S3GH0MbMZBI/AAAAAAAAAIw/UlDqZQBKXUY/S220/VIJAY+KUMAR+VISHWAKARMA.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://aptipedia.blogspot.com/2010/06/software-engg-iii.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkECRnc7cCp7ImA9WxFVFUU.&quot;"><id>tag:blogger.com,1999:blog-2766243001280496875.post-2830169595248830084</id><published>2010-06-13T23:04:00.002+05:30</published><updated>2010-06-15T13:27:47.908+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-06-15T13:27:47.908+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Multiple Choice" /><category scheme="http://www.blogger.com/atom/ns#" term="Software Engg." /><title>Software Engg. - II</title><content type="html">&lt;table style="text-align: justify;"&gt;&lt;tbody&gt;
&lt;tr&gt; &lt;td&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8537332319263609";
/* 300x250, created 3/23/10 */
google_ad_slot = "4342862328";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt; &lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt; &lt;/td&gt; &lt;td&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8537332319263609";
/* 300x250, created 3/23/10 */
google_ad_slot = "6581308415";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt; &lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt; &lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;1. Decomposing the major project deliverables into smaller, more manageable components to provide better control is called:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;a)    Project planning.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;b)    Scope definition.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;c)    Project base lining.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;d)    Requirements verification.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;2. Select one aspect that is NOT included in a feasibility analysis for new system?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;a)    Organisational objectives   &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;b)    Cost effectiveness   &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;c)    Technical feasibility   &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;d)    Budgetary constraints   &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;e)    Requirements validation   &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;3. One of the fundamental tenets of quality management is that quality:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;a)    Must exceed customer expectations.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;b)    Is planned in and not inspected in.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;c)    Will increase cost.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;d)    Costs must all be passed onto the customer.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;4. In the Shewhart and Deming Quality cycle, the letters P D C A stands for:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;a)    Purchase, deliver, cost, and acquisition.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;b)    Prevent defects caused by anyone.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;c)    Plan, do, check, and act.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;d)    Please don’t cause accidents.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;5. Which is NOT included in the software requirements specification?  &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;a)    test specifications for each mandatory requirement&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;b)    project schedule and WBS   &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;c)    functional description of user requirements   &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;d)    performance description for each non-functional requirement   &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;e)    data dictionary&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;6. A data dictionary was created during the requirements analysis phase of a software engineering project. What information does it contain?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;a)    interface design criteria&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;b)    data types and description of database table entries&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;c)    restrictions on security&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;d)    list of main functional requirements &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;7. A software project classifies system entities, their activities and relationships. The classification and abstraction of system entities is important.  Which modelling methodology most clearly shows the classification and abstraction of entities in the system?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;a)    data flow model   &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;b)    event driven model   &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;c)    object oriented model   &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;d)    entity-relationship model &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;8. Which of the following is NOT a non-functional system requirement component?  &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;a)    cost   &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;b)    reliability   &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;c)    usability   &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;d)    performance   &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;e)    maintainability   &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;9. What is the purpose of a test case specification in software engineering?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;a)    to specify the sequence of actions for the execution of a number of sequential tests   &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;b)    to specify inputs, predicted results, and a set of execution conditions for a test item   &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;c)    to list the test procedures to be performed on the integration of the system database&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;d)    to report the specific tests results when integrating software modules &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;10. In the software testing process, when is validation testing performed?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;a)    after coding   &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;b)    after unit testing   &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;c)    after module testing   &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;d)    after integration testing&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;a href='http://aptipedia.blogspot.com/'&gt;&lt;b&gt;Aptipedia Tecknowledgies&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://bioinfosys.blogspot.com/'&gt;&lt;b&gt;Bio-informatics System&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://clickitworld.blogspot.com/'&gt;&lt;b&gt;Click-IT-World SEO&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://ecomatter.blogspot.com/'&gt;&lt;b&gt;Ecomatter-Save the Earth&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://www.indiastudychannel.com/r/vijaykrvishwakarma.aspx'&gt;Vijay Kumar Vishwakarma&lt;/a&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2766243001280496875-2830169595248830084?l=aptipedia.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/70eZ9-aCCPv22cI1auCoQYvutgs/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/70eZ9-aCCPv22cI1auCoQYvutgs/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/70eZ9-aCCPv22cI1auCoQYvutgs/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/70eZ9-aCCPv22cI1auCoQYvutgs/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=-zU9LgIynXk:5SVb7qCfKxw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=-zU9LgIynXk:5SVb7qCfKxw:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/aptipedia/~4/-zU9LgIynXk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://aptipedia.blogspot.com/feeds/2830169595248830084/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://aptipedia.blogspot.com/2010/06/software-engineering-ii.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/2830169595248830084?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/2830169595248830084?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/aptipedia/~3/-zU9LgIynXk/software-engineering-ii.html" title="Software Engg. - II" /><author><name>Vijay Vishwakarma</name><uri>http://www.blogger.com/profile/09057543518085257619</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://4.bp.blogspot.com/_uDMQ1-TasRI/S3GH0MbMZBI/AAAAAAAAAIw/UlDqZQBKXUY/S220/VIJAY+KUMAR+VISHWAKARMA.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://aptipedia.blogspot.com/2010/06/software-engineering-ii.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUEMRXk6cSp7ImA9WxFVE0w.&quot;"><id>tag:blogger.com,1999:blog-2766243001280496875.post-1580387948253098540</id><published>2010-06-12T10:11:00.000+05:30</published><updated>2010-06-12T10:11:24.719+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-06-12T10:11:24.719+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Technical Interview" /><category scheme="http://www.blogger.com/atom/ns#" term=".NET Technology" /><title>C# DotNet Questions</title><content type="html">&lt;table style="text-align: justify;"&gt;&lt;tbody&gt;
&lt;tr&gt; &lt;td&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8537332319263609";
/* 300x250, created 3/23/10 */
google_ad_slot = "4342862328";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt; &lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt; &lt;/td&gt; &lt;td&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8537332319263609";
/* 300x250, created 3/23/10 */
google_ad_slot = "6581308415";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt; &lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt; &lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;1. What’s the implicit name of the parameter that gets passed into the class’ set method?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;Value, and its datatype depends on whatever variable we’re changing. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;2. How do you inherit from a class in C#?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;Place a colon and then the name of the base class. Notice that it’s double colon in C++. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;3. Does C# support multiple inheritance?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;No, use interfaces instead. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;4. When you inherit a protected class-level variable, who is it available to?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;Classes in the same namespace. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;5. Are private class-level variables inherited?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;Yes, but they are not accessible, so looking at it you can honestly say that they are not inherited. But they are. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;6. Describe the accessibility modifier protected internal.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;It’s available to derived classes and classes within the same Assembly (and naturally from the base class it’s declared in). &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;7. C# provides a default constructor for me. I write a constructor that takes a string as a parameter, but want to keep the no parameter one. How many constructors should I write?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;Two. Once you write at least one constructor, C# cancels the freebie constructor, and now you have to write one yourself, even if there’s no implementation in it. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;8. What’s the top .NET class that everything is derived from&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;System.Object. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;9. How’s method overriding different from overloading?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;When overriding, you change the method behavior for a derived class. Overloading simply involves having a method with the same name within the class. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;10. What does the keyword virtual mean in the method definition?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;The method can be over-ridden. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;11. Can you declare the override method static while the original method is non-static?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;No, you can’t, the signature of the virtual method must remain the same, only the keyword virtual is changed to keyword override. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;12. Can you override private virtual methods?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;No, moreover, you cannot access private methods in inherited classes, have to be protected in the base class to allow any sort of access. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;13. Can you prevent your class from being inherited and becoming a base class for some other classes?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;Yes, that’s what keyword sealed in the class definition is for. The developer trying to derive from your class will get a message: cannot inherit from Sealed class WhateverBaseClassName. It’s the same concept as final class in Java. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;14. Can you allow class to be inherited, but prevent the method from being over-ridden?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;Yes, just leave the class public and make the method sealed. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;b&gt;15. What’s an abstract class?&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;A class that cannot be instantiated. A concept in C++ known as pure virtual method. A class that must be inherited and have the methods over-ridden. Essentially, it’s a blueprint for a class without any implementation. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;a href='http://aptipedia.blogspot.com/'&gt;&lt;b&gt;Aptipedia Tecknowledgies&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://bioinfosys.blogspot.com/'&gt;&lt;b&gt;Bio-informatics System&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://clickitworld.blogspot.com/'&gt;&lt;b&gt;Click-IT-World SEO&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://ecomatter.blogspot.com/'&gt;&lt;b&gt;Ecomatter-Save the Earth&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://www.indiastudychannel.com/r/vijaykrvishwakarma.aspx'&gt;Vijay Kumar Vishwakarma&lt;/a&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2766243001280496875-1580387948253098540?l=aptipedia.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/bHGiA3RiCdB07fxmqV8jq3kUnSM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/bHGiA3RiCdB07fxmqV8jq3kUnSM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/bHGiA3RiCdB07fxmqV8jq3kUnSM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/bHGiA3RiCdB07fxmqV8jq3kUnSM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=v4IrXzXOe1o:ekENkETVQQI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=v4IrXzXOe1o:ekENkETVQQI:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/aptipedia/~4/v4IrXzXOe1o" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://aptipedia.blogspot.com/feeds/1580387948253098540/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://aptipedia.blogspot.com/2010/06/c-dotnet-questions.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/1580387948253098540?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/1580387948253098540?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/aptipedia/~3/v4IrXzXOe1o/c-dotnet-questions.html" title="C# DotNet Questions" /><author><name>Vijay Vishwakarma</name><uri>http://www.blogger.com/profile/09057543518085257619</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://4.bp.blogspot.com/_uDMQ1-TasRI/S3GH0MbMZBI/AAAAAAAAAIw/UlDqZQBKXUY/S220/VIJAY+KUMAR+VISHWAKARMA.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://aptipedia.blogspot.com/2010/06/c-dotnet-questions.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0EHR3s8fCp7ImA9WxFXFk8.&quot;"><id>tag:blogger.com,1999:blog-2766243001280496875.post-5239234172231137133</id><published>2010-05-23T18:55:00.001+05:30</published><updated>2010-05-23T19:03:56.574+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-05-23T19:03:56.574+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Technical Interview" /><category scheme="http://www.blogger.com/atom/ns#" term="Java Technology" /><title>Java Fundamental-X</title><content type="html">&lt;table style="text-align: justify;"&gt;&lt;tbody&gt;
&lt;tr&gt; &lt;td&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8537332319263609";
/* 300x250, created 3/23/10 */
google_ad_slot = "4342862328";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt; &lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt; &lt;/td&gt; &lt;td&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8537332319263609";
/* 300x250, created 3/23/10 */
google_ad_slot = "6581308415";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt; &lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt; &lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;1. What is J2EE Connector? &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;The J2EE Connector API is used by J2EE tools vendors and system integrators to create resource adapters that support access to enterprise information systems that can be plugged into any J2EE product. Each type of database or EIS has a different resource adapter. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;2. What is JAAP? &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;The Java Authentication and Authorization Service (JAAS) provide a way for a J2EE application to authenticate and authorize a specific user or group of users to run it. It is a standard Pluggable Authentication Module (PAM) framework that extends the Java 2 platform security architecture to support user-based authorization. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;3. What is Model 1? &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;Using JSP technology alone to develop Web page. Such term is used in the earlier JSP specification. Model 1 architecture is suitable for applications that have very simple page flow, have little need for centralized security control or logging, and change little over time. Model 1 applications can often be refactored to Model 2 when application requirements change. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;4. What is Model 2? &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;Using JSP and Servlet together to develop Web page. Model 2 applications are easier to maintain and extend, because views do not refer to each other directly. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;5. What is Struts? &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;A Web page development framework. Struts combine Java Servlets, Java Server Pages, custom tags, and message resources into a unified framework. It is a cooperative, synergistic platform, suitable for development teams, independent developers, and everyone between. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;6. How is the MVC design pattern used in Struts framework? &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;In the MVC design pattern, application flow is mediated by a central Controller. The Controller delegates requests to an appropriate handler. The handlers are tied to a Model, and each handler acts as an adapter between the request and the Model. The Model represents, or encapsulates, an application's business logic or state. Control is usually then forwarded back through the Controller to the appropriate View. The forwarding can be determined by consulting a set of mappings, usually loaded from a database or configuration file. This provides a loose coupling between the View and Model, which can make an application significantly easier to create and maintain. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;Controller--Servlet controller which supplied by Struts itself; View --- what you can see on the screen, a JSP page and presentation components; Model --- System state and a business logic JavaBeans. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;7. What does web module contain?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;The web module contains: &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;o JSP files, &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;o class files for Servlets, &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;o GIF and HTML files, and &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;o A Web deployment descriptor. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;Web modules are packaged as JAR files with a .war (Web Archive) extension. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;8. What APIs are available for developing a J2EE application? &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;o Enterprise JavaBeans Technology(3 beans: Session Beans, Entity Beans and Message-Driven Beans) &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;o JDBC API(application level interface and service provider interface or driver) &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;o Java Servlets Technology(Servlet) &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;o Java ServerPage Technology(JSP) &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;o Java Message Service(JMS) &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;o Java Naming and Directory Interface(JNDI) &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;o Java Transaction API(JTA) &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;o JavaMail API &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;o JavaBeans Activation Framework(JAF used by JavaMail) &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;o Java API for XML Processing(JAXP,SAX, DOM, XSLT) &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;o Java API for XML Registries(JAXR) &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;o Java API for XML-Based RPC(JAX-RPC)-SOAP standard and HTTP &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;o SOAP with Attachments API for Java(SAAJ)-- low-level API upon which JAX-RPC depends &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;o J2EE Connector Architecture &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;o Java Authentication and Authorization Service(JAAS)&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;a href='http://aptipedia.blogspot.com/'&gt;&lt;b&gt;Aptipedia Tecknowledgies&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://bioinfosys.blogspot.com/'&gt;&lt;b&gt;Bio-informatics System&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://clickitworld.blogspot.com/'&gt;&lt;b&gt;Click-IT-World SEO&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://ecomatter.blogspot.com/'&gt;&lt;b&gt;Ecomatter-Save the Earth&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://www.indiastudychannel.com/r/vijaykrvishwakarma.aspx'&gt;Vijay Kumar Vishwakarma&lt;/a&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2766243001280496875-5239234172231137133?l=aptipedia.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/ObTH39ClUYVR8SAUd-zqNkj1uO4/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ObTH39ClUYVR8SAUd-zqNkj1uO4/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/ObTH39ClUYVR8SAUd-zqNkj1uO4/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ObTH39ClUYVR8SAUd-zqNkj1uO4/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=8nhbTikcmfo:1yvM7g5VQbc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=8nhbTikcmfo:1yvM7g5VQbc:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/aptipedia/~4/8nhbTikcmfo" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://aptipedia.blogspot.com/feeds/5239234172231137133/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://aptipedia.blogspot.com/2010/05/java-fundamental-x.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/5239234172231137133?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/5239234172231137133?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/aptipedia/~3/8nhbTikcmfo/java-fundamental-x.html" title="Java Fundamental-X" /><author><name>Vijay Vishwakarma</name><uri>http://www.blogger.com/profile/09057543518085257619</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://4.bp.blogspot.com/_uDMQ1-TasRI/S3GH0MbMZBI/AAAAAAAAAIw/UlDqZQBKXUY/S220/VIJAY+KUMAR+VISHWAKARMA.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://aptipedia.blogspot.com/2010/05/java-fundamental-x.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEIBQX04eCp7ImA9WxFQE0k.&quot;"><id>tag:blogger.com,1999:blog-2766243001280496875.post-3228957636772796026</id><published>2010-05-08T23:45:00.000+05:30</published><updated>2010-05-08T23:45:50.330+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-05-08T23:45:50.330+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Technical Interview" /><category scheme="http://www.blogger.com/atom/ns#" term="Java Technology" /><title>Java Fundamental-IX</title><content type="html">&lt;table style="text-align: justify;"&gt;&lt;tbody&gt;
&lt;tr&gt; &lt;td&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8537332319263609";
/* 300x250, created 3/23/10 */
google_ad_slot = "4342862328";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt; &lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt; &lt;/td&gt; &lt;td&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8537332319263609";
/* 300x250, created 3/23/10 */
google_ad_slot = "6581308415";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt; &lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt; &lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;1. Are JavaBeans J2EE components? &lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;NO. JavaBeans components are not considered J2EE components by the J2EE specification. JavaBeans components written for the J2EE platform have instance variables and get and set methods for accessing the data in the instance variables. JavaBeans components used in this way are typically simple in design and implementation, but should conform to the naming and design conventions outlined in the JavaBeans component architecture. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;2. Is HTML page a web component? &lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;NO. Static HTML pages and applets are bundled with web components during application assembly, but are not considered web components by the J2EE specification. Even the server-side utility classes are not considered web components, either. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;3. What is the container? &lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;A container is a runtime support of a system-level entity. Containers provide components with services such as lifecycle management, security, deployment, and threading. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;4. What is the web container? &lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;Servlet and JSP containers are collectively referred to as Web containers. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;5. What is the thin client? &lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;A thin client is a lightweight interface to the application that does not have such operations like query databases, execute complex business rules, or connect to legacy applications. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;6. What are types of J2EE clients? &lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;o Applets &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;o Application clients &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;o Java Web Start-enabled rich clients, powered by Java Web Start technology. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;o Wireless clients, based on Mobile Information Device Profile (MIDP) technology.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;7. What is deployment descriptor? &lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;A deployment descriptor is an Extensible Markup Language (XML) text-based file with an .xml extension that describes a component's deployment settings. A J2EE application and each of its modules has its own deployment descriptor. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;8. What is the EAR file? &lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;An EAR file is a standard JAR file with an .ear extension, named from Enterprise Archive file. A J2EE application with all of its modules is delivered in EAR file. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;9. What are JTA and JTS? &lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;JTA is the abbreviation for the Java Transaction API. JTS is the abbreviation for the Java Transaction Service. JTA provides a standard interface and allows you to demarcate transactions in a manner that is independent of the transaction manager implementation. The J2EE SDK implements the transaction manager with JTS. But your code doesn't call the JTS methods directly. Instead, it invokes the JTA methods, which then call the lower-level JTS routines. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;Therefore, JTA is a high level transaction interface that your application uses to control transaction. And JTS is a low level transaction interface and EJBs uses behind the scenes (client code doesn't directly interact with JTS. It is based on object transaction service (OTS) which is part of CORBA. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;10. What is JAXP? &lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;JAXP stands for Java API for XML. XML is a language for representing and describing text-based data which can be read and handled by any program or tool that uses XML APIs. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;a href='http://aptipedia.blogspot.com/'&gt;&lt;b&gt;Aptipedia Tecknowledgies&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://bioinfosys.blogspot.com/'&gt;&lt;b&gt;Bio-informatics System&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://clickitworld.blogspot.com/'&gt;&lt;b&gt;Click-IT-World SEO&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://ecomatter.blogspot.com/'&gt;&lt;b&gt;Ecomatter-Save the Earth&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://www.indiastudychannel.com/r/vijaykrvishwakarma.aspx'&gt;Vijay Kumar Vishwakarma&lt;/a&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2766243001280496875-3228957636772796026?l=aptipedia.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/r8qbT4VnB7FLAv6STAPGkXt4TUM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/r8qbT4VnB7FLAv6STAPGkXt4TUM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/r8qbT4VnB7FLAv6STAPGkXt4TUM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/r8qbT4VnB7FLAv6STAPGkXt4TUM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=DYfhWRnetDw:EMNn7fBtx9w:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=DYfhWRnetDw:EMNn7fBtx9w:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/aptipedia/~4/DYfhWRnetDw" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://aptipedia.blogspot.com/feeds/3228957636772796026/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://aptipedia.blogspot.com/2010/05/java-fundamental-ix.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/3228957636772796026?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/3228957636772796026?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/aptipedia/~3/DYfhWRnetDw/java-fundamental-ix.html" title="Java Fundamental-IX" /><author><name>Vijay Vishwakarma</name><uri>http://www.blogger.com/profile/01477230667424407281</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://3.bp.blogspot.com/_dheBdt7i2eE/SsrrsB1K_dI/AAAAAAAAAB4/yDL9KQVLd78/S220/vijay.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://aptipedia.blogspot.com/2010/05/java-fundamental-ix.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Dk4NRHk7eip7ImA9WxFRF0o.&quot;"><id>tag:blogger.com,1999:blog-2766243001280496875.post-3544812071446942323</id><published>2010-05-02T10:04:00.001+05:30</published><updated>2010-05-02T10:06:35.702+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-05-02T10:06:35.702+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Technical Interview" /><category scheme="http://www.blogger.com/atom/ns#" term="Java Technology" /><title>Java Fundamental-VIII</title><content type="html">&lt;table style="text-align: justify;"&gt;&lt;tbody&gt;
&lt;tr&gt; &lt;td&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8537332319263609";
/* 300x250, created 3/23/10 */
google_ad_slot = "4342862328";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt; &lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt; &lt;/td&gt; &lt;td&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8537332319263609";
/* 300x250, created 3/23/10 */
google_ad_slot = "6581308415";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt; &lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt; &lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;b&gt;1. What is J2EE? &lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;J2EE is an environment for developing and deploying enterprise applications. The J2EE platform consists of a set of services, application programming interfaces (APIs), and protocols that provide the functionality for developing multi tiered, and web-based applications. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;b&gt;2. What is the J2EE module? &lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;A J2EE module consists of one or more J2EE components for the same container type and one component deployment descriptor of that type. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;b&gt;3. What are the components of J2EE application? &lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;A J2EE component is a self-contained functional software unit that is assembled into a J2EE application with its related classes and files and communicates with other components. The J2EE specification defines the following J2EE components: &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;o Application clients and applets are client components. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;o Java Servlets and Java Server Pages TM (JSPTM) technology components are web components. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;o Enterprise JavaBeansTM (EJBTM) components (enterprise beans) are business components. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;o Resource adapter components provided by EIS and tool vendors. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;b&gt;4. What are the four types of J2EE modules? &lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;1. Application client module &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;2. Web module &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;3. Enterprise JavaBeans module &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;4. Resource adapter module &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;b&gt;5. What does application client module contain? &lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;The application client module contains: &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;o class files, &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;o an application client deployment descriptor. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;Application client modules are packaged as JAR files with a .jar extension. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;b&gt;6. What does Enterprise JavaBeans module contain? &lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;The Enterprise JavaBeans module contains: &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;o class files for enterprise beans &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;o An EJB deployment descriptor. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;EJB modules are packaged as JAR files with a .jar extension. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;b&gt;7. What does resource adapt module contain? &lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;The resource adapt module contains: &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;o all Java interfaces, &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;o classes, &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;o native libraries, &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;o other documentation, &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;o A resource adapter deployment descriptor. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;Resource adapter modules are packages as JAR files with a .rar (Resource adapter Archive) extension. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;b&gt;8. Is J2EE application only a web-based?&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;NO. A J2EE application can be web-based or non-web-based. If an application client executes on the client machine, it is a non-web-based J2EE application. The J2EE application can provide a way for users to handle tasks such as J2EE system or application administration. It typically has a graphical user interface created from Swing or AWT APIs, or a command-line interface. When user request, it can open an HTTP connection to establish communication with a Servlet running in the web tier. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;a href='http://aptipedia.blogspot.com/'&gt;&lt;b&gt;Aptipedia Tecknowledgies&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://bioinfosys.blogspot.com/'&gt;&lt;b&gt;Bio-informatics System&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://clickitworld.blogspot.com/'&gt;&lt;b&gt;Click-IT-World SEO&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://ecomatter.blogspot.com/'&gt;&lt;b&gt;Ecomatter-Save the Earth&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://www.indiastudychannel.com/r/vijaykrvishwakarma.aspx'&gt;Vijay Kumar Vishwakarma&lt;/a&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2766243001280496875-3544812071446942323?l=aptipedia.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/MQHDINnciZtjYwi3JefVBU3lIsU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/MQHDINnciZtjYwi3JefVBU3lIsU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/MQHDINnciZtjYwi3JefVBU3lIsU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/MQHDINnciZtjYwi3JefVBU3lIsU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=PHUCgMcCwxA:ClvF0OqMD-g:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=PHUCgMcCwxA:ClvF0OqMD-g:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/aptipedia/~4/PHUCgMcCwxA" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://aptipedia.blogspot.com/feeds/3544812071446942323/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://aptipedia.blogspot.com/2010/05/java-fundamental-viii.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/3544812071446942323?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/3544812071446942323?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/aptipedia/~3/PHUCgMcCwxA/java-fundamental-viii.html" title="Java Fundamental-VIII" /><author><name>Vijay Vishwakarma</name><uri>http://www.blogger.com/profile/09057543518085257619</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://4.bp.blogspot.com/_uDMQ1-TasRI/S3GH0MbMZBI/AAAAAAAAAIw/UlDqZQBKXUY/S220/VIJAY+KUMAR+VISHWAKARMA.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://aptipedia.blogspot.com/2010/05/java-fundamental-viii.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0ACRXcyeip7ImA9WxFRFEk.&quot;"><id>tag:blogger.com,1999:blog-2766243001280496875.post-6356601039152387497</id><published>2010-04-28T13:28:00.001+05:30</published><updated>2010-04-28T13:32:44.992+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-04-28T13:32:44.992+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Technical Interview" /><category scheme="http://www.blogger.com/atom/ns#" term="DBMS / PL / SQL" /><title>Database System-V</title><content type="html">&lt;table style="text-align: justify;"&gt;&lt;tbody&gt;
&lt;tr&gt; &lt;td&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8537332319263609";
/* 300x250, created 3/23/10 */
google_ad_slot = "4342862328";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt; &lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt; &lt;/td&gt; &lt;td&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8537332319263609";
/* 300x250, created 3/23/10 */
google_ad_slot = "6581308415";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt; &lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt; &lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;1. What is View?&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;A simple view can be thought of as a subset of a table. It can be used for retrieving data, as well as updating or deleting rows. Rows updated or deleted in the view are updated or deleted in the table the view was created with. It should also be noted that as data in the original table changes, so does data in the view, as views are the way to look at part of the original table. The results of using a view are not permanently stored in the database . The data accessed through a view is actually constructed using standard T-SQL select command and can come from one to many different base tables or even other views.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;2. What is Index?&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;An index is a physical structure containing pointers to the data. Indices are created in an existing table to locate rows more quickly and efficiently. It is possible to create an index on one or more columns of a table, and each index is given a name. The users cannot see the indexes, they are just used to speed up queries. Effective indexes are one of the best ways to improve performance in a database application.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;A table scan happens when there is no index available to help a query. In a table scan SQL Server examines every row in the table to satisfy the query results. Table scans are sometimes unavoidable, but on large tables, scans have a terrific impact on performance. Clustered indexes define the physical sorting of a database table’s rows in the storage media. For this reason, ea ch database table may have only one clustered index. Non-clustered indexes are created outside of the database table and contain a sorted list of references&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;to the table itself.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;3. What is the difference between clustered and a non-clustered index?&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;A clustered index is a special type of index that reorders the wa y records in the table are physically stored. Therefore table can have only one clustered index. The leaf nodes of a clustered index contain the data pages. A nonclustered index is a special type of index in which the logical order of the index does not match the physical stored order of the rows on disk. The leaf node of a nonclustered index does not consist of the data pages. Instead, the leaf nodes contain index rows.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;4. What are the different index configurations a table can have?&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;A table can have one of the following index configurations:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;a. No indexes&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;b. A clustered index&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;c. A clustered index and many nonclustered indexes&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;d. A nonclustered index&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;e. Many nonclustered indexes&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;5 .What is cursors?&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;Cursor is a database object used by applications to manipulate data in a set on a row-by-row basis, instead of the typical SQL commands that operate on all the rows in the set at one time. In order to work with a cursor we need to perform some steps in the following order:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;a. Declare cursor&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;b. Open cursor&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;c. Fetch row from the cursor&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;d. Process fetched row&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;e. Close cursor&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;f. Deallocate cursor&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;a href='http://aptipedia.blogspot.com/'&gt;&lt;b&gt;Aptipedia Tecknowledgies&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://bioinfosys.blogspot.com/'&gt;&lt;b&gt;Bio-informatics System&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://clickitworld.blogspot.com/'&gt;&lt;b&gt;Click-IT-World SEO&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://ecomatter.blogspot.com/'&gt;&lt;b&gt;Ecomatter-Save the Earth&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://www.indiastudychannel.com/r/vijaykrvishwakarma.aspx'&gt;Vijay Kumar Vishwakarma&lt;/a&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2766243001280496875-6356601039152387497?l=aptipedia.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/pO-3B1Y8uIoRks27GHLsuY88gjY/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/pO-3B1Y8uIoRks27GHLsuY88gjY/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/pO-3B1Y8uIoRks27GHLsuY88gjY/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/pO-3B1Y8uIoRks27GHLsuY88gjY/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=zYLO-uq4ahg:dKcOtO2tkr0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=zYLO-uq4ahg:dKcOtO2tkr0:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/aptipedia/~4/zYLO-uq4ahg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://aptipedia.blogspot.com/feeds/6356601039152387497/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://aptipedia.blogspot.com/2010/04/database-system-v.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/6356601039152387497?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/6356601039152387497?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/aptipedia/~3/zYLO-uq4ahg/database-system-v.html" title="Database System-V" /><author><name>Vijay Vishwakarma</name><uri>http://www.blogger.com/profile/09057543518085257619</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://4.bp.blogspot.com/_uDMQ1-TasRI/S3GH0MbMZBI/AAAAAAAAAIw/UlDqZQBKXUY/S220/VIJAY+KUMAR+VISHWAKARMA.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://aptipedia.blogspot.com/2010/04/database-system-v.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D08MQngyeSp7ImA9WxFSF0U.&quot;"><id>tag:blogger.com,1999:blog-2766243001280496875.post-47634185575953038</id><published>2010-04-19T11:18:00.001+05:30</published><updated>2010-04-20T23:21:23.691+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-04-20T23:21:23.691+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Technical Interview" /><category scheme="http://www.blogger.com/atom/ns#" term="DBMS / PL / SQL" /><title>Database System-IV</title><content type="html">&lt;table style="text-align: justify;"&gt;&lt;tbody&gt;
&lt;tr&gt; &lt;td&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8537332319263609";
/* 300x250, created 3/23/10 */
google_ad_slot = "4342862328";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;/td&gt; &lt;td&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8537332319263609";
/* 300x250, created 3/23/10 */
google_ad_slot = "6581308415";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;1. What is RDBMS? &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;Relational Data Base Management Systems (RDBMS) are database management systems that maintain&amp;nbsp;data records and indices in tables. Relationships may be created and maintained a cross and among the&amp;nbsp;data and tables. In a relational database, relationships between data items are expressed by means of&amp;nbsp;tables. Interdependencies among these tables are expressed by data values rather than by pointers.&amp;nbsp;This allows a high degree of data independence. An RDBMS ha s the capability to recombine the data&amp;nbsp;items from different files, providing powerful tools for data usage.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;2. What is normalization? &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;Database normalization is a data design and organization process applied to data structures based on&amp;nbsp;rules that help build relational databases. In relational database design, the process of organizing data&amp;nbsp;to minimize redundancy. Normalization usually involves dividing a database into two or more tables and&amp;nbsp;defining relationships between the tables. The objective is to isolate data so that additions, deletions,&amp;nbsp;and modifications of a field can be made in just one table and then propagated through the rest of the&amp;nbsp;database via the defined relationships.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;3. What are different normalization forms? &lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;1NF:&lt;/span&gt;&lt;/b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt; Eliminate Repeating Group&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;Make a separate table for each set of related attributes, and give each table a primary key. Each field&amp;nbsp;contains at most one value from its attribute domain.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana;"&gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;2NF:&lt;/span&gt;&lt;/b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt; Eliminate Redundant Data&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;If an attribute depends on only part of a multi-valued key, remove it to a separate table.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana;"&gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;3NF:&lt;/span&gt;&lt;/b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt; Eliminate Columns Not Dependent On Key  &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;If attributes do not contribute to a description of the key, remove them to a separate table. All&amp;nbsp;attributes must be directly dependent on the primary key&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana;"&gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;BCNF:&lt;/span&gt;&lt;/b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt; Boyce-Codd Normal Form &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;If there are non-trivial dependencies between candidate key attributes, separate them out into distinct&amp;nbsp;tables.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana;"&gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;4NF: &lt;/span&gt;&lt;/b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;Isolate Independent Multiple Relationships &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;No table may contain two or more 1:n or n:m relationships that are not directly related. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana;"&gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;5NF:&lt;/span&gt;&lt;/b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt; Isolate Semantically Related Multiple Relationships  &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;There may be practical constrains on information that justify separating logically related many-to-many&amp;nbsp;relationships.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana;"&gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;ONF:&lt;/span&gt;&lt;/b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt; Optimal Normal Form &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;A model limited to only simple (elemental) facts, as expressed in Object  Role Model notation. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana;"&gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;DKNF&lt;/span&gt;&lt;/b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;: Domain-Key Normal Form &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;A model free from all modification anomalies. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana;"&gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;Remember, these normalization guidelines are cumulative. For a database to be in 3NF, it must first&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;fulfill all the criteria of a 2NF and 1NF database. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;4. What is Stored  Procedure? &lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;A stored procedure is a named group of SQL statements that have been previously created and stored&amp;nbsp;in the server database. Stored procedures accept input parameters so that a single procedure can be&amp;nbsp;used over the network by several clients using different input data. And when the procedure is&amp;nbsp;modified, all clients automatically get the new version. Stored procedures reduce network traffic and&amp;nbsp;improve performance. Stored procedures can be used to help ensure the integrity of the database.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;e.g. sp_helpdb, sp_renamedb, sp_depends etc. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;5. What is Trigger? &lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;A trigger is a SQL procedure that initiates an action when an event (INSERT, DELETE or UPDATE) &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;occurs. Triggers are stored in and managed by the DBMS.Triggers are used to maintain the referential integrity of data by changing the data in a systematic fashion.  A trigger cannot be called or executed;&amp;nbsp;the DBMS automatically fires the trigger as a  result of a data modification to the associated table.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;Triggers can be viewed as similar to stored procedures in that both consist of procedural logic that is&amp;nbsp;stored at the database level. Stored procedures, however, are not event-drive and are not atta ched to a&amp;nbsp;specific table as triggers are. Stored procedures are explicitly executed by invoking a CALL to the&amp;nbsp;procedure while triggers are implicitly executed. In addition, triggers can also execute stored&amp;nbsp;procedures.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;Nested Trigger:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt; A trigger can also contain INSERT, UPDATE and DELETE logic within itself, so when the&amp;nbsp;trigger is fired because of data modification it can also cause another data modification, thereby firing&amp;nbsp;another trigger. A trigger that contains data modification logic within itself is called a nested trigger.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;a href='http://aptipedia.blogspot.com/'&gt;&lt;b&gt;Aptipedia Tecknowledgies&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://bioinfosys.blogspot.com/'&gt;&lt;b&gt;Bio-informatics System&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://clickitworld.blogspot.com/'&gt;&lt;b&gt;Click-IT-World SEO&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://ecomatter.blogspot.com/'&gt;&lt;b&gt;Ecomatter-Save the Earth&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://www.indiastudychannel.com/r/vijaykrvishwakarma.aspx'&gt;Vijay Kumar Vishwakarma&lt;/a&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2766243001280496875-47634185575953038?l=aptipedia.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/MDIU3fXvnccibrCNL8lijwcaXdc/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/MDIU3fXvnccibrCNL8lijwcaXdc/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/MDIU3fXvnccibrCNL8lijwcaXdc/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/MDIU3fXvnccibrCNL8lijwcaXdc/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=Jn5d-zcQeKc:bLlSto9UTSc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=Jn5d-zcQeKc:bLlSto9UTSc:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/aptipedia/~4/Jn5d-zcQeKc" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://aptipedia.blogspot.com/feeds/47634185575953038/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://aptipedia.blogspot.com/2010/04/database-system-iv.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/47634185575953038?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/47634185575953038?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/aptipedia/~3/Jn5d-zcQeKc/database-system-iv.html" title="Database System-IV" /><author><name>Vijay Vishwakarma</name><uri>http://www.blogger.com/profile/09057543518085257619</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://4.bp.blogspot.com/_uDMQ1-TasRI/S3GH0MbMZBI/AAAAAAAAAIw/UlDqZQBKXUY/S220/VIJAY+KUMAR+VISHWAKARMA.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://aptipedia.blogspot.com/2010/04/database-system-iv.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0AFSXg5fyp7ImA9WxFSEks.&quot;"><id>tag:blogger.com,1999:blog-2766243001280496875.post-3684879336613014176</id><published>2010-04-14T23:58:00.000+05:30</published><updated>2010-04-14T23:58:38.627+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-04-14T23:58:38.627+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Multiple Choice" /><category scheme="http://www.blogger.com/atom/ns#" term="IT Fundamental" /><title>IT Fundamental - IX</title><content type="html">&lt;table style="text-align: justify;"&gt;&lt;tbody&gt;
&lt;tr&gt; &lt;td&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8537332319263609";
/* 300x250, created 3/23/10 */
google_ad_slot = "4342862328";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;/td&gt; &lt;td&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8537332319263609";
/* 300x250, created 3/23/10 */
google_ad_slot = "6581308415";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;b&gt;1. Array is:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(a) linear data structure&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(b) non-linear structure&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(c) none of the above&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(d) All of the above&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;b&gt;2. A data structure in which elements are added and removed from only one end, is known as:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(a) Array&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(b) Stack&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(c) Queue&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(d) None of the above&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;b&gt;3. A diamond-shaped box in an Entity-Relationship diagram refers to:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(a) Entity&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(b) Relationship&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(c) Attribute&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(d) Domain&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;b&gt;4. The principle means of identifying entities within an entity set is:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(a) Primary Key&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(b) Record&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(c) Attribute&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(d) Tuple&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;b&gt;5. Modem refers to:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(a) Modulator&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(b) Modulation&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(c) Demodulator&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(d) Modulator and Demodulator&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;b&gt;6. C language is available for which of the following Operating Systems?&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(a) DOS&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(b) Windows&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(c) Unix&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(d) All of the above&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;b&gt;7. Which of the following have the fastest access time?&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(a) Magnetic Tapes&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(b) Magnetic Disks&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(c) Semiconductor Memories&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(d) Compact Disks&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;b&gt;8. DMA stands for:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(a) Direct Memory Allocation&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(b) Distinct Memory Allocation&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(c) Direct Memory Access&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(d) Distinct Memory Access&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;b&gt;9. Array subscripts in C always start at:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(a):1&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(b) 0&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(c) 1&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(d) Value provided by user&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;b&gt;10. Which type of commands in DOS needs additional files for their execution?&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(a) Batch Commands&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(b) Internal Commands&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(c) External Commands&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;(d) Main Commands&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;a href='http://aptipedia.blogspot.com/'&gt;&lt;b&gt;Aptipedia Tecknowledgies&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://bioinfosys.blogspot.com/'&gt;&lt;b&gt;Bio-informatics System&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://clickitworld.blogspot.com/'&gt;&lt;b&gt;Click-IT-World SEO&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://ecomatter.blogspot.com/'&gt;&lt;b&gt;Ecomatter-Save the Earth&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://www.indiastudychannel.com/r/vijaykrvishwakarma.aspx'&gt;Vijay Kumar Vishwakarma&lt;/a&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2766243001280496875-3684879336613014176?l=aptipedia.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/C8anGod8UPflDxMEcmIAeaKzUOM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/C8anGod8UPflDxMEcmIAeaKzUOM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/C8anGod8UPflDxMEcmIAeaKzUOM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/C8anGod8UPflDxMEcmIAeaKzUOM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=fpM6U9Rm6_I:MDySs6wiyck:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=fpM6U9Rm6_I:MDySs6wiyck:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/aptipedia/~4/fpM6U9Rm6_I" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://aptipedia.blogspot.com/feeds/3684879336613014176/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://aptipedia.blogspot.com/2010/04/it-fundamental-ix.html#comment-form" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/3684879336613014176?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/3684879336613014176?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/aptipedia/~3/fpM6U9Rm6_I/it-fundamental-ix.html" title="IT Fundamental - IX" /><author><name>Vijay Vishwakarma</name><uri>http://www.blogger.com/profile/09057543518085257619</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://4.bp.blogspot.com/_uDMQ1-TasRI/S3GH0MbMZBI/AAAAAAAAAIw/UlDqZQBKXUY/S220/VIJAY+KUMAR+VISHWAKARMA.JPG" /></author><thr:total>1</thr:total><feedburner:origLink>http://aptipedia.blogspot.com/2010/04/it-fundamental-ix.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0UNQH4yfCp7ImA9WxFTFUo.&quot;"><id>tag:blogger.com,1999:blog-2766243001280496875.post-1224507469475277043</id><published>2010-04-06T23:01:00.000+05:30</published><updated>2010-04-06T23:04:51.094+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-04-06T23:04:51.094+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Multiple Choice" /><category scheme="http://www.blogger.com/atom/ns#" term="IT Fundamental" /><title>IT Fundamental - VIII</title><content type="html">&lt;table&gt;&lt;tbody&gt;
&lt;tr&gt; &lt;td&gt;&lt;br /&gt;
&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8537332319263609";
/* 300x250, created 3/23/10 */
google_ad_slot = "4342862328";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;/td&gt; &lt;td&gt;&lt;br /&gt;
&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8537332319263609";
/* 300x250, created 3/23/10 */
google_ad_slot = "6581308415";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;1. What is the name of the software that allows us to browse through web pages?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(a) Browser&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(b) Mail Client&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(c) FTP Client&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(d) Messenger&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;2. What is the address given to a network called?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(a) System Address&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(b) SYSID&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(c) Process ID&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(d) IP Address&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;3. Which one of the following is a valid DOS command?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(a) LIST *.*&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(b) LIST???.???&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(c) RECOVER A:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(d) RENAME A:SAMPLE.TXT C:TEST.DOC&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;4. All system settings in WINDOWS are stored in:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(a) CONTROL.INI&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(b) MAIN.INI&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(c) SYSTEM.INI&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(d) SETTING.INI&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;5. Which number system is usually followed in a typical 32-bit computer?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(a) 2&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(b) 10&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(c) 16&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(d) 32&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;6. Which of the following is not an output device:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(a) Printer&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(b) Scanner&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(c) Flat Screen&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(d) Touch Screen&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;7. A microprocessor is a processor with reduced&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(a) instruction set&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(b) power requirement&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(c) MIPS performance&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(d) none of the above&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;8. Which of the following is not an output of an assembler?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(a) executable program&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(b) source listing with line numbers and errors&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(c) a symbol table&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(d) object program&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;9. Which layer of OSI model is responsible for routing and flow control:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(a) Presentation&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(b) Transport&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(c) Network&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(d) Data Link&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;10. Arrays are passed as arguments to a function by&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(a) value&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(b) reference&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(c) both a and b&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;(d) none of the above&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;a href='http://aptipedia.blogspot.com/'&gt;&lt;b&gt;Aptipedia Tecknowledgies&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://bioinfosys.blogspot.com/'&gt;&lt;b&gt;Bio-informatics System&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://clickitworld.blogspot.com/'&gt;&lt;b&gt;Click-IT-World SEO&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://ecomatter.blogspot.com/'&gt;&lt;b&gt;Ecomatter-Save the Earth&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://www.indiastudychannel.com/r/vijaykrvishwakarma.aspx'&gt;Vijay Kumar Vishwakarma&lt;/a&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2766243001280496875-1224507469475277043?l=aptipedia.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/q8l6zza-2B3fRWzk2H1ojUv9KZ4/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/q8l6zza-2B3fRWzk2H1ojUv9KZ4/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/q8l6zza-2B3fRWzk2H1ojUv9KZ4/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/q8l6zza-2B3fRWzk2H1ojUv9KZ4/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=c3_gEziBak4:WscL4HRgcXc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=c3_gEziBak4:WscL4HRgcXc:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/aptipedia/~4/c3_gEziBak4" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://aptipedia.blogspot.com/feeds/1224507469475277043/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://aptipedia.blogspot.com/2010/04/it-fundamental-viii.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/1224507469475277043?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/1224507469475277043?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/aptipedia/~3/c3_gEziBak4/it-fundamental-viii.html" title="IT Fundamental - VIII" /><author><name>Vijay</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://aptipedia.blogspot.com/2010/04/it-fundamental-viii.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUMHRH4zfSp7ImA9WxBaFEw.&quot;"><id>tag:blogger.com,1999:blog-2766243001280496875.post-2189290008516925167</id><published>2010-03-24T12:08:00.001+05:30</published><updated>2010-03-24T12:20:35.085+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-24T12:20:35.085+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Multiple Choice" /><category scheme="http://www.blogger.com/atom/ns#" term="IT Fundamental" /><title>IT Fundamental - VII</title><content type="html">&lt;table&gt;&lt;tbody&gt;
&lt;tr&gt; &lt;td&gt;&lt;br /&gt;
&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8537332319263609";
/* 300x250, created 3/23/10 */
google_ad_slot = "4342862328";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;/td&gt; &lt;td&gt;&lt;br /&gt;
&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8537332319263609";
/* 300x250, created 3/23/10 */
google_ad_slot = "6581308415";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;1.  Which of the following arrangements of general-purpose data structures is  from slowest to fastest for the purpose of finding objects according to a key value: &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;a. sorted arrays,  unsorted linked lists, hash tables, binary search trees&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;b. sorted arrays, binary search trees, linked lists,   hash tables&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;c. hash tables, binary search trees, unsorted arrays, sorted linked lists&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;d. sorted linked lists, sorted arrays, binary search trees, hash tables&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;2.  Which of the following arrangements of general-purpose data structures is  from slowest to fastest for the purpose of storing objects by key value (not necessarily in order): &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;a. unsorted arrays,  sorted linked lists, hash tables, binary search trees&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;b. sorted arrays, binary search trees, linked lists,   hash tables&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;c. hash tables, binary search trees, sorted arrays, sorted linked lists&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;d. unsorted arrays, linked lists, binary search trees, hash tables&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;3. In an abstract data type, access is often limited to certain items.  Which of the following is not such an abstract data type?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;a. binary search tree&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;b. priority queue&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;c. queue&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;d. stack&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;4. Which of the following is not a basic data structure that could be used to implement an abstract data type?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;a.   array&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;b.  linked list&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;c.  hash table&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;d.  heap&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;5. Which of the following statements is true?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;a. An abstract data type can be conveniently searched for an item by key.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;b. An abstract data type can be conveniently traversed.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;c. An abstract data type is an interface within a program that simplifies problems.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;d. An abstract data type is a database for direct user-accessible data. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;6. Which of the following methods of implementing a priority queue is best when both insertion and deletion need to be reasonably fast?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;a.  ordered array&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;b.  ordered linked list&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;c.  heap&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;d.  binary search tree&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;7. If the amount of data to be stored in a stack cannot be predicted, the best data structure to implement the stack is:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;a.  hash table&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;b.  binary search tree&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;c.  linked list&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;d. unordered array&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;8. Which of the following statements is true regarding a queue?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;a. It may be implemented either by an array or a linked list.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;b. It may be implemented by a heap because first in is first out.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;c. It may be implemented by a linked list because insertions and deletions may be from the same end.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;d. It may be implemented by an array without providing for wrap-around.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;9. Which of the following sort algorithms is not an O(n2) sort?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;a.  shell sort&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;b.  insertion sort&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;c.  selection sort&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;d.  bubble sort&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;10. Which of the following is true regarding the efficiency of the shell sort?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;a. It is slower than O(n2).&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;b. It is faster than O(n*log2 n).&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;c. It is not as efficient as the insertion sort.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;d. It has not been established theoretically, i.e. as a single function of n.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;a href='http://aptipedia.blogspot.com/'&gt;&lt;b&gt;Aptipedia Tecknowledgies&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://bioinfosys.blogspot.com/'&gt;&lt;b&gt;Bio-informatics System&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://clickitworld.blogspot.com/'&gt;&lt;b&gt;Click-IT-World SEO&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://ecomatter.blogspot.com/'&gt;&lt;b&gt;Ecomatter-Save the Earth&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://www.indiastudychannel.com/r/vijaykrvishwakarma.aspx'&gt;Vijay Kumar Vishwakarma&lt;/a&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2766243001280496875-2189290008516925167?l=aptipedia.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/WKVLTPyJLIr2vUI2iltQGx3-07Y/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/WKVLTPyJLIr2vUI2iltQGx3-07Y/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/WKVLTPyJLIr2vUI2iltQGx3-07Y/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/WKVLTPyJLIr2vUI2iltQGx3-07Y/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=BXTUUEPzYgU:U7imlDGQKLg:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=BXTUUEPzYgU:U7imlDGQKLg:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/aptipedia/~4/BXTUUEPzYgU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://aptipedia.blogspot.com/feeds/2189290008516925167/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://aptipedia.blogspot.com/2010/03/it-fundamental-vii.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/2189290008516925167?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/2189290008516925167?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/aptipedia/~3/BXTUUEPzYgU/it-fundamental-vii.html" title="IT Fundamental - VII" /><author><name>Vijay</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://aptipedia.blogspot.com/2010/03/it-fundamental-vii.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEUAQHo-eip7ImA9WxBUFEg.&quot;"><id>tag:blogger.com,1999:blog-2766243001280496875.post-4028864358422590595</id><published>2010-02-26T15:49:00.003+05:30</published><updated>2010-03-01T20:40:41.452+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-01T20:40:41.452+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Multiple Choice" /><category scheme="http://www.blogger.com/atom/ns#" term="IT Fundamental" /><title>IT Fundamental - VI</title><content type="html">&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;&lt;b&gt;1. Database software allows users to __________.&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;a.   add, change, and delete data&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;b.   sort and retrieve data from the database&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;c.   create forms and reports using the data in the database&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;d.   all of the above&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;&lt;b&gt;2. The results of presentation graphics software programs normally are viewed as __________.&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;a.   macros&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;b.   audience handouts&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;c.   slides&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;d.   notes pages&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;&lt;b&gt;3. A clip art/image gallery can be stored on a __________.&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;a.   hard disk&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;b.   CD-ROM&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;c.    DVD-ROM&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;d.   all of the above&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;&lt;b&gt;4. A(n) __________ is a PIM feature that can be used to record ideas, reminders, and other important information.&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;a.   appointment calendar&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;b.   address book&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;c.   notepad&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;d.   worksheet&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;&lt;b&gt;5. Integrated software is __________.&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;a.   less expensive than a less powerful software suite&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;b.   more expensive than a less powerful software suite&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;c.   less expensive than a more powerful software suite&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;d.   more expensive than a more powerful software suite&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;&lt;b&gt;6. Popular software suites used in schools usually include all of the following applications except __________.&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;a.   word processing&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;b.   spreadsheet&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;c.    calendar&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;d.    database&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;&lt;b&gt;7. Integrated software and software suites offer all of the following advantages except __________.&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;a.   lower cost&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;b.   ease of use&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;c.   higher cost&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;d.   applications use a similar interface&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;&lt;b&gt;8. Microsoft FrontPage and Netscape Composer are examples of __________ software.&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;a.   educational&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;b.   Web page authoring&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;c.    reference&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;d.    personal computer entertainment&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;&lt;b&gt;9. On-screen talking calculators, speech synthesis software programs, and text enlargement software are examples of __________ software.&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;a.   special needs&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;b.   home design/landscaping&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;c.   reference&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;d.   personal computer entertainment&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;&lt;b&gt;10. Tutorials are __________.&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;a.   answers to questions that people frequently ask about an application&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;b.   the electronic equivalent of a user manual, usually integrated into an application software package&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;c.   step-by-step instructions using real examples to show how to use an application&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;d.  automated assistants that help complete a task by asking questions and performing actions based on the answers&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #4c1130; font-family: Verdana,sans-serif; text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;a href='http://aptipedia.blogspot.com/'&gt;&lt;b&gt;Aptipedia Tecknowledgies&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://bioinfosys.blogspot.com/'&gt;&lt;b&gt;Bio-informatics System&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://clickitworld.blogspot.com/'&gt;&lt;b&gt;Click-IT-World SEO&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://ecomatter.blogspot.com/'&gt;&lt;b&gt;Ecomatter-Save the Earth&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://www.indiastudychannel.com/r/vijaykrvishwakarma.aspx'&gt;Vijay Kumar Vishwakarma&lt;/a&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2766243001280496875-4028864358422590595?l=aptipedia.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/YAGBI5Lk_eX1-8zT8HD00fa_1P8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/YAGBI5Lk_eX1-8zT8HD00fa_1P8/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/YAGBI5Lk_eX1-8zT8HD00fa_1P8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/YAGBI5Lk_eX1-8zT8HD00fa_1P8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=wd1pRozKVEY:EMGpyDpvT70:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=wd1pRozKVEY:EMGpyDpvT70:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/aptipedia/~4/wd1pRozKVEY" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://aptipedia.blogspot.com/feeds/4028864358422590595/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://aptipedia.blogspot.com/2010/02/it-fundamental-vi.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/4028864358422590595?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/4028864358422590595?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/aptipedia/~3/wd1pRozKVEY/it-fundamental-vi.html" title="IT Fundamental - VI" /><author><name>Vijay Vishwakarma</name><uri>http://www.blogger.com/profile/01477230667424407281</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://3.bp.blogspot.com/_dheBdt7i2eE/SsrrsB1K_dI/AAAAAAAAAB4/yDL9KQVLd78/S220/vijay.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://aptipedia.blogspot.com/2010/02/it-fundamental-vi.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Ak8EQHYzcSp7ImA9WxBVGEw.&quot;"><id>tag:blogger.com,1999:blog-2766243001280496875.post-6605305318657715870</id><published>2010-02-22T11:26:00.001+05:30</published><updated>2010-02-22T11:36:41.889+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-02-22T11:36:41.889+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Multiple Choice" /><category scheme="http://www.blogger.com/atom/ns#" term="IT Fundamental" /><title>IT Fundamental-V</title><content type="html">&lt;table&gt;&lt;tbody&gt;
&lt;tr&gt; &lt;td&gt;&lt;br /&gt;
&lt;iframe border="0" frameborder="0" height="250" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=ciw08-20&amp;amp;o=1&amp;amp;p=12&amp;amp;l=ur1&amp;amp;category=electronicsrot&amp;amp;f=ifr" style="border: none;" width="300"&gt;&lt;/iframe&gt;&lt;/td&gt; &lt;td&gt;&lt;br /&gt;
&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-4694531696450781";
/* 300x250, created 2/20/10 */
google_ad_slot = "8275675346";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;1. One type of system software, the operating system __________.&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;a. contains instructions that coordinate a computer's activities&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;b. is only important when a computer processes information&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;c. is not loaded into memory when a computer is first turned on&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;d. is loaded into memory from a floppy disk each time a computer is turned on&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana;"&gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;2. Application software can be used __________.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;a. as a productivity/business tool and to facilitate communications&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;b. to assist with graphics and multimedia projects&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;c. to support household activities, for personal business, or for education&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;d. all of the above&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana;"&gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;3. A(n) __________ is a graphical element (usually rectangular or circular in shape) that can be clicked to cause a specific action to take place.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;a. button&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;b. icon&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;c. menu&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;d. window&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana;"&gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;4. An application can be started by __________.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;a. dragging its icon over the Start button&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;b. pointing at a command followed by an arrow&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;c. clicking its program name on a menu or submenu&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;d. all of the above&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana;"&gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;5. __________ involves developing a word processing document by entering text or numbers, inserting graphical images, and performing other tasks using an input device.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;a.   Creating&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;b.   Editing&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;c.   Formatting&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;d.   Printing&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana;"&gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;6. To cut involves removing a portion of a document and electronically storing it in a temporary storage location called the __________.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;a.   Warehouse&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;b.   Cupboard&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;c.    Desktop&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;d.    Clipboard&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana;"&gt;&lt;span class="Apple-style-span"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;7.__________ involves changing the appearance of a word processing document.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;a.    Creating&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;b.    Editing&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;c.    Formatting&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;d.    Printing&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana;"&gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;8. A __________ is a special window displayed by a program to provide information, present available options, or request a response.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;a.   menu&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;b.   dialog box&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;c.    title bar&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;d.    submenu&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana;"&gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;9. Wizards are __________.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;a.    answers to questions that people frequently ask about an application&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;b.    the electronic equivalent of a user manual, usually integrated into an application software package&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;c.    step-by-step instructions using real examples to show how to use an application&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;d.    automated assistants that help complete a task by asking questions and performing actions based on the answers&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana;"&gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;10. The __________ entered in a spreadsheet cell identifies the data and helps organize the worksheet.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;a.   label&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;b.   value&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;c.   formula&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;d.   function&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;a href='http://aptipedia.blogspot.com/'&gt;&lt;b&gt;Aptipedia Tecknowledgies&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://bioinfosys.blogspot.com/'&gt;&lt;b&gt;Bio-informatics System&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://clickitworld.blogspot.com/'&gt;&lt;b&gt;Click-IT-World SEO&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://ecomatter.blogspot.com/'&gt;&lt;b&gt;Ecomatter-Save the Earth&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://www.indiastudychannel.com/r/vijaykrvishwakarma.aspx'&gt;Vijay Kumar Vishwakarma&lt;/a&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2766243001280496875-6605305318657715870?l=aptipedia.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/EkgENlZwvUsa0X7yVUAq5Qn49Fs/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/EkgENlZwvUsa0X7yVUAq5Qn49Fs/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/EkgENlZwvUsa0X7yVUAq5Qn49Fs/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/EkgENlZwvUsa0X7yVUAq5Qn49Fs/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=VFv9eApaYwY:3t5ZkRFAjc8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=VFv9eApaYwY:3t5ZkRFAjc8:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/aptipedia/~4/VFv9eApaYwY" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://aptipedia.blogspot.com/feeds/6605305318657715870/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://aptipedia.blogspot.com/2010/02/it-fundamental-v.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/6605305318657715870?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/6605305318657715870?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/aptipedia/~3/VFv9eApaYwY/it-fundamental-v.html" title="IT Fundamental-V" /><author><name>Vijay Vishwakarma</name><uri>http://www.blogger.com/profile/09057543518085257619</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://4.bp.blogspot.com/_uDMQ1-TasRI/S3GH0MbMZBI/AAAAAAAAAIw/UlDqZQBKXUY/S220/VIJAY+KUMAR+VISHWAKARMA.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://aptipedia.blogspot.com/2010/02/it-fundamental-v.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkcMQHo7fyp7ImA9WxBVFko.&quot;"><id>tag:blogger.com,1999:blog-2766243001280496875.post-7632917400475864482</id><published>2010-01-28T12:23:00.013+05:30</published><updated>2010-02-20T19:24:41.407+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-02-20T19:24:41.407+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Multiple Choice" /><category scheme="http://www.blogger.com/atom/ns#" term="IT Fundamental" /><title>IT Fundamental-IV</title><content type="html">&lt;table&gt;&lt;tbody&gt;
&lt;tr&gt; &lt;td&gt;&lt;br /&gt;
&lt;iframe border="0" frameborder="0" height="250" marginwidth="0" scrolling="no" src="http://rcm.amazon.com/e/cm?t=ciw08-20&amp;amp;o=1&amp;amp;p=12&amp;amp;l=ur1&amp;amp;category=electronicsrot&amp;amp;f=ifr" style="border: none;" width="300"&gt;&lt;/iframe&gt;&lt;/td&gt; &lt;td&gt;&lt;br /&gt;
&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-4694531696450781";
/* 300x250, created 2/20/10 */
google_ad_slot = "8275675346";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;span class="Apple-style-span" style="color: #4c1130; font-family: Verdana; font-weight: bold;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;1. A group of interrelated or interacting elements forming a unified whole can be best defined as:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;a. Communication technologies. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;b. An information system.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;c. A company network.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;d. Interorganizational system.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Verdana;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana; font-weight: bold;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;2. The majority of organizations today would be classified as:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;a. Open nonadaptive systems. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;b. Closed nonadaptive systems. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;c. Open adaptive systems. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;d. Closed adaptive systems. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Verdana;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana; font-weight: bold;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;3. Which one of the following would NOT be considered a good example of information?&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;a. The company's forklift operator's social security number is 456-38-1276.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;b. The retail price of blue widgets is $28.99. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;c. The company owes $3,847 to vendor number 10782. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;d. The numbers 12367892, 436897458, and 837621984.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Verdana;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana; font-weight: bold;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;4. In the internetworked e-business enterprise, an extranet refers to:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;a. A network inside the enterprise. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;b. A network between an enterprise and its trading partners. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;c. A local area network within the enterprise. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;d. A wide area network within the enterprise.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Verdana;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana;"&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;5&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;. A manager needs to have summary sales information by product line available to her on a timely basis when purchasing decisions need to be made. The type of information system most likely to provide this information is a:&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;a. Management information system. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;b. Decision support system. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;c. Transaction processing system. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;d. Process control system. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Verdana;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana; font-weight: bold;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;6. A physician wants an information system that can help in the diagnosis of rare diseases by suggesting diagnostic procedures and help in interpreting the symptoms that are found. This type of information system is called a(n):&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;a. End user information system. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;b. Integrated information system. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;c. Executive information system.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;d. Expert system.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Verdana;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana; font-weight: bold;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;7. Developing new products and services that are fundamentally different from the way business has been conducted in an industry would be considered a(n):&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;a. Cost leadership strategy. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;b. Innovation strategy. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;c. Product differentiation strategy. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;d. Strategic dominance strategy. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Verdana;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana; font-weight: bold;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;8. Establishing new business linkages and alliances with customers, suppliers, and competitors is an example of a(n):&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;a. Alliance strategy.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;b. Differentiation strategy.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;c. Innovation strategy.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;d. Gowth strategy. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Verdana;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana; font-weight: bold;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;9. Charles Schwab &amp;amp; Company's use of online discount stock trading is an example of the way in which a firm can use strategic information system technology.  Their primary competitive strategy was to:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;a. Establish cost leadership. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;b. Improve operational efficiency.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;c. Promote business innovation.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;d. Build strategic information resources. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Verdana;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana; font-weight: bold;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;10. The value chain views a series, chain, or network of basic activities that add value to products and services.  One of the primary activities in a firm's "value chain" typically includes:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;a. Outbound logistics. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;b. Procurement of resources. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;c. Human resource management. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Verdana, sans-serif;"&gt;&lt;span class="Apple-style-span" style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;d. Technology development. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #4c1130; font-family: Verdana; font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-size: 13px;"&gt;&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;a href='http://aptipedia.blogspot.com/'&gt;&lt;b&gt;Aptipedia Tecknowledgies&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://bioinfosys.blogspot.com/'&gt;&lt;b&gt;Bio-informatics System&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://clickitworld.blogspot.com/'&gt;&lt;b&gt;Click-IT-World SEO&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://ecomatter.blogspot.com/'&gt;&lt;b&gt;Ecomatter-Save the Earth&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://www.indiastudychannel.com/r/vijaykrvishwakarma.aspx'&gt;Vijay Kumar Vishwakarma&lt;/a&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2766243001280496875-7632917400475864482?l=aptipedia.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/2T5mKKKX71EcFjJZQqnaPaqNKqA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/2T5mKKKX71EcFjJZQqnaPaqNKqA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/2T5mKKKX71EcFjJZQqnaPaqNKqA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/2T5mKKKX71EcFjJZQqnaPaqNKqA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=VflscFijV8k:-avmQwxQbow:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=VflscFijV8k:-avmQwxQbow:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/aptipedia/~4/VflscFijV8k" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://aptipedia.blogspot.com/feeds/7632917400475864482/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://aptipedia.blogspot.com/2010/01/it-fundamental-iv.html#comment-form" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/7632917400475864482?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/7632917400475864482?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/aptipedia/~3/VflscFijV8k/it-fundamental-iv.html" title="IT Fundamental-IV" /><author><name>Leelavathy</name><uri>http://www.blogger.com/profile/06075404281959558173</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>1</thr:total><feedburner:origLink>http://aptipedia.blogspot.com/2010/01/it-fundamental-iv.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0QMRnw7eCp7ImA9WxFWFEs.&quot;"><id>tag:blogger.com,1999:blog-2766243001280496875.post-1453984997897287587</id><published>2010-01-16T18:53:00.003+05:30</published><updated>2010-06-02T13:26:27.200+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-06-02T13:26:27.200+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="C / C++ / OOPS" /><category scheme="http://www.blogger.com/atom/ns#" term="Remember this" /><title>Points about OOPS</title><content type="html">&lt;table&gt;&lt;tbody&gt;
&lt;tr&gt; &lt;td&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8537332319263609";
/* 300x250, created 3/23/10 */
google_ad_slot = "4342862328";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;/td&gt; &lt;td&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8537332319263609";
/* 300x250, created 3/23/10 */
google_ad_slot = "6581308415";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;1. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;b&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;Abstraction&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt; is the process of highlighting the essential, inherent aspects of an entity while ignoring irrelevant details.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;2. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;b&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;Encapsulation&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt; (or information hiding) is the process of&amp;nbsp;separating&amp;nbsp;the external aspects of an objects from the internal implementation details which should be hidden from other objects.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;3. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;b&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;Modularity&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt; is the process of dividing a problem into smaller pieces so that each smaller module can be dealt with individually.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;4. Organizing a set of &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;b&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;a&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;bstractions&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt; from most general to least is known as &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;b&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;inheritance hierarchy&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;5. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;b&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;Object-oriented programming&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt; is a paradigm in which a system is modeled as a set of objects that interact with each other.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;6. In C++ an abstraction is formed by creating a class. A class encapsulates the attributes and&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;b&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;behaviors&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&amp;nbsp;of an object.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;7. The data members of a class represent the &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;b&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;attributes&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt; of a class. And the member functions of a class represents the &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;b&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;behaviors&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt; of a class.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;8. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;b&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;Polymorphism&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt; is the capability of something to assumediferent forms. In an object-oriented language, polymorphism is provided by allowing a message or member function to mean different things depending on the type of object that receives the message.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;9. All C++ program begin executing from the main. Function main returns an integer value that indicates whether the program executed&amp;nbsp;successfullly&amp;nbsp;or not. A value of ) indicates successful&amp;nbsp;execution, while the value 1 indicates that a problem or error occurred during the execution of the program.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;10. A variable must be defined before it can be used. Smart programmers give a variable an initial value when it is defined.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;11. A &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;b&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;pointer&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt; is a variable whose value is the address of another variable.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;12. Pointers should be different type for each type of&amp;nbsp;variable. There are even pointer types whose variable are pointers to other pointers.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;13. The location of a variable can be obtained using the &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;b&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;address operator &amp;amp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;14. Pointer operators may be compared using the &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;b&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;equality and&amp;nbsp;relational&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&amp;nbsp;operators.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;15. The increment and decrement operators may be applied to pointer objects.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;16. Pointers can be passed as reference parameters by using the indirection operator.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;17.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;b&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;Command-line parameters&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt; are communicated to programs using pointers.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;18. We can&amp;nbsp;define&amp;nbsp;variables that are pointers to functions. Such variables are typically used as function parameters. This type of parameter enables the function that uses it to have greater flexibility in accomplishing its task.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;19. A &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;b&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;reference variable&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt; must be&amp;nbsp;initialized&amp;nbsp;when it is declared.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;20. When a reference parameter is used, instead of passing a copy of the variable, a reference to the original variable is passed. Any modifications made to the parameter by the called function change the original variable.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;21. A reason to use reference parameter is for efficiency. When a class object is passed by value, a copy of the object is passed. If the object is large, making a copy of it can be expensive in terms of execution time and memory space. thus, objects that are large, or objects whose size is not known are often passed by&amp;nbsp;reference. We can ensure that the objects are not modified by using the &lt;/span&gt;&lt;/span&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;cons&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;t&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt; modifier.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;22. &lt;/span&gt;&lt;/span&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;Constructors&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;&amp;nbsp;initialize&amp;nbsp;objects of the class type. It is standard practice to&amp;nbsp;ensure&amp;nbsp;that every object has all of its data members appropriately initializes.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;23. A &lt;/span&gt;&lt;/span&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;d&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;efault constructo&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;r is a constructor that requires no parameters.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;24. A &lt;/span&gt;&lt;/span&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;copy constructor&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt; initialize a new object to be a duplicate of a&amp;nbsp;previously&amp;nbsp;defined source object. If a class does not define a copy constructor, the compiler automatically supplies&amp;nbsp;version.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;25. A &lt;/span&gt;&lt;/span&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;class constructor&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;, if defined, is called whenever a program creates an object of that class.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;26. An &lt;/span&gt;&lt;/span&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;inline&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt; function must be defined before it is called.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #4c1130;"&gt;&lt;span class="Apple-style-span" style="font-size: small;"&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, sans-serif;"&gt;27. An inline function reduces the function call overhead. Small functions are best declared inline within a class.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="color: #4c1130; font-family: Verdana; font-size: small;"&gt;&lt;span style="font-size: 13px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;a href='http://aptipedia.blogspot.com/'&gt;&lt;b&gt;Aptipedia Tecknowledgies&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://bioinfosys.blogspot.com/'&gt;&lt;b&gt;Bio-informatics System&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://clickitworld.blogspot.com/'&gt;&lt;b&gt;Click-IT-World SEO&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://ecomatter.blogspot.com/'&gt;&lt;b&gt;Ecomatter-Save the Earth&lt;/b&gt;&lt;/a&gt;
&lt;a href='http://www.indiastudychannel.com/r/vijaykrvishwakarma.aspx'&gt;Vijay Kumar Vishwakarma&lt;/a&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2766243001280496875-1453984997897287587?l=aptipedia.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/b18zeyv6xFd3dAIT6_xPovP30yA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/b18zeyv6xFd3dAIT6_xPovP30yA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/b18zeyv6xFd3dAIT6_xPovP30yA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/b18zeyv6xFd3dAIT6_xPovP30yA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=uQ3BHYPD15k:ILAHZT1sD1Y:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/blogspot/aptipedia?a=uQ3BHYPD15k:ILAHZT1sD1Y:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/aptipedia?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/aptipedia/~4/uQ3BHYPD15k" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://aptipedia.blogspot.com/feeds/1453984997897287587/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://aptipedia.blogspot.com/2010/01/points-about-oops.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/1453984997897287587?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2766243001280496875/posts/default/1453984997897287587?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/aptipedia/~3/uQ3BHYPD15k/points-about-oops.html" title="Points about OOPS" /><author><name>Leelavathy</name><uri>http://www.blogger.com/profile/06075404281959558173</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>0</thr:total><feedburner:origLink>http://aptipedia.blogspot.com/2010/01/points-about-oops.html</feedburner:origLink></entry></feed>

