<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-2924618157381978698</id><updated>2012-01-15T12:17:11.653+05:30</updated><title type='text'>Latest Technology (A-Z)</title><subtitle type='html'>information about computernetworking,emerging technologies,mobiles,electronics,jobs,computer hardware.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default?start-index=101&amp;max-results=100'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>208</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-3897284076138041176</id><published>2010-02-13T01:01:00.002+05:30</published><updated>2010-02-13T01:14:53.338+05:30</updated><title type='text'>DHCP-(Dynamic Host Control Protocol)</title><content type='html'>IP addresses, by contrast, not only must be unique on a given internetwork, but&lt;br /&gt;also must reflect the structure of the internetwork. As noted above, they contain a&lt;br /&gt;network part and a host part, and the network part must be the same for all hosts&lt;br /&gt;on the same network. Thus, it is not possible for the IP address to be configured once&lt;br /&gt;into a host when it is manufactured, since that would imply that the manufacturer&lt;br /&gt;knew which hosts were going to end up on which networks, and it would mean that&lt;br /&gt;a host, once connected to one network, could never move to another. For this reason,&lt;br /&gt;IP addresses need to be reconfigurable.&lt;br /&gt;&lt;br /&gt;In addition to an IP address, there are some other pieces of information a host&lt;br /&gt;needs to have before it can start sending packets. The most notable of these is the&lt;br /&gt;address of a default router—the place to which it can send packets whose destination&lt;br /&gt;address is not on the same network as the sending host.&lt;br /&gt;Most host operating systems provide a way for a system administrator, or even&lt;br /&gt;a user, to manually configure the IP information needed by a host. However, there&lt;br /&gt;are some obvious drawbacks to such manual configuration. One is that it is simplya lot of work to configure all the hosts in a large network directly, especially when&lt;br /&gt;you consider that such hosts are not reachable over a network until they are configured.&lt;br /&gt;&lt;br /&gt;Even more importantly, the configuration process is very error-prone, since it is&lt;br /&gt;necessary to ensure that every host gets the correct network number and that no two&lt;br /&gt;hosts receive the same IP address. For these reasons, automated configuration methods&lt;br /&gt;are required. The primary method uses a protocol known as the Dynamic Host&lt;br /&gt;Configuration Protocol (DHCP).&lt;br /&gt;&lt;br /&gt;DHCP relies on the existence of a DHCP server that is responsible for providing&lt;br /&gt;configuration information to hosts. There is at least one DHCP server for an administrative&lt;br /&gt;domain. At the simplest level, the DHCP server can function just as a centralized&lt;br /&gt;repository for host configuration information. Consider, for example, the problem of&lt;br /&gt;administering addresses in the internetwork of a large company. DHCP saves the network&lt;br /&gt;administrators from having to walk around to every host in the company with a&lt;br /&gt;list of addresses and network map in hand and configuring each host manually. Instead,&lt;br /&gt;the configuration information for each host could be stored in the DHCP server and&lt;br /&gt;automatically retrieved by each host when it is booted or connected to the network.&lt;br /&gt;However, the administrator would still pick the address that each host is to receive;&lt;br /&gt;he would just store that in the server. In this model, the configuration information for&lt;br /&gt;each host is stored in a table that is indexed by some form of unique client identifier,&lt;br /&gt;typically the “hardware address” (e.g., the Ethernet address of its network adaptor).&lt;br /&gt;A more sophisticated use of DHCP saves the network admininstrator from even&lt;br /&gt;having to assign addresses to individual hosts. In this model, the DHCP server maintains&lt;br /&gt;a pool of available addresses that it hands out to hosts on demand. This considerably&lt;br /&gt;reduces the amount of configuration an administrator must do, since now it is&lt;br /&gt;only necessary to allocate a range of IP addresses (all with the same network number)&lt;br /&gt;to each network.&lt;br /&gt;&lt;br /&gt;Since the goal of DHCP is to minimize the amount of manual configuration&lt;br /&gt;required for a host to function, it would rather defeat the purpose if each host had&lt;br /&gt;to be configured with the address of a DHCP server. Thus, the first problem faced by&lt;br /&gt;DHCP is that of server discovery.&lt;br /&gt;&lt;br /&gt;To contact a DHCP server, a newly booted or attached host sends a&lt;br /&gt;DHCPDISCOVER message to a special IP address (255.255.255.255) that is an IP broadcast&lt;br /&gt;address. This means it will be received by all hosts and routers on that network.&lt;br /&gt;(Routers do not forward such packets onto other networks, preventing broadcast to&lt;br /&gt;the entire Internet.) In the simplest case, one of these nodes is the DHCP server for the&lt;br /&gt;network. The server would then reply to the host that generated the discovery message&lt;br /&gt;(all the other nodes would ignore it). However, it is not really desirable to require one&lt;br /&gt;DHCP server on every network because this still creates a potentially large number&lt;br /&gt;of servers that need to be correctly and consistently configured. Thus, DHCP uses theconcept of a relay agent. There is at least one relay agent on each network, and it isconfigured with just one piece of information: the IP address of the DHCP server. Whena relay agent receives a DHCPDISCOVER message, it unicasts it to the DHCP server and awaits the response, which it will then send back to the requesting client. The processof relaying a message from a host to a remote DHCP server is shown in diagram 1-A Diagram 1-B  shows the format of a DHCP message. The message is actually sent using a protocol called UDP (the User Datagram Protocol) that runs over IP. &lt;br /&gt; DHCP is derived from an earlier protocol called BOOTP, and some of the packet&lt;br /&gt;fields are thus not strictly relevant to host configuration. When trying to obtain configuration information, the client puts its hardware address (e.g., its Ethernet address) inthe chaddr field. The DHCP server replies by filling in the yiaddr (“your” IP address)field and sending it to the client. Other information such as the default router to be used by this client can be included in the options field.&lt;br /&gt; In the case where DHCP dynamically assigns IP addresses to hosts, it is clear&lt;br /&gt;that hosts cannot keep addresses indefinitely, as this would eventually cause the server to exhaust its address pool. At the same time, a host cannot be depended upon to give back its address, since it might have crashed, been unplugged from the network,or been turned off. Thus, DHCP allows addresses to be “leased” for some period of time. Once the lease expires, the server is free to return that address to its pool. A host with a leased address clearly needs to renew the lease periodically if in fact it is still connected to the network and functioning correctly.&lt;br /&gt; It is important to note  that DHCP may also introduce some more complexity into network management,since it makes the binding between physical hosts and IP addresses muchmore dynamic. This may make the network manager’s job more difficult if, for example,it becomes necessary to locate a malfunctioning host.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-3897284076138041176?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/3897284076138041176/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=3897284076138041176' title='38 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/3897284076138041176'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/3897284076138041176'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2010/02/dhcp-dynamic-host-control-protocol.html' title='DHCP-(Dynamic Host Control Protocol)'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>38</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-8844344132757986800</id><published>2009-12-13T09:00:00.001+05:30</published><updated>2009-12-13T09:15:19.022+05:30</updated><title type='text'>BLU-RAY TECHNOLOGY</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/__rFsrl4ZZDo/SyRjPN5LOHI/AAAAAAAAASc/ZoYNhX2Ah3s/s1600-h/blu-ray2.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 374px; height: 362px;" src="http://2.bp.blogspot.com/__rFsrl4ZZDo/SyRjPN5LOHI/AAAAAAAAASc/ZoYNhX2Ah3s/s400/blu-ray2.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5414561765084838002" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/__rFsrl4ZZDo/SyRjO4krRoI/AAAAAAAAASU/LF-RrY23bG0/s1600-h/blu-ray1.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 236px;" src="http://1.bp.blogspot.com/__rFsrl4ZZDo/SyRjO4krRoI/AAAAAAAAASU/LF-RrY23bG0/s400/blu-ray1.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5414561759361713794" /&gt;&lt;/a&gt;&lt;br /&gt;DEFINITION OF BLU-RAY:&lt;br /&gt;&lt;br /&gt;Blu-ray, also known as Blu-ray Disc (BD), is the name of a next-generation optical disc format jointly developed by the Blu-ray Disc Association (BDA), a group of the world's leading consumer electronics, personal computer and media manufacturers (including Apple, Dell, Hitachi, HP, JVC, LG, Mitsubishi, Panasonic, Pioneer, Philips, Samsung, Sharp, Sony, TDK and Thomson). The format was developed to enable recording, rewriting and playback of high-definition video (HD), as well as storing large amounts of data. The format offers more than five times the storage capacity of traditional DVDs and can hold up to 25GB on a single-layer disc and 50GB on a dual-layer disc. This extra capacity combined with the use of advanced video and audio codecs will offer consumers an unprecedented HD experience. &lt;br /&gt;&lt;br /&gt;DEVELOPERS OF BLU-RAY:&lt;br /&gt;The Blu-ray Disc format was developed by the Blu-ray Disc Association (BDA), a group of leading consumer electronics, personal computer and media manufacturers, with more than 180 member companies from all over the world. The Board of Directors currently consists of: &lt;br /&gt;&lt;br /&gt;Apple Computer, Inc.&lt;br /&gt;Dell Inc.&lt;br /&gt;Hewlett Packard Company&lt;br /&gt;Hitachi, Ltd.&lt;br /&gt;LG Electronics Inc.&lt;br /&gt;Matsushita Electric Industrial Co., Ltd.&lt;br /&gt;Mitsubishi Electric Corporation&lt;br /&gt;Pioneer Corporation&lt;br /&gt;Royal Philips Electronics&lt;br /&gt;Samsung Electronics Co., Ltd.&lt;br /&gt;Sharp Corporation&lt;br /&gt;Sony Corporation&lt;br /&gt;Sun Microsystems, Inc.&lt;br /&gt;TDK Corporation&lt;br /&gt;Thomson Multimedia&lt;br /&gt;Twentieth Century Fox&lt;br /&gt;Walt Disney Pictures&lt;br /&gt;Warner Bros. Entertainment.&lt;br /&gt;&lt;br /&gt;DATA STORAGE CAPACITY IN BLU-RAY DISC:&lt;br /&gt; A single-layer disc can hold 25GB.&lt;br /&gt;A dual-layer disc can hold 50GB.&lt;br /&gt;&lt;br /&gt;To ensure that the Blu-ray Disc format is easily extendable (future-proof) it also includes support for multi-layer discs, which should allow the storage capacity to be increased to 100GB-200GB (25GB per layer) in the future simply by adding more layers to the discs.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;WORK FUNCTION OF BLU-RAY:&lt;br /&gt;According to the Blu-ray Disc specification, 1x speed is defined as 36Mbps. However, as BD-ROM movies will require a 54Mbps data transfer rate the minimum speed we're expecting to see is 2x (72Mbps). Blu-ray also has the potential for much higher speeds, as a result of the larger numerical aperture (NA) adopted by Blu-ray Disc. The large NA value effectively means that Blu-ray will require less recording power and lower disc rotation speed than DVD and HD-DVD to achieve the same data transfer rate. While the media itself limited the recording speed in the past, the only limiting factor for Blu-ray is the capacity of the hardware. If we assume a maximum disc rotation speed of 10,000 RPM, then 12x at the outer diameter should be possible (about 400Mbps). This is why the Blu-ray Disc Association (BDA) already has plans to raise the speed to 8x (288Mbps) or more in the future.&lt;br /&gt;&lt;br /&gt;While current optical disc technologies such as DVD, DVD±R, DVD±RW, and DVD-RAM rely on a red laser to read and write data, the new format uses a blue-violet laser instead, hence the name Blu-ray. Despite the different type of lasers used, Blu-ray products can easily be made backwards compatible with CDs and DVDs through the use of a BD/DVD/CD compatible optical pickup unit. The benefit of using a blue-violet laser (405nm) is that it has a shorter wavelength than a red laser (650nm), which makes it possible to focus the laser spot with even greater precision. This allows data to be packed more tightly and stored in less space, so it's possible to fit more data on the disc even though it's the same size as a CD/DVD. This together with the change of numerical aperture to 0.85 is what enables Blu-ray Discs to hold 25GB/50GB. Recent development by Pioneer has pushed the storage capacity to 500GB on a single disc by using 20 layers.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-8844344132757986800?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/8844344132757986800/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=8844344132757986800' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/8844344132757986800'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/8844344132757986800'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/12/blu-ray-technology.html' title='BLU-RAY TECHNOLOGY'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/__rFsrl4ZZDo/SyRjPN5LOHI/AAAAAAAAASc/ZoYNhX2Ah3s/s72-c/blu-ray2.jpg' height='72' width='72'/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-5402740693767122013</id><published>2009-12-13T08:59:00.000+05:30</published><updated>2009-12-13T09:00:14.631+05:30</updated><title type='text'>2012</title><content type='html'>2012 END OF THE WORLD - BELIEFS&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;SCIENTIFIC EXPERTS from around the world are predicting that five years from now, all life on Earth could well come to an end. Some are saying it’ll be humans that would set it off. Others believe that a natural phenomenon will be the cause. And the religious folks are saying it’ll be God himself who would press the stop button. The following are some likely arguments as to why the world would end by the year 2012.&lt;br /&gt;&lt;br /&gt;Reason one: Mayan calendar&lt;br /&gt; &lt;br /&gt;The first to predict 2012 as the end of the world were the Mayans, a bloodthirsty race that were good at two things -- building highly accurate astrological equipment out of stone and sacrificing virgins.&lt;br /&gt; &lt;br /&gt;Thousands of years ago they managed to calculate the length of the lunar moon as 329.53020 days, only 34 seconds out. The Mayan calendar predicts that the earth will end on December 21, 2012. Given that they were pretty close to the mark with the lunar cycle, it’s likely they’ve got the end of the world right as well.&lt;br /&gt;&lt;br /&gt;Reason two: Sun storms&lt;br /&gt; &lt;br /&gt;Solar experts from around the world monitoring the sun have made a startling discovery. Our sun is in a bit of strife. The energy output of the sun is, like most things in nature, cyclic and it’s supposed to be in the middle of a period of relative stability. However, recent solar storms have been bombarding the earth with lot of radiation energy. It’s been knocking out power grids and destroying satellites. This activity is predicted to get worse and calculations suggest it’ll reach its deadly peak sometime in 2012.&lt;br /&gt;&lt;br /&gt;Reason three: The atom smasher&lt;br /&gt; &lt;br /&gt;Scientists in Europe have been building the world’s largest particle accelerator. Basically, its a 27 km tunnel designed to smash atoms together to find out what makes the universe tick. However, the mega-gadget has caused serious concern, with some scientists suggesting that it’s properly even a bad idea to turn it on in the first place. They’re predicting all manner of deadly results, including mini black holes. So when this machine is fired up for its first serious experiment in 2012, the world could be crushed into a super-dense blob the size of a basketball.&lt;br /&gt; &lt;br /&gt;Reason four: The Bible says it&lt;br /&gt; &lt;br /&gt;If having scientists warning us about the end of the world isn’t bad enough, religious folks are getting in on the act as well. Interpretations of the Christian Bible reveal that the date for Armageddon, the final battle between good an evil, has been set for 2012. The I Ching, also known as the Chinese Book of Changes, says the same thing, as do various sections of the Hindu teachings.&lt;br /&gt; &lt;br /&gt;Reason five: Super volcano&lt;br /&gt; &lt;br /&gt;Yellowstone National Park in United States is famous for its thermal springs and old faithful geyser. The reason for this is simple -- it’s sitting on top of the world’s biggest volcano and geological experts are beginning to get nervous sweats. The Yellowstone volcano has a pattern of erupting every 650,000 years or so, and we’re many years overdue for an explosion that will fill the atmosphere with ash, blocking the sun and plunging the earth into a frozen winter that could last up to 15,000 years. The pressure under the Yellowstone is building steadily, and geologists have set 2012 as a likely date for the big bang.&lt;br /&gt; &lt;br /&gt;Reason six: The physicists&lt;br /&gt; &lt;br /&gt;This one’s case of bog -- simple maths mathematics. Physicists at Berkely University have been crunching the numbers. They’ve determined that the earth is well overdue for a major catastrophic event. Even worse, they’re claiming that their calculations prove that we’re all going to die, very soon. They are also saying that their prediction comes with a certainty of 99 per cent; and 2012 just happens to be the best guess as to when it occurs.&lt;br /&gt; &lt;br /&gt;Reason seven: Earth’s magnetic field&lt;br /&gt; &lt;br /&gt;We all know the Earth is surrounded by a magnetic field that shields us from most of the sun’s radiation. What you might not know is that the magnetic poles we call North and South have a nasty habit of swapping places every 750,000 years or so -- and right now we’re about 30,000 years overdue. Scientists have noted that the poles are drifting apart roughly 20-30 kms each year, much faster than ever before, which points to a pole-shift being right around the corner. While the pole shift is under way, the magnetic field is disrupted and will eventually disappear, sometimes for up to 100 years. The result is enough UV outdoors to crisp your skin in seconds, killing everything it touches&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-5402740693767122013?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/5402740693767122013/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=5402740693767122013' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/5402740693767122013'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/5402740693767122013'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/12/2012.html' title='2012'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-1140150377390484019</id><published>2009-11-04T07:55:00.005+05:30</published><updated>2009-11-10T11:27:46.177+05:30</updated><title type='text'>Microsoft Surface</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/__rFsrl4ZZDo/SvDqGy_Bv9I/AAAAAAAAASM/mtes811cr-w/s1600-h/ms3.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 318px;" src="http://3.bp.blogspot.com/__rFsrl4ZZDo/SvDqGy_Bv9I/AAAAAAAAASM/mtes811cr-w/s400/ms3.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5400073355703467986" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/__rFsrl4ZZDo/SvDqGhstypI/AAAAAAAAASE/uRBmdeP0SNo/s1600-h/ms2.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 311px;" src="http://2.bp.blogspot.com/__rFsrl4ZZDo/SvDqGhstypI/AAAAAAAAASE/uRBmdeP0SNo/s400/ms2.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5400073351063259794" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/__rFsrl4ZZDo/SvDqGWXtppI/AAAAAAAAAR8/ux-IPGmuKgk/s1600-h/ms1.JPG"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 306px;" src="http://1.bp.blogspot.com/__rFsrl4ZZDo/SvDqGWXtppI/AAAAAAAAAR8/ux-IPGmuKgk/s400/ms1.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5400073348022380178" /&gt;&lt;/a&gt;&lt;br /&gt;Microsoft Surface Introduction:&lt;br /&gt;&lt;br /&gt;After establishing the lead in software industry, Microsoft toyed with various hardware. We saw xBox, Zune etc. Then a bigger project was under development under code name Milan, which was all about Microsoft Surface. Milan was aimed to leverage the perfect combination of hardware and software. Manipulating digital content using hand gestures, motions and physical objects is all about Microsoft Surface.&lt;br /&gt;&lt;br /&gt;The 30-inch screen brings on all the excitement about Microsoft Surface. This 22 inches high, 21 inches deep, 42 inches wide innovative product costs as much as US$ 10000 and it takes some time to be affordable to all. Probably in another 4-5 years, the surface becomes so common that, every house and business will have a Surface and think about Microsoft Surface as part of their furniture, which is intelligent.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Many had a wrong impression about Microsoft Surface. They thought it is another glorified and hyped touch screen computer. And they are proved wrong by the features provided in the Microsoft surface. The touch screen computers enable users to do away with keyboard and mouse. &lt;br /&gt;&lt;br /&gt;They can navigate the menu by touching various options to reach a logical end of viewing data or printing. And there ends the comparison. Microsoft Surface can do many more things, which you think are not possible!&lt;br /&gt;&lt;br /&gt;The number of fingers detected by the multitouch sensor is limited only by the individual software designer’s desire – the hardware itself supports as many simultaneous prods as you can throw at it.&lt;br /&gt;&lt;br /&gt;Microsoft CEO Steve Ballmer unveiled Microsoft Surface on May 29, 2007 and the whole world came to know about Microsoft Surface. Microsoft has some partners like Star wood Hotels &amp; Resorts Worldwide, International Game Technology , Harrah's Entertainment, T-Mobile etc readily willing to experiment Microsoft Surface in real world situation in their business.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Microsoft Surface Features:&lt;br /&gt;&lt;br /&gt;Direct interaction: Facility to manage digital information with hand gestures and touch instead on mouse and keyboard.&lt;br /&gt;&lt;br /&gt;Main interface components: Direct interaction, multi-touch contact, a multi-user experience, and object recognition.&lt;br /&gt;&lt;br /&gt;Multi-touch contact: User need not use only one finger to manage digital data. If user dips five fingers in five different colors in the on screen paint palette and draws five lines with five fingers, you get five lines with five colors.&lt;br /&gt;&lt;br /&gt;Multi-user experience: Typical computers accept only one keyboard and a mouse. Microsoft Surface accepts multiple inputs from multiple users. More than one person sitting across the Surface, can do independent work on the same Surface.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Orientation: Horizontal – like a table to allow users to use, share and create experiences together.&lt;br /&gt;CPU: Core 2 Duo processor&lt;br /&gt;&lt;br /&gt;Processor: 1 GHz processor.&lt;br /&gt;&lt;br /&gt;Installed Memory: 2GB of RAM&lt;br /&gt;&lt;br /&gt;Hard drive: Yes&lt;br /&gt;&lt;br /&gt;Object recognition: The system can identify physical objects placed on the Surface. It can relate the appropriate software for the appropriate item placed on surface. Objects may be recognized based on their shape or on special codes  affixed to them.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Display Type: 30-inch Flat panel display&lt;br /&gt;&lt;br /&gt;Graphics Card: 256MB graphics card.&lt;br /&gt;&lt;br /&gt;Projector: DLP light engine like the one used in rear-projection HDTV.&lt;br /&gt;&lt;br /&gt;Cameras: Five cameras with infrared filters - net resolution of 1280 x 960&lt;br /&gt;&lt;br /&gt;Material: The tabletop is acrylic, and its interior frame is powder-coated steel.&lt;br /&gt;&lt;br /&gt;Surface: Not touch-sensitive surface. When you place or drag a finger, internal projector lights screen from beneath.&lt;br /&gt;&lt;br /&gt;Power Supply: Standard American 110–120V power&lt;br /&gt;&lt;br /&gt;Operating System: The custom software platform runing on Windows Vista&lt;br /&gt;&lt;br /&gt;Network Connectivity: Wired Ethernet 10/100 and wireless 802.11 b/g and Bluetooth 2.0 connectivity.&lt;br /&gt;&lt;br /&gt;Dimensions: 22 inches high, 21 inches deep and 42 inches wide.&lt;br /&gt;&lt;br /&gt;Weight: 150 pounds&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Ideal for: Restaurants, games, shops and Entertainment&lt;br /&gt;&lt;br /&gt;Microsoft Surface Approximative Price: US$ 10000&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Other features:&lt;br /&gt;&lt;br /&gt;Drag &amp; Drop: Like any widows Operating system, all items can be dragged and dropped.&lt;br /&gt;&lt;br /&gt;Automatic Identification: Can identify objects. Place your Digital camera on the surface and you can see the photos displayed on the surface without actually downloading!&lt;br /&gt;Initial customers: Harrah's Entertainment, Starwood Hotels and Resorts, T-Mobile and IGT.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-1140150377390484019?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/1140150377390484019/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=1140150377390484019' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/1140150377390484019'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/1140150377390484019'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/11/microsoft-surface.html' title='Microsoft Surface'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/__rFsrl4ZZDo/SvDqGy_Bv9I/AAAAAAAAASM/mtes811cr-w/s72-c/ms3.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-4266675158377840935</id><published>2009-11-04T07:41:00.002+05:30</published><updated>2009-11-04T07:46:44.317+05:30</updated><title type='text'>Nano Technology</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/__rFsrl4ZZDo/SvDkAASDdiI/AAAAAAAAAR0/G4zJY0IsxJ0/s1600-h/nano.JPG"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 242px;" src="http://2.bp.blogspot.com/__rFsrl4ZZDo/SvDkAASDdiI/AAAAAAAAAR0/G4zJY0IsxJ0/s400/nano.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5400066641944081954" /&gt;&lt;/a&gt;&lt;br /&gt;Introduction to Nanotechnology&lt;br /&gt;&lt;br /&gt;Nanotechnology is defined as the study and use of structures between 1 nanometer and 100 nanometers in size. To give you an idea about this is, it would take eight 100 nanometer particles side by side to match the width of a human hair.&lt;br /&gt;Introduction to the Nanoparticles&lt;br /&gt;Scientists have been studying and working with nano particles for centuries, but the effectiveness of their work has been hampered by their inability to see the structure of nano particles. In recent decades the development of microscopes capable of displaying particles as small as atoms has allowed scientists to see what they are working with.&lt;br /&gt;&lt;br /&gt;Applications of nanotechnology:&lt;br /&gt;&lt;br /&gt;Medicine&lt;br /&gt;Researchers are developing customized nano particles the size of molecules that can be deliver drugs directly to diseased cells in human body.  When it's perfected, this method should be greatly reduce the damage treatment such as chemotherapy does to a patient's healthy cells&lt;br /&gt;Nano medicine refers to future developments in medicine that will be based on the ability to build nano robots. In the future these nano robots could actually be programmed to repair specific diseased cells, functioning in a similiar way to antibodies in our natural healing processes&lt;br /&gt;&lt;br /&gt;Electronics&lt;br /&gt;Nanotechnology holds some answers for how we might increase the capabilities of electronics devices while we reduce their weight and power consumption.&lt;br /&gt;&lt;br /&gt;Space&lt;br /&gt;Nanotechnology may hold the key to making space-flight more practical. Advancements in nano materials make lightweight solar sails and a cable for the space elevator possible. By significantly reducing the amount of rocket fuel required, these advances could lower the cost of reaching orbit and traveling in space.&lt;br /&gt;&lt;br /&gt;Food&lt;br /&gt;Nanotechnology is having an impact on several aspects of food science, from how food is grown to how it is packaged. Companies are developing nano materials that will make a difference not only in the taste of food, but also in food safety, and the health benefits that food delivers&lt;br /&gt;&lt;br /&gt;Fuel Cells&lt;br /&gt;Nanotechnology is being used to reduce the cost of catalysts used in fuel cells to produce hydrogen ions from fuel such as methanol and to improve the efficiency of membranes used in fuel cells to separate hydrogen ions from other gases such as oxygen.&lt;br /&gt;&lt;br /&gt;Solar Cells&lt;br /&gt;Companies have developed nanotech solar cells that can be manufactured at significantly lower cost than conventional solar cells. &lt;br /&gt;&lt;br /&gt;Batteries&lt;br /&gt;Companies are currently developing batteries using nano materials. One such battery will be a good as new after sitting on the shelf for decades. Another battery  can be recharged significantly faster than conventional batteries. &lt;br /&gt; &lt;br /&gt;Fuels&lt;br /&gt;Nanotechnology can address the shortage of fossil fuels such as diesel and gasoline by making the production of fuels from low grade raw materials economical, increasing the mileage of engines, and making the production of fuels from normal raw materials more efficient. &lt;br /&gt;&lt;br /&gt;Chemical Sensors&lt;br /&gt;Nanotechnology can enable sensors to detect very small amounts of chemical vapors. Various types of detecting elements, such as carbon nano tubes, zinc oxide nanowires or palladium nano particles can be used in nanotechnology-based sensors. Because of the small size of nano tubes, nano wires, or nano particles, a few gas molecules are sufficient to change the electrical properties of the sensing elements. This allows the detection of a very low concentration of chemical vapors.&lt;br /&gt;&lt;br /&gt;Better Air Quality&lt;br /&gt;Nanotechnology can improve the performance of catalysts used to transform vapors escaping from cars or industrial plants into harmless gasses. That's because catalysts made from nano particles have a greater surface area to interact with the reacting chemicals than catalysts made from larger particles. The larger surface area allows more chemicals to interact with the catalyst simultaneously, which makes the catalyst more effective. &lt;br /&gt;&lt;br /&gt;Cleaner Water&lt;br /&gt;Nanotechnology is being used to develop solutions to three very different problems in water quality. One challenge is the removal of industrial wastes, such as a cleaning solvent called TCE, from groundwater. Nano particles can be used to convert the contaminating chemical through a chemical reaction to make it harmless. Studies have shown that this method can be used successfully to reach contaminates dispersed in underground ponds and at much lower cost than methods which require pumping the water out of the ground for treatment.&lt;br /&gt;&lt;br /&gt;Fabric&lt;br /&gt;Making composite fabric with nano-sized particles or fibers allows improvement of fabric properties without a significant increase in weight, thickness, or stiffness as might have been the case with previously-used  techniques.&lt;br /&gt;&lt;br /&gt;Sporting Goods&lt;br /&gt;If you are a tennis or golf fan, you will be glad to hear that even sporting goods has wandered into the nano realm. Current nanotechnology applications in the sports arena include increasing the strength of tennis racquets, filling any imperfections in club shaft materials and reducing the rate at which air leaks from tennis balls.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-4266675158377840935?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/4266675158377840935/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=4266675158377840935' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/4266675158377840935'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/4266675158377840935'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/11/nano-technology.html' title='Nano Technology'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/__rFsrl4ZZDo/SvDkAASDdiI/AAAAAAAAAR0/G4zJY0IsxJ0/s72-c/nano.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-2890432264085774053</id><published>2009-10-12T23:06:00.002+05:30</published><updated>2009-10-12T23:09:28.755+05:30</updated><title type='text'>Multiple Access Techniques In Cellular Systems</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/__rFsrl4ZZDo/StNpxmj5p0I/AAAAAAAAARs/PsN_CiNiv7U/s1600-h/mat1.JPG"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 400px; height: 207px;" src="http://1.bp.blogspot.com/__rFsrl4ZZDo/StNpxmj5p0I/AAAAAAAAARs/PsN_CiNiv7U/s400/mat1.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5391769479778248514" /&gt;&lt;/a&gt;&lt;br /&gt;hi this is an article about the multiple access techniques used in the cellular systems.&lt;br /&gt;&lt;br /&gt;The goal in the design of a cellular system is to be able to handle as many calls as possible in a given bandwidth with the specifi ed blocking probability (reliability).&lt;br /&gt;&lt;br /&gt;Multiplexing deals with the division of the resources to create multiple channels.&lt;br /&gt;Multiplexing can create channels in frequency, time, etc., and the corresponding&lt;br /&gt;terms are then frequency division multiplexing (FDM), time division&lt;br /&gt;multiplexing (TDM), etc. Since the amount of spectrum available is limited,&lt;br /&gt;we need to fi nd ways to allow multiple users to share the available spectrum&lt;br /&gt;simultaneously. Shared access is used to implement a multiple access scheme when&lt;br /&gt;access by many users to a channel is required.&lt;br /&gt; For example, one cancreate multiple channels using TDM, but each of these channels can be accessedby a group of users using the ALOHA multiple access scheme. The multiple access schemes can be either reservation-based or random.&lt;br /&gt;Multiple access schemes allow many users to share the radio spectrum.&lt;br /&gt;Sharing the bandwidth effi ciently among users is one of the main objectives of&lt;br /&gt;multiple access schemes . &lt;br /&gt;The variability of wireless channels presentsboth challenges and opportunities in designing multiple access communicationssystems. Multiple access strategy has an impact on robustness and interference levels generated in other cells. Therefore, multiple access schemes are designed to maintain orthogonality and reduce interference effects.&lt;br /&gt;&lt;br /&gt;Multiple access schemes can be classifi ed as reservation-based multiple&lt;br /&gt;access (e.g., FDMA, TDMA, CDMA)  and random multiple access (e.g.,&lt;br /&gt;ALOHA, CSMA) . If data traffi c is continuous and a small&lt;br /&gt;transmission delay is required (for example in voice communication) reservationbased&lt;br /&gt;multiple access is used. The family of reservation-based multiple access&lt;br /&gt;includes frequency division multiple access (FDMA), time division multiple access&lt;br /&gt;(TDMA), and code division multiple access (CDMA). In many&lt;br /&gt;wireless systems for voice communication, the control channel is based on random&lt;br /&gt;multiple access and the communication channel is based on FDMA, TDMA, or&lt;br /&gt;CDMA. &lt;br /&gt;The reservation-based multiple access technique has a disadvantage in&lt;br /&gt;that once the channel is assigned, it remains idle if the user has nothing to transmitwhile other users may have data waiting to be transmitted. This problem is critical when data generation is random and has a high peak-rate to average-rate ratio.&lt;br /&gt;In this situation, random multiple access is more effi cient, because a communication&lt;br /&gt;channel is shared by many users and users transmit their data in a random or&lt;br /&gt;partially coordinated fashion. &lt;br /&gt;&lt;br /&gt;ALOHA and carrier sense multiple access (CSMA)&lt;br /&gt;are examples of random multiple access. If the data arrives in a random manner,&lt;br /&gt;and the data length is large, then random multiple access combined with&lt;br /&gt;a reservation protocol will perform better than both random- and reservationbased&lt;br /&gt;schemes.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-2890432264085774053?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/2890432264085774053/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=2890432264085774053' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/2890432264085774053'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/2890432264085774053'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/10/multiple-access-techniques-in-cellular.html' title='Multiple Access Techniques In Cellular Systems'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/__rFsrl4ZZDo/StNpxmj5p0I/AAAAAAAAARs/PsN_CiNiv7U/s72-c/mat1.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-8311021376339220484</id><published>2009-10-12T20:50:00.003+05:30</published><updated>2009-10-12T20:56:38.613+05:30</updated><title type='text'>LAPTOPS</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/__rFsrl4ZZDo/StNKo9tb03I/AAAAAAAAARk/6gkye3O34js/s1600-h/dell2.JPG"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;width: 400px; height: 369px;" src="http://4.bp.blogspot.com/__rFsrl4ZZDo/StNKo9tb03I/AAAAAAAAARk/6gkye3O34js/s400/dell2.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5391735246512968562" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/__rFsrl4ZZDo/StNKoRDqDtI/AAAAAAAAARc/McOPYU3T0cM/s1600-h/dell1.JPG"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;width: 400px; height: 249px;" src="http://1.bp.blogspot.com/__rFsrl4ZZDo/StNKoRDqDtI/AAAAAAAAARc/McOPYU3T0cM/s400/dell1.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5391735234526580434" /&gt;&lt;/a&gt;&lt;br /&gt;hi in this article i posted about the the best ecnomical and worthful laptop dont wonder that is dell inspiron 15 models. it is one of the best laptops i never seen.&lt;br /&gt;&lt;br /&gt;Specifications:&lt;br /&gt;&lt;br /&gt; Processors   : Intel®  CoreTM  2 Duo Processor T6600 (2.20GHz/ 800 FSB/ 2MB Cache)&lt;br /&gt;&lt;br /&gt;Operating System : Genuine Windows Vista®  Home Basic  (SP1) 32-Bit&lt;br /&gt;                                Genuine Windows Vista®  Home Premium  (SP1) 32-Bit&lt;br /&gt;                               &lt;br /&gt;Virtual  Memory         : Up to 4GB Dual Channel 800MHz DDR2 SDRAM.&lt;br /&gt;&lt;br /&gt;Chipset   : Intel®  Cantiga GM45 Chipset&lt;br /&gt;&lt;br /&gt;Graphics  Card  : Intel®  Integrated Graphics Media Accelerator 4500MHD&lt;br /&gt;&lt;br /&gt;LCD Display  : Glossy 15.6" Widescreen XGA (1366x768)&lt;br /&gt;&lt;br /&gt;Audio and Speakers : Intel High Definition Audio 2.0&lt;br /&gt;&lt;br /&gt;Hard Drives  : Up to 320GB configured with a 5400 RPM SATA hard drive&lt;br /&gt;&lt;br /&gt;Optical Drives  : DVD+/-RW with Dual Layer DVD+R write capability&lt;br /&gt;                                Blu-Ray/CD/DVD Combo Drive&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Power   : Up to 9-cell Primary Battery&lt;br /&gt;&lt;br /&gt;Camera   : Built-in 1.3MP webcam&lt;br /&gt;&lt;br /&gt;Wireless  : Dell Wireless 1397 802.11g Mini-Card&lt;br /&gt;      (or)&lt;br /&gt;                                Dell Wireless 1515 Wireless-N Mini-Card&lt;br /&gt;&lt;br /&gt;I/O Ports  : VGA, RJ11 (via optional USB dongle), &lt;br /&gt;                                RJ45,Audio jacks (1 line-in, 1-line out, 1 Mic-in),&lt;br /&gt;                                1 Express Card 54mm slot, 3 mini-card slots, &lt;br /&gt;                                2 USB 2.0 ports, Sim socket&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-8311021376339220484?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/8311021376339220484/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=8311021376339220484' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/8311021376339220484'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/8311021376339220484'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/10/laptops.html' title='LAPTOPS'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/__rFsrl4ZZDo/StNKo9tb03I/AAAAAAAAARk/6gkye3O34js/s72-c/dell2.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-8648412415237969640</id><published>2009-10-02T09:16:00.003+05:30</published><updated>2009-10-02T09:25:57.432+05:30</updated><title type='text'>GPRS in GSM</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/__rFsrl4ZZDo/SsV5wnnpUdI/AAAAAAAAARU/ZZVenl4Czcg/s1600-h/gprs.JPG"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;width: 400px; height: 258px;" src="http://3.bp.blogspot.com/__rFsrl4ZZDo/SsV5wnnpUdI/AAAAAAAAARU/ZZVenl4Czcg/s400/gprs.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5387846405394616786" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;hi this about the GPRS technology that is widely used in gsm phones.&lt;br /&gt;&lt;br /&gt;The general packet radio service (GPRS) enhances GSM data services&lt;br /&gt;signifi cantly by providing end-to-end packet switched data connections. This is&lt;br /&gt;particularly effi cient in Internet/intranet traffi c, where short bursts of intense data&lt;br /&gt;communications are actively interspersed with relatively long periods of inactivity.&lt;br /&gt;Because there is no real end-to-end connection to be established, setting up a&lt;br /&gt;GPRS call is almost instantaneous and users can be continuously on-line. Users&lt;br /&gt;have the additional benefi ts of paying for the actual data transmitted, rather than&lt;br /&gt;for connection time. Because GPRS does not require any dedicated end-to-end&lt;br /&gt;connection, it only uses network resources and bandwidth when data is actually&lt;br /&gt;being transmitted. This means that a given amount of radio bandwidth can be&lt;br /&gt;shared effi ciently among many users simultaneously.&lt;br /&gt;&lt;br /&gt;The next phase in the high-speed road map is the evolution of current short&lt;br /&gt;message service (SMS), such as smart messaging and unstructured supplementary&lt;br /&gt;service data (USSD), toward the new GPRS, a packet data service using TCP/IP&lt;br /&gt;and X.25 to offer speeds up to 115 kbps. GPRS has been standardized to optimally&lt;br /&gt;support a wide range of applications ranging from very frequent transmissions&lt;br /&gt;of medium to large data volume. Services of GPRS have been developed to&lt;br /&gt;reduce connection set-up time and allow an optimum usage of radio resources.&lt;br /&gt;GPRS provides a packet data service for GSM where time slots on the air interface&lt;br /&gt;can be assigned to GPRS over which packet data from several mobile stations is&lt;br /&gt;multiplexed.&lt;br /&gt;&lt;br /&gt;A similar evolution strategy, also adopting GPRS, has been developed for&lt;br /&gt;DAMPS (IS-136). For operators planning to offer wideband multimedia services,&lt;br /&gt;the move to GPRS packet-based data bearer service is signifi cant; it is a relatively&lt;br /&gt;small step compared to building a totally new 3G IMT-2000 network. Use of the&lt;br /&gt;GPRS network architecture for IS-136 packet data service enables data subscription&lt;br /&gt;roaming with GSM networks around the globe that support GPRS and&lt;br /&gt;its evolution. The IS-136 packet data service standard is known as GPRS-136.&lt;br /&gt;GPRS-136 provides the same capabilities as GSM GPRS. The user can access&lt;br /&gt;either X.25 or an IP-based data network.&lt;br /&gt;&lt;br /&gt;GPRS provides a core network platform for current GSM operators not&lt;br /&gt;only to expand the wireless data market in preparation for the introduction of&lt;br /&gt;3G services, but also a platform on which to build IMT-2000 frequencies should&lt;br /&gt;they acquire them.&lt;br /&gt;&lt;br /&gt;The implementation of GPRS has a limited impact on the GSM core network.&lt;br /&gt;It simply requires the addition of new packet data switching and gateway&lt;br /&gt;nodes, and an upgrade to existing nodes to provide a routing path for packet&lt;br /&gt;data between the wireless terminal and a gateway node. The gateway node provides&lt;br /&gt;interworking with external packet data networks for access to the Internet,&lt;br /&gt;intranet, and databases.&lt;br /&gt;&lt;br /&gt;GPRS supports all widely used data communicationsprotocols, including IP, so it is possible to &lt;br /&gt;connect with any data source fromanywhere in the world using a GPRS mobile terminal. &lt;br /&gt;GPRS supports applications ranging from low-speed short messages to high-speed corporate LAN communications.&lt;br /&gt;However, one of the key benefi ts of GPRS — that it is connected through the&lt;br /&gt;existing GSM air interface modulation scheme — is also a limitation, restricting its&lt;br /&gt;potential for delivering higher data rates than 115 kbps. To build even higher rate&lt;br /&gt;data capabilities into GSM, a new modulation scheme is needed.&lt;br /&gt;&lt;br /&gt;GPRS can be implemented in the existing GSM systems. Changes are required&lt;br /&gt;in an existing GSM network to introduce GPRS. The base station subsystem (BSS)&lt;br /&gt;consists of a base station controller (BSC) and packet control unit (PCU). The&lt;br /&gt;PCU supports all GPRS protocols for communication over the air interface. Its&lt;br /&gt;function is to set up, supervise, and disconnect packet switched calls. The packet&lt;br /&gt;control unit supports cell change, radio resource confi guration, and channel&lt;br /&gt;assignment. The base station transceiver (BTS) is a relay station without protocol&lt;br /&gt;functions. It performs modulation and demodulation.&lt;br /&gt;&lt;br /&gt;write ur comments&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-8648412415237969640?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/8648412415237969640/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=8648412415237969640' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/8648412415237969640'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/8648412415237969640'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/10/gprs-in-gsm.html' title='GPRS in GSM'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/__rFsrl4ZZDo/SsV5wnnpUdI/AAAAAAAAARU/ZZVenl4Czcg/s72-c/gprs.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-4787409378328246021</id><published>2009-10-02T09:09:00.003+05:30</published><updated>2009-10-07T21:40:02.830+05:30</updated><title type='text'>HSCSD(High Speed Circuit Switching Data)</title><content type='html'>hi this is one data transfering technology used in the GSM mobiles for internet usage.&lt;br /&gt;&lt;br /&gt;High-speed circuit switched data (HSCSD) is a feature that enables the&lt;br /&gt;co-allocation of multiple full rate traffi c channels (TCH/F) of GSM into an HSCSD&lt;br /&gt;confi guration. The aim of HSCSD is to provide a mixture of services with different&lt;br /&gt;air interface user rates by a single physical layer structure. The available capacity&lt;br /&gt;of an HSCSD confi guration is several times the capacity of a TCH/F, leading to a&lt;br /&gt;significant enhancement in air interface data transfer capability.&lt;br /&gt;&lt;br /&gt;Ushering faster data rates into the mainstream is the new speed of&lt;br /&gt;14.4 kbps per time slot and HSCSD protocols that approach wireline access&lt;br /&gt;rates of up to 57.6 kbps by using multiple 14.4 kbps time slots. The increase&lt;br /&gt;from the current baseline of 9.6 kbps to 14.4 kbps is due to a nominal reduction&lt;br /&gt;in the error-correction overhead of the GSM radio link protocol (RLP),&lt;br /&gt;allowing the use of a higher data rate.&lt;br /&gt;&lt;br /&gt;For operators, migration to HSCSD brings data into the mainstream, enabled&lt;br /&gt;in many cases by relatively standard software upgrades to base station (BS) and&lt;br /&gt;mobile switching center (MSC) equipment. Flexible air interface resource allocation&lt;br /&gt;allows the network to dynamically assign resources related to the air interface&lt;br /&gt;usage according to the network operator’s strategy, and the end-user’s request&lt;br /&gt;for a change in the air interface resource allocation based on data transfer needs.&lt;br /&gt;The provision of the asymmetric air interface connection allows simple mobile&lt;br /&gt;equipment to receive data at higher rates than otherwise would be possible with&lt;br /&gt;a symmetric connection.&lt;br /&gt;&lt;br /&gt;For end-users, HSCSD enables the roll-out of mainstream high-end segment&lt;br /&gt;services that enable faster web browsing, fi le downloads, mobile video-conference&lt;br /&gt;and navigation, vertical applications, telematics, and bandwidth-secure mobile&lt;br /&gt;local area network (LAN) access. Value-added service providers will also be able&lt;br /&gt;to offer guaranteed quality of service and cost-effi cient mass-market applications,&lt;br /&gt;such as direct IP where users make circuit-switched data calls straight into a GSM&lt;br /&gt;network router connected to the Internet. To the end-user, the value-added service&lt;br /&gt;provider or the operator is equivalent to an Internet service provider that offers a&lt;br /&gt;fast, secure dial-up Internet protocol service at cheaper mobile-to-mobile rates.&lt;br /&gt;HSCSD is provided within the existing mobility management. &lt;br /&gt;Roaming is also possible. The throughput for an HSCSD connection remains constant for the&lt;br /&gt;duration of the call, except for interruption of transmission during handoff. The&lt;br /&gt;handoff is simultaneous for all time slots making up an HSCSD connection. Endusers&lt;br /&gt;wanting to use HSCSD have to subscribe to general bearer services. Supplementary&lt;br /&gt;services applicable to general bearer services can be used simultaneously&lt;br /&gt;with HSCSD.&lt;br /&gt;&lt;br /&gt;Firmware on most current GSM PC cards needs to be upgraded. The reduced&lt;br /&gt;RLP layer also means that a stronger signal strength is necessary. Multiple time&lt;br /&gt;slot usage is probably only effi ciently available in off-peak times, increasing overall&lt;br /&gt;off-peak idle capacity usage. HSCSD is not a very feasible solution for bursty&lt;br /&gt;data applications.&lt;br /&gt;&lt;br /&gt;please write ur comments.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-4787409378328246021?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/4787409378328246021/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=4787409378328246021' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/4787409378328246021'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/4787409378328246021'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/10/hscsdhigh-speed-circuit-switching-data.html' title='HSCSD(High Speed Circuit Switching Data)'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-8950303222286400791</id><published>2009-10-02T09:06:00.002+05:30</published><updated>2009-10-02T09:07:31.693+05:30</updated><title type='text'>Data Evolution in GSM Technology</title><content type='html'>hi this is about the evolution in gsm technology for data transfers.&lt;br /&gt;&lt;br /&gt;From a radio access perspective, adding 3G capabilities to 2G systems mainly&lt;br /&gt;means supporting higher data rates. Possible scenarios depend on spectrum availability&lt;br /&gt;for the network service provider. Depending on the spectrum situation,&lt;br /&gt;two different migration paths can be supported:&lt;br /&gt;Reframing of existing spectrum bands&lt;br /&gt;New or modified spectrum bands&lt;br /&gt;Two 3G radio access schemes are identifi ed to support the different spectrum&lt;br /&gt;scenarios:&lt;br /&gt; 1. Enhanced data rates for GSM evolution (EDGE) with high-level modulation in&lt;br /&gt; a 200 kHz TDMA channel is based on plug-in transceiver equipment, thereby&lt;br /&gt; allowing the migration of existing bands in small spectrum segments.&lt;br /&gt; &lt;br /&gt; 2. Universal mobile telecommunications services (UMTS) is a new radio&lt;br /&gt; access network based on 5 MHz WCDMA and optimized for effi cient support&lt;br /&gt; of 3G services. UMTS can be used in both new and existing spectra.&lt;br /&gt; &lt;br /&gt; From a network point of view, 3G capabilities implies the addition of packet&lt;br /&gt;switched (PS) services, Internet access, and IP connectivity. With this approach,&lt;br /&gt;the existing mobile networks reuse the elements of mobility support, user authentication/&lt;br /&gt;service handling, and circuit switched (CS) services. With packet switched&lt;br /&gt;services, IP connectivity can then be added to provide a mobile multimedia core&lt;br /&gt;network by evolving the existing mobile network.&lt;br /&gt;&lt;br /&gt;GSM is moving to develop enhanced cutting-edge, customer-focused solutions&lt;br /&gt;to meet the challenges of the new millennium and 3G mobile services [29].&lt;br /&gt;When GSM was fi rst introduced, no one could have predicted the dramatic growth&lt;br /&gt;of the Internet and the rising demand for multimedia services. These developments&lt;br /&gt;have brought about new challenges to the world of GSM. For GSM operators, the&lt;br /&gt;emphasis is now rapidly changing from that of instigating and driving the development&lt;br /&gt;of technology to fundamentally enabling mobile data transmission to that&lt;br /&gt;of improving speed, quality, simplicity, coverage, and reliability in terms of tools&lt;br /&gt;and services that will boost mass market take-up.&lt;br /&gt;&lt;br /&gt;Users are increasingly looking to gain access to information and services&lt;br /&gt;wherever they are and whenever they want. GSM should provide that connectivity.&lt;br /&gt;Internet access, web browsing and the whole range of mobile multimedia capability&lt;br /&gt;are the major drivers for development of higher data speed technologies.&lt;br /&gt;Current data traffi c on most GSM networks is modest, less than 5% of total&lt;br /&gt;GSM traffi c. But with the new initiatives coming to fruition during the course of&lt;br /&gt;the next two to three years, exponential growth in data traffi c is forecast. The&lt;br /&gt;use of messaging-based applications may reach up to about 90% by the year&lt;br /&gt;2008. GSM data transmission using high-speed circuit switched data (HSCSD)&lt;br /&gt;and GPRS may reach a penetration of about 80% by 2008 [1].&lt;br /&gt;GSM operators have two nonexclusive options for evolving their networks&lt;br /&gt;to 3G wideband multimedia operation: (1) using GPRS and EDGE in the existing&lt;br /&gt;radio spectrum, and in small amounts of the new spectrum; or (2) using&lt;br /&gt;WCDMA in the new 2 GHz bands, or in large amounts of the existing spectrum.&lt;br /&gt;Both approaches offer a high degree of investment fl exibility because roll-out can&lt;br /&gt;proceed in line with market demand with the extensive reuse of existing network&lt;br /&gt;equipment and radio sites.&lt;br /&gt;&lt;br /&gt;In the new 2 GHz bands, 3G capabilities are delivered using a new wideband&lt;br /&gt;radio interface that offers much higher user data rates than are available&lt;br /&gt;today — 384 kbps in the wide area and up to 2 Mbps in the local area. Of equal&lt;br /&gt;importance for such services is the high-speed packet switching provided by GPRS&lt;br /&gt;and its connection to public and private IP networks.&lt;br /&gt;&lt;br /&gt;GSM and digital (D)AMPS (IS-136) operators can use existing radio bands&lt;br /&gt;to deliver some of the 3G services, even without the new wideband spectrum&lt;br /&gt;by evolving current networks and deploying GPRS and EDGE technologies.&lt;br /&gt;In the early years of 3G service deployment, a large proportion of wireless traffi c&lt;br /&gt;will still be voice-only and low-rate data. So whatever the ultimate capabilities&lt;br /&gt;of 3G networks, effi cient and profi table ways of delivering more basic wireless&lt;br /&gt;services are still needed.&lt;br /&gt;&lt;br /&gt;The signifi cance of EDGE for today’s GSM operators is that it increases data&lt;br /&gt;rates up to 384 kbps and potentially even higher in a good quality radio environment&lt;br /&gt;using current GSM spectrum and carrier structures more effi ciently. EDGE&lt;br /&gt;is both a complement and an alternative to new WCDMA coverage. EDGE also&lt;br /&gt;has the effect of unifying the GSM, D-AMPS and WCDMA services through the&lt;br /&gt;use of dual-mode terminals.&lt;br /&gt;&lt;br /&gt;please write ur comments&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-8950303222286400791?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/8950303222286400791/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=8950303222286400791' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/8950303222286400791'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/8950303222286400791'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/10/data-evolution-in-gsm-technology.html' title='Data Evolution in GSM Technology'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-8568603759351654360</id><published>2009-10-02T08:53:00.002+05:30</published><updated>2009-10-02T09:01:21.619+05:30</updated><title type='text'>Cellular Systems</title><content type='html'>hi this is about the emerging cellular concepts and their origin. we are all using the cellular phones so we have to know about the fundamental concept implemented.&lt;br /&gt;&lt;br /&gt; Most commercial radio and television systems are designed to cover as much&lt;br /&gt;area as possible. These systems typically operate at maximum power and with&lt;br /&gt;the tallest antennas allowed by the Federal Communications Commission (FCC).&lt;br /&gt;The frequency used by the transmitter cannot be reused again until there is&lt;br /&gt;enough geographical separation so that one station does not interfere signifi -&lt;br /&gt;cantly with another station assigned to that frequency. There may even be a large&lt;br /&gt;region between two transmitters using the same frequency where neither signal is&lt;br /&gt;received.&lt;br /&gt; The cellular system takes the opposite approach . It seeks to&lt;br /&gt;make an effi cient use of available channels by employing low-power transmitters&lt;br /&gt;to allow frequency reuse at much smaller distances . Maximizing&lt;br /&gt;the number of times each channel may be reused in a given geographic area is the&lt;br /&gt;key to an effi cient cellular system design.&lt;br /&gt; Cellular systems are designed to operate with groups of low-power radios&lt;br /&gt;spread out over the geographical service area. Each group of radios serve mobile&lt;br /&gt;stations located near them. The area served by each group of radios is called a cell.&lt;br /&gt;Each cell has an appropriate number of low-power radios to communicate within&lt;br /&gt;the cell itself. The power transmitted by the cell is chosen to be large enough to&lt;br /&gt;communicate with mobile stations located near the edge of the cell. The radius of&lt;br /&gt;each cell may be chosen to be perhaps 28 km (about 16 miles) in a start-up system&lt;br /&gt;with relatively few subscribers, down to less than 2 km (about 1 mile) for a mature&lt;br /&gt;system requiring considerable frequency reuse.&lt;br /&gt;&lt;br /&gt;As the traffi c grows, new cells and channels are added to the system. If an&lt;br /&gt;irregular cell pattern is selected, it would lead to an ineffi cient use of the spectrum&lt;br /&gt;due to its inability to reuse frequencies because of cochannel interference. In addition,&lt;br /&gt;it would also result in an uneconomical deployment of equipment, requiring&lt;br /&gt;relocation from one cell site to another. Therefore, a great deal of engineering&lt;br /&gt;effort would be required to readjust the transmission, switching, and control&lt;br /&gt;resources every time the system goes through its development phase. The use of a&lt;br /&gt;regular cell pattern in a cellular system design eliminates all these diffi culties.&lt;br /&gt;In reality, cell coverage is an irregularly shaped circle.&lt;br /&gt; The exact coverage of the cell depends on the terrain and many other factors. For design purposes and as&lt;br /&gt;a fi rst-order approximation, we assume that the coverage areas are regular polygons.&lt;br /&gt;For example, for omnidirectional antennas with constant signal power, each&lt;br /&gt;cell site coverage area would be circular. To achieve full coverage without dead&lt;br /&gt;spots, a series of regular polygons are required for cell sites. Any regular polygon&lt;br /&gt;such as an equilateral triangle, a square, or a hexagon can be used for cell design.&lt;br /&gt;The hexagon is used for two reasons: a hexagonal layout requires fewer cells and,&lt;br /&gt;therefore, fewer transmitter sites, and a hexagonal cell layout is less expensivecompared to square and triangular cells. In practice, after the polygons are drawn&lt;br /&gt;on a map of the coverage area, radial lines are drawn and the signal-to-noise ratio&lt;br /&gt;(SNR) calculated for various directions using the propagation models , or using appropriate computer programs . we assume regular polygons for coverage areas even though in&lt;br /&gt;practice that is only an approximation.&lt;br /&gt;&lt;br /&gt;please write ur comments about this post.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-8568603759351654360?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/8568603759351654360/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=8568603759351654360' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/8568603759351654360'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/8568603759351654360'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/10/cellular-systems.html' title='Cellular Systems'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-2473213371151047998</id><published>2009-10-02T08:11:00.006+05:30</published><updated>2009-10-07T21:26:16.476+05:30</updated><title type='text'>List of commands in Windows command prompt</title><content type='html'>hi this is a list of commands from a-z that we use in windows command prompt.other than this any commands u knows please write in comments.&lt;br /&gt;&lt;br /&gt;  A-Z windows XP commands&lt;br /&gt;a  &lt;br /&gt;   ADDUSERS  Add or list users to/from a CSV file&lt;br /&gt;   ARP       Address Resolution Protocol&lt;br /&gt;   ASSOC     Change file extension associations&lt;br /&gt;   ASSOCIAT  One step file association&lt;br /&gt;   ATTRIB    Change file attributes&lt;br /&gt;b&lt;br /&gt;   BOOTCFG   Edit Windows boot settings&lt;br /&gt;   BROWSTAT  Get domain, browser and PDC info&lt;br /&gt;c&lt;br /&gt;   CACLS     Change file permissions&lt;br /&gt;   CALL      Call one batch program from another&lt;br /&gt;   CD        Change Directory - move to a specific Folder&lt;br /&gt;   CHANGE    Change Terminal Server Session properties&lt;br /&gt;   CHKDSK    Check Disk - check and repair disk problems&lt;br /&gt;   CHKNTFS   Check the NTFS file system&lt;br /&gt;   CHOICE    Accept keyboard input to a batch file&lt;br /&gt;   CIPHER    Encrypt or Decrypt files/folders&lt;br /&gt;   CleanMgr  Automated cleanup of Temp files, recycle bin&lt;br /&gt;   CLEARMEM  Clear memory leaks&lt;br /&gt;   CLIP      Copy STDIN to the Windows clipboard.&lt;br /&gt;   CLS       Clear the screen&lt;br /&gt;   CLUSTER   Windows Clustering&lt;br /&gt;   CMD       Start a new CMD shell&lt;br /&gt;   COLOR     Change colors of the CMD window&lt;br /&gt;   COMP      Compare the contents of two files or sets of files&lt;br /&gt;   COMPACT   Compress files or folders on an NTFS partition&lt;br /&gt;   COMPRESS  Compress individual files on an NTFS partition&lt;br /&gt;   CON2PRT   Connect or disconnect a Printer&lt;br /&gt;   CONVERT   Convert a FAT drive to NTFS.&lt;br /&gt;   COPY      Copy one or more files to another location•&lt;br /&gt;   CSCcmd    Client-side caching (Offline Files)&lt;br /&gt;   CSVDE     Import or Export Active Directory data &lt;br /&gt;d&lt;br /&gt;   DATE      Display or set the date&lt;br /&gt;   DEFRAG    Defragment hard drive&lt;br /&gt;   DEL       Delete one or more files&lt;br /&gt;   DELPROF   Delete NT user profiles&lt;br /&gt;   DELTREE   Delete a folder and all subfolders&lt;br /&gt;   DevCon    Device Manager Command Line Utility &lt;br /&gt;   DIR       Display a list of files and folders&lt;br /&gt;   DIRUSE    Display disk usage&lt;br /&gt;   DISKCOMP  Compare the contents of two floppy disks&lt;br /&gt;   DISKCOPY  Copy the contents of one floppy disk to another&lt;br /&gt;   DISKPART  Disk Administration&lt;br /&gt;   DNSSTAT   DNS Statistics&lt;br /&gt;   DOSKEY    Edit command line, recall commands, and create macros&lt;br /&gt;   DSADD     Add user (computer, group..) to active directory&lt;br /&gt;   DSQUERY   List items in active directory&lt;br /&gt;   DSMOD     Modify user (computer, group..) in active directory&lt;br /&gt;   DSRM      Remove items from Active Directory&lt;br /&gt;e&lt;br /&gt;   ECHO      Display message on screen&lt;br /&gt;   ENDLOCAL  End localisation of environment changes in a batch file&lt;br /&gt;   ERASE     Delete one or more files&lt;br /&gt;   EXIT      Quit the current script/routine and set an errorlevel&lt;br /&gt;   EXPAND    Uncompress files&lt;br /&gt;   EXTRACT   Uncompress CAB files&lt;br /&gt;f&lt;br /&gt;   FC        Compare two files&lt;br /&gt;   FIND      Search for a text string in a file&lt;br /&gt;   FINDSTR   Search for strings in files&lt;br /&gt;   FOR /F    Loop command: against a set of files&lt;br /&gt;   FOR /F    Loop command: against the results of another command&lt;br /&gt;   FOR       Loop command: all options Files, Directory, List&lt;br /&gt;   FORFILES  Batch process multiple files&lt;br /&gt;   FORMAT    Format a disk&lt;br /&gt;   FREEDISK  Check free disk space (in bytes)&lt;br /&gt;   FSUTIL    File and Volume utilities&lt;br /&gt;   FTP       File Transfer Protocol&lt;br /&gt;   FTYPE     Display or modify file types used in file extension associations&lt;br /&gt;g&lt;br /&gt;   GLOBAL    Display membership of global groups&lt;br /&gt;   GOTO      Direct a batch program to jump to a labelled line&lt;br /&gt;h&lt;br /&gt;   HELP      Online Help&lt;br /&gt;i&lt;br /&gt;   iCACLS    Change file and folder permissions&lt;br /&gt;   IF        Conditionally perform a command&lt;br /&gt;   IFMEMBER  Is the current user in an NT Workgroup&lt;br /&gt;   IPCONFIG  Configure IP&lt;br /&gt;k&lt;br /&gt;   KILL      Remove a program from memory&lt;br /&gt;L&lt;br /&gt;   LABEL     Edit a disk label&lt;br /&gt;   LOCAL     Display membership of local groups&lt;br /&gt;   LOGEVENT  Write text to the NT event viewer.&lt;br /&gt;   LOGOFF    Log a user off&lt;br /&gt;   LOGTIME   Log the date and time in a file&lt;br /&gt;m&lt;br /&gt;   MAPISEND  Send email from the command line&lt;br /&gt;   MBSAcli   Baseline Security Analyzer. &lt;br /&gt;   MEM       Display memory usage&lt;br /&gt;   MD        Create new folders&lt;br /&gt;   MKLINK    Create a symbolic link (linkd)&lt;br /&gt;   MODE      Configure a system device&lt;br /&gt;   MORE      Display output, one screen at a time&lt;br /&gt;   MOUNTVOL  Manage a volume mount point&lt;br /&gt;   MOVE      Move files from one folder to another&lt;br /&gt;   MOVEUSER  Move a user from one domain to another&lt;br /&gt;   MSG       Send a message&lt;br /&gt;   MSIEXEC   Microsoft Windows Installer&lt;br /&gt;   MSINFO    Windows NT diagnostics&lt;br /&gt;   MSTSC     Terminal Server Connection (Remote Desktop Protocol)&lt;br /&gt;   MUNGE     Find and Replace text within file(s)&lt;br /&gt;   MV        Copy in-use files&lt;br /&gt;n&lt;br /&gt;   NET       Manage network resources&lt;br /&gt;   NETDOM    Domain Manager&lt;br /&gt;   NETSH     Configure network protocols&lt;br /&gt;   NETSVC    Command-line Service Controller&lt;br /&gt;   NBTSTAT   Display networking statistics (NetBIOS over TCP/IP)&lt;br /&gt;   NETSTAT   Display networking statistics (TCP/IP)&lt;br /&gt;   NOW       Display the current Date and Time &lt;br /&gt;   NSLOOKUP  Name server lookup&lt;br /&gt;   NTBACKUP  Backup folders to tape&lt;br /&gt;   NTRIGHTS  Edit user account rights&lt;br /&gt;p&lt;br /&gt;   PATH      Display or set a search path for executable files&lt;br /&gt;   PATHPING  Trace route plus network latency and packet loss&lt;br /&gt;   PAUSE     Suspend processing of a batch file and display a message&lt;br /&gt;   PERMS     Show permissions for a user&lt;br /&gt;   PERFMON   Performance Monitor&lt;br /&gt;   PING      Test a network connection&lt;br /&gt;   POPD      Restore the previous value of the current directory saved by PUSHD&lt;br /&gt;   PORTQRY   Display the status of ports and services&lt;br /&gt;   POWERCFG  Configure power settings&lt;br /&gt;   PRINT     Print a text file&lt;br /&gt;   PRNCNFG   Display, configure or rename a printer&lt;br /&gt;   PRNMNGR   Add, delete, list printers set the default printer&lt;br /&gt;   PROMPT    Change the command prompt&lt;br /&gt;   PsExec     Execute process remotely&lt;br /&gt;   PsFile      Show files opened remotely&lt;br /&gt;   PsGetSid    Display the SID of a computer or a user&lt;br /&gt;   PsInfo      List information about a system&lt;br /&gt;   PsKill      Kill processes by name or process ID&lt;br /&gt;   PsList      List detailed information about processes&lt;br /&gt;   PsLoggedOn  Who's logged on (locally or via resource sharing)&lt;br /&gt;   PsLogList   Event log records&lt;br /&gt;   PsPasswd    Change account password&lt;br /&gt;   PsService   View and control services&lt;br /&gt;   PsShutdown  Shutdown or reboot a computer&lt;br /&gt;   PsSuspend   Suspend processes&lt;br /&gt;   PUSHD     Save and then change the current directory&lt;br /&gt;q&lt;br /&gt;   QGREP     Search file(s) for lines that match a given pattern.&lt;br /&gt;r&lt;br /&gt; RASDIAL   Manage RAS connections&lt;br /&gt;   RASPHONE  Manage RAS connections&lt;br /&gt;   RECOVER   Recover a damaged file from a defective disk.&lt;br /&gt;   REG       Registry: Read, Set, Export, Delete keys and values&lt;br /&gt;   REGEDIT   Import or export registry settings&lt;br /&gt;   REGSVR32  Register or unregister a DLL&lt;br /&gt;   REGINI    Change Registry Permissions&lt;br /&gt;   REM       Record comments (remarks) in a batch file&lt;br /&gt;   REN       Rename a file or files&lt;br /&gt;   REPLACE   Replace or update one file with another&lt;br /&gt;   RD        Delete folder(s)&lt;br /&gt;   RMTSHARE  Share a folder or a printer&lt;br /&gt;   ROBOCOPY  Robust File and Folder Copy&lt;br /&gt;   ROUTE     Manipulate network routing tables&lt;br /&gt;   RUNAS     Execute a program under a different user account&lt;br /&gt;   RUNDLL32  Run a DLL command (add/remove print connections)&lt;br /&gt;s&lt;br /&gt;   SC        Service Control&lt;br /&gt;   SCHTASKS  Schedule a command to run at a specific time&lt;br /&gt;   SCLIST    Display NT Services&lt;br /&gt;   SET       Display, set, or remove environment variables&lt;br /&gt;   SETLOCAL  Control the visibility of environment variables&lt;br /&gt;   SETX      Set environment variables permanently &lt;br /&gt;   SHARE     List or edit a file share or print share&lt;br /&gt;   SHIFT     Shift the position of replaceable parameters in a batch file&lt;br /&gt;   SHORTCUT  Create a windows shortcut (.LNK file)&lt;br /&gt;   SHOWGRPS  List the NT Workgroups a user has joined&lt;br /&gt;   SHOWMBRS  List the Users who are members of a Workgroup&lt;br /&gt;   SHUTDOWN  Shutdown the computer&lt;br /&gt;   SLEEP     Wait for x seconds&lt;br /&gt;   SLMGR     Software Licensing Management (Vista/2008)&lt;br /&gt;   SOON      Schedule a command to run in the near future&lt;br /&gt;   SORT      Sort input&lt;br /&gt;   START     Start a program or command in a separate window&lt;br /&gt;   SU        Switch User&lt;br /&gt;   SUBINACL  Edit file and folder Permissions, Ownership and Domain&lt;br /&gt;   SUBST     Associate a path with a drive letter&lt;br /&gt;   SYSTEMINFO  List system configuration&lt;br /&gt;t&lt;br /&gt;   TASKLIST  List running applications and services&lt;br /&gt;   TASKKILL  Remove a running process from memory&lt;br /&gt;   TIME      Display or set the system time&lt;br /&gt;   TIMEOUT   Delay processing of a batch file&lt;br /&gt;   TITLE     Set the window title for a CMD.EXE session&lt;br /&gt;   TLIST     Task list with full path&lt;br /&gt;   TOUCH     Change file timestamps    &lt;br /&gt;   TRACERT   Trace route to a remote host&lt;br /&gt;   TREE      Graphical display of folder structure&lt;br /&gt;   TYPE      Display the contents of a text file&lt;br /&gt;u&lt;br /&gt;   USRSTAT   List domain usernames and last login&lt;br /&gt;v&lt;br /&gt;   VER       Display version information&lt;br /&gt;   VERIFY    Verify that files have been saved&lt;br /&gt;   VOL       Display a disk label&lt;br /&gt;w&lt;br /&gt;   WHERE     Locate and display files in a directory tree&lt;br /&gt;   WHOAMI    Output the current UserName and domain&lt;br /&gt;   WINDIFF   Compare the contents of two files or sets of files&lt;br /&gt;   WINMSD    Windows system diagnostics&lt;br /&gt;   WINMSDP   Windows system diagnostics II&lt;br /&gt;   WMIC      WMI Commands&lt;br /&gt;x&lt;br /&gt;   XCACLS    Change file and folder permissions&lt;br /&gt;   XCOPY     Copy files and folders&lt;br /&gt;   ::        Comment / Remark&lt;br /&gt;&lt;br /&gt;please write ur comments about this commands and if u know any other commands write in comments. it will be useful for the users&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-2473213371151047998?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/2473213371151047998/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=2473213371151047998' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/2473213371151047998'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/2473213371151047998'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/10/list-of-commands-in-command-prompt.html' title='List of commands in Windows command prompt'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-2596315022307859843</id><published>2009-09-06T15:03:00.002+05:30</published><updated>2009-09-06T15:13:04.544+05:30</updated><title type='text'>BRAIN Vs COMPUTERS</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/__rFsrl4ZZDo/SqOEIOt2JaI/AAAAAAAAAQk/jdT6Vu9LYm8/s1600-h/brain.JPG"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 320px; height: 118px;" src="http://4.bp.blogspot.com/__rFsrl4ZZDo/SqOEIOt2JaI/AAAAAAAAAQk/jdT6Vu9LYm8/s320/brain.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5378287656934712738" /&gt;&lt;/a&gt;&lt;br /&gt;hi here i written about the comparison between brain and the digital computers.&lt;br /&gt;&lt;br /&gt;Brains and digital computers perform quite different tasks, and have different properties. &lt;br /&gt;there are more neurons in the typical human brain than there are bits in a typical&lt;br /&gt;high-end computer workstation. We can predict that this will not hold true for long, because the&lt;br /&gt;human brain is evolving very slowly, whereas computer memories are growing rapidly. In any&lt;br /&gt;and in parallelism. Computer chips can execute an instruction in tens of nanoseconds, whereas&lt;br /&gt;neurons require milliseconds to fire. &lt;br /&gt;&lt;br /&gt;Brains more than make up for this, however, because all the neurons and synapses are active simultaneously, whereas most current computers have only&lt;br /&gt;one or at most a few CPUs. A neural network running ori a serial computer requires hundreds&lt;br /&gt;of cycles to decide if a single neuron-like unit will fire, whereas in a real brain, all the neurons&lt;br /&gt;do this in a single step. Thus, even though a computer is a million times faster in raw switching&lt;br /&gt;speed, the brain ends up being a billion times faster at what it does. One of the attractions of the&lt;br /&gt;neural network approach is the hope that a device could be built that combines the parallelism of&lt;br /&gt;the brain with the switching speed of the computer. Full-scale hardware development will depend&lt;br /&gt;on finding a family of neural network algorithms that provides a basis for long-term investment.&lt;br /&gt;&lt;br /&gt;A brain can perform a complex task—recognize a face, for example—in less than a second,&lt;br /&gt;which is only enough time for a few hundred cycles. A serial computer requires billions of cycles&lt;br /&gt;to perform the same task less well. Clearly, there is an opportunity for massive parallelism here.&lt;br /&gt;Neural networks may provide a model for massively parallel computation that is more successful&lt;br /&gt;than the approach of "parallelizing" traditional serial algorithms.&lt;br /&gt;&lt;br /&gt;Brains are more fault-tolerant than computers. A hardware error that flips a single bit&lt;br /&gt;can doom an entire computation, but brain cells die all the time with no ill effect to the overall&lt;br /&gt;functioning of the brain. It is true that there are a variety of diseases and traumas that can affect&lt;br /&gt;a brain, but for the most part, brains manage to muddle through for 70 or 80 years with no need&lt;br /&gt;to replace a memory card, call the manufacturer's service line, or reboot. In addition, brains&lt;br /&gt;are constantly faced with novel input, yet manage to do something with it. Computer programs&lt;br /&gt;rarely work as well with novel input, unless the programmer has been exceptionally careful. The&lt;br /&gt;third attraction of neural networks is graceful degradation: they tend to have a gradual rather&lt;br /&gt;than sharp drop-off in performance as conditions worsen.&lt;br /&gt;&lt;br /&gt;The final attraction of neural networks is that they are designed to be trained using an&lt;br /&gt;inductive learning algorithm. (Contrary to the impression given by the popular media, of course,&lt;br /&gt;neural networks are far from being the only AI systems capable of learning.) After the network&lt;br /&gt;is initialized, it can be modified to improve its performance on input/output pairs. To the extent&lt;br /&gt;that the learning algorithms can be made general and efficient, this increases the value of neural&lt;br /&gt;networks as psychological models, and makes them useful tools for creating a wide variety of&lt;br /&gt;high-performance applications&lt;br /&gt;&lt;br /&gt;please write ur comments&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-2596315022307859843?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/2596315022307859843/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=2596315022307859843' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/2596315022307859843'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/2596315022307859843'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/09/brain-vs-computers.html' title='BRAIN Vs COMPUTERS'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/__rFsrl4ZZDo/SqOEIOt2JaI/AAAAAAAAAQk/jdT6Vu9LYm8/s72-c/brain.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-4913561236251548771</id><published>2009-09-06T14:46:00.004+05:30</published><updated>2009-09-06T15:13:33.149+05:30</updated><title type='text'>NEURAL NETWORKS</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/__rFsrl4ZZDo/SqOBleoBB8I/AAAAAAAAAQc/qt7AJSmrkHU/s1600-h/neural.JPG"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;width: 320px; height: 312px;" src="http://4.bp.blogspot.com/__rFsrl4ZZDo/SqOBleoBB8I/AAAAAAAAAQc/qt7AJSmrkHU/s320/neural.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5378284860886550466" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/__rFsrl4ZZDo/SqOBbs4wimI/AAAAAAAAAQU/w-37jxfl3zA/s1600-h/formula.JPG"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 241px; height: 100px;" src="http://4.bp.blogspot.com/__rFsrl4ZZDo/SqOBbs4wimI/AAAAAAAAAQU/w-37jxfl3zA/s320/formula.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5378284692916177506" /&gt;&lt;/a&gt;&lt;br /&gt;hi this a article about the neural network and their importance.&lt;br /&gt;&lt;br /&gt;A neural network is composed of a number of nodes, or units, connected by links. Each link&lt;br /&gt;has a numeric weight associated with it. Weights are the primary means of long-term storage&lt;br /&gt;in neural networks, and learning usually takes place by updating the weights. Some of the units&lt;br /&gt;are connected to the external environment, and can be designated as input or output units. The&lt;br /&gt;weights are modified so as to try to bring the network's input/output behavior more into line with&lt;br /&gt;that of the environment providing the inputs.&lt;br /&gt;Each unit has a set of input links from other units, a set of output links to other units, a&lt;br /&gt;current activation level, and a means of computing the activation level at the next step in time,&lt;br /&gt;given its inputs and weights. The idea is that each unit does a local computation based on inputs&lt;br /&gt;from its neighbors, but without the need for any global control over the set of units as a whole.&lt;br /&gt;In practice, most neural network implementations are in software and use synchronous control&lt;br /&gt;to update all the units in a fixed sequence.&lt;br /&gt;To build a neural network to perform some task, one must first decide how many units are&lt;br /&gt;to be used, what kind of units are appropriate, and how the units are to be connected to form a&lt;br /&gt;network. One then initializes the weights of the network, and trains the weights using a learning&lt;br /&gt;algorithm applied to a set of training examples for the task.3 The use of examples also implies&lt;br /&gt;that one must decide how to encode the examples in terms of inputs and outputs of the network.&lt;br /&gt;&lt;br /&gt;Notation&lt;br /&gt;Neural networks have lots of pieces, and to refer to them we will need to introduce a variety of&lt;br /&gt;mathematical notations. For convenience, see the diagram.&lt;br /&gt;&lt;br /&gt;Simple computing elements&lt;br /&gt;Figure 19.4 shows a typical unit. Each unit performs a simple computation: it receives signals&lt;br /&gt;from its input links and computes a new activation level that it sends along each of its output&lt;br /&gt;links. The computation of the activation level is based on the values of each input signal received&lt;br /&gt;from a neighboring node, and the weights on each input link. The computation is split into&lt;br /&gt;two components. First is a linear component, called the input function, int, that computes the&lt;br /&gt;weighted sum of the unit's input values. Second is a nonlinear component called the activation&lt;br /&gt;function, g, that transforms the weighted sum into the final value that serves as the unit's activation&lt;br /&gt;value, a,. Usually, all units in a network use the same activation function&lt;br /&gt;The total weighted input is the sum of the input activations times their respective weights:&lt;br /&gt;&lt;br /&gt;See the formula u can understand the computing.&lt;br /&gt;&lt;br /&gt;please write ur comments&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-4913561236251548771?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/4913561236251548771/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=4913561236251548771' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/4913561236251548771'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/4913561236251548771'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/09/neural-networks.html' title='NEURAL NETWORKS'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/__rFsrl4ZZDo/SqOBleoBB8I/AAAAAAAAAQc/qt7AJSmrkHU/s72-c/neural.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-8278811722217909426</id><published>2009-09-05T08:33:00.001+05:30</published><updated>2009-09-05T08:42:12.742+05:30</updated><title type='text'>Internet Architecture</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/__rFsrl4ZZDo/SqHW-Io-wqI/AAAAAAAAAQM/tTj24sEAgvA/s1600-h/TCP.JPG"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;width: 320px; height: 216px;" src="http://2.bp.blogspot.com/__rFsrl4ZZDo/SqHW-Io-wqI/AAAAAAAAAQM/tTj24sEAgvA/s320/TCP.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5377815793016685218" /&gt;&lt;/a&gt;&lt;br /&gt;In this article i written about the internet architecture.&lt;br /&gt;&lt;br /&gt;The Internet architecture, which is also sometimes called the TCP/IP architecture after&lt;br /&gt;its two main protocols. The Internet architecture evolved out of experiences with an earlier packet-switched network called the ARPANET. Both the Internet and the ARPANET&lt;br /&gt;were funded by the Advanced Research Projects Agency (ARPA), one of the R&amp;D&lt;br /&gt;funding agencies of the U.S. Department of Defense. The Internet and ARPANET&lt;br /&gt;were around before the OSI architecture, and the experience gained from building&lt;br /&gt;them was a major influence on the OSI reference model.&lt;br /&gt;While the seven-layer OSI model can, with some imagination, be applied to the&lt;br /&gt;Internet, a four-layer model is often used instead. At the lowest level are a wide variety&lt;br /&gt;of network protocols, denoted NET1, NET2, and so on. In practice, these protocols&lt;br /&gt;are implemented by a combination of hardware (e.g., a network adaptor) and software&lt;br /&gt;(e.g., a network device driver). For example, you might find Ethernet or Fiber&lt;br /&gt;Distributed Data Interface (FDDI) protocols at this layer. (These protocols in turn&lt;br /&gt;may actually involve several sublayers, but the Internet architecture does not presume&lt;br /&gt;anything about them.) The second layer consists of a single protocol—the Internet&lt;br /&gt;Protocol (IP). This is the protocol that supports the interconnection of multiple networking&lt;br /&gt;technologies into a single, logical internetwork. The third layer contains two&lt;br /&gt;main protocols—the Transmission Control Protocol (TCP) and the User Datagram&lt;br /&gt;Protocol (UDP). TCP and UDP provide alternative logical channels to application programs: TCP provides a reliable byte-stream channel, and UDP provides an unreliable&lt;br /&gt;datagram delivery channel (datagram may be thought of as a synonym for&lt;br /&gt;message). In the language of the Internet, TCP and UDP are sometimes called end-to-&lt;br /&gt;end protocols, although it is equally correct to refer to them as transport protocols.&lt;br /&gt;Running above the transport layer are a range of application protocols, such as&lt;br /&gt;FTP, TFTP (Trivial File Transport Protocol), Telnet (remote login), and SMTP (Simple&lt;br /&gt;Mail Transfer Protocol, or electronic mail), that enable the interoperation of popular&lt;br /&gt;applications. To understand the difference between an application layer protocol and&lt;br /&gt;an application, think of all the different World Wide Web browsers that are available&lt;br /&gt;(e.g., Mosaic, Netscape, Internet Explorer, Lynx, etc.). There are a similarly large&lt;br /&gt;number of different implementations of Web servers. The reason that you can use any&lt;br /&gt;one of these application programs to access a particular site on the Web is because&lt;br /&gt;they all conform to the same application layer protocol: HTTP (HyperText Transport&lt;br /&gt;Protocol). Confusingly, the same word sometimes applies to both an application and&lt;br /&gt;the application layer protocol that it uses (e.g., FTP).&lt;br /&gt;The Internet architecture has three features that are worth highlighting.&lt;br /&gt;&lt;br /&gt; First, as the Internet architecture does not imply strict layering.&lt;br /&gt;The application is free to bypass the defined transport layers and to directly use IP or&lt;br /&gt;one of the underlying networks. In fact, programmers are free to define new channel&lt;br /&gt;abstractions or applications that run on top of any of the existing protocols.&lt;br /&gt;&lt;br /&gt;Second, if you look closely at the protocol graph you will notice&lt;br /&gt;an hourglass shape—wide at the top, narrow in the middle, and wide at the bottom.&lt;br /&gt;This shape actually reflects the central philosophy of the architecture. That is, IP serves&lt;br /&gt;as the focal point for the architecture—it defines a common method for exchanging&lt;br /&gt;packets among a wide collection of networks. Above IP can be arbitrarily many transport&lt;br /&gt;protocols, each offering a different channel abstraction to application programs.&lt;br /&gt;Thus, the issue of delivering messages from host to host is completely separated from&lt;br /&gt;the issue of providing a useful process-to-process communication service. Below IP,&lt;br /&gt;the architecture allows for arbitrarily many different network technologies, ranging&lt;br /&gt;from Ethernet to FDDI to ATM to single point-to-point links.&lt;br /&gt;&lt;br /&gt;A final attribute of the Internet architecture (or more accurately, of the IETF&lt;br /&gt;culture) is that in order for someone to propose a new protocol to be included in the&lt;br /&gt;architecture, they must produce both a protocol specification and at least one (and&lt;br /&gt;preferably two) representative implementations of the specification. The existence of&lt;br /&gt;working implementations is required for standards to be adopted by the IETF. This&lt;br /&gt;cultural assumption of the design community helps to ensure that the architecture’s&lt;br /&gt;protocols can be efficiently implemented.&lt;br /&gt;&lt;br /&gt;please write ur comments&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-8278811722217909426?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/8278811722217909426/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=8278811722217909426' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/8278811722217909426'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/8278811722217909426'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/09/internet-architecture.html' title='Internet Architecture'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/__rFsrl4ZZDo/SqHW-Io-wqI/AAAAAAAAAQM/tTj24sEAgvA/s72-c/TCP.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-558469695338218859</id><published>2009-09-05T08:10:00.005+05:30</published><updated>2009-09-05T08:33:28.173+05:30</updated><title type='text'>HUMAN HEART WHICH IS ARTIFICIAL</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/__rFsrl4ZZDo/SqHU9kclAkI/AAAAAAAAAQE/Wc51-cVWfzI/s1600-h/qwe.JPG"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;width: 320px; height: 191px;" src="http://3.bp.blogspot.com/__rFsrl4ZZDo/SqHU9kclAkI/AAAAAAAAAQE/Wc51-cVWfzI/s320/qwe.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5377813584277733954" /&gt;&lt;/a&gt;&lt;br /&gt;hi i read about a interesting article tat human being lives without heart.dont get shocked he can live with a man made artificial heart. read this u can learn more.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;What is an artificial heart?&lt;/span&gt;&lt;br /&gt;An artificial heart is an extra ventricle (pumping chamber) capable of pumping&lt;br /&gt;blood around the body of a person whose own heart is failing. The pump itself&lt;br /&gt;is made of a combination of metal and plastic and consists of a small pumping&lt;br /&gt;chamber lined by a special material that prevents blood clots from forming. The&lt;br /&gt;pumping chamber may be implanted within the body itself or may lie outside the&lt;br /&gt;body depending on the type of artificial heart being used.&lt;br /&gt;An artificial heart may be connected to a person in various ways to support the&lt;br /&gt;left heart, the right heart or both sides of the heart ;&lt;br /&gt;it may be &lt;br /&gt;• attached to the left atrium/ventricle and the aorta (called a “left ventricular&lt;br /&gt;assist device” or LVAD), or&lt;br /&gt;• attached to the right atrium and pulmonary artery (called a “right&lt;br /&gt;ventricular assist device” or RVAD), or&lt;br /&gt;• attached in both ways described above (called a “biventricular assist&lt;br /&gt;device” or BiVAD).&lt;br /&gt;The device may bypass the weakened ventricle(s) either partially or totally.&lt;br /&gt;Another type is the” total artificial heart” (TAH) which is a mechanical substitute&lt;br /&gt;for the entire heart. It is implanted after the person’s heart has been removed.&lt;br /&gt;This type is rarely used at present.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;How does an artificial heart work?&lt;/span&gt;&lt;br /&gt;Blood enters the artificial heart from the left or right atrium and is then pumped&lt;br /&gt;into the aorta or pulmonary artery, depending on which side of the heart is&lt;br /&gt;being supported.&lt;br /&gt;&lt;br /&gt;The device is powered by either compressed air or electricity. A thin cable&lt;br /&gt;connects the pumping chamber to a control console from which the pump function&lt;br /&gt;is regulated. The control console may be a large box on wheels that stays beside&lt;br /&gt;the person and can move with the person when he or she walks around in the&lt;br /&gt;hospital. More recently, a much smaller controller with attachable batteries has&lt;br /&gt;been designed which can be worn by the person on a belt or vest. This allows the&lt;br /&gt;person much greater freedom and mobility compared with the large console.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Who needs an artificial heart?&lt;/span&gt;&lt;br /&gt;A person may require an artificial heart when his or her own heart fails and&lt;br /&gt;is unable to pump blood to meet the body’s needs. These people may have&lt;br /&gt;symptoms such as persistent tiredness, lethargy, shortness of breath on&lt;br /&gt;exertion or at rest, poor appetite, and swelling of their ankles. Function of other&lt;br /&gt;body organs such as the lungs, liver and kidneys may also be impaired as a&lt;br /&gt;result of heart failure.&lt;br /&gt;Reasons why the heart fails include:&lt;br /&gt;• disease of the heart muscle itself (cardiomyopathy)&lt;br /&gt;• disease of the arteries of the heart (coronary heart disease) and its&lt;br /&gt;complications (e.g. a heart attack)&lt;br /&gt;• severe viral infections of the heart (myocarditis)&lt;br /&gt;• other less common diseases.&lt;br /&gt;&lt;br /&gt;People with a failing heart are first treated with drugs that take the load off&lt;br /&gt;the heart and help it function better. Sometimes the heart failure is so severe&lt;br /&gt;that the drugs are ineffective. The other treatment option for these severely ill&lt;br /&gt;people is heart transplantation.&lt;br /&gt;Heart transplants are performed using hearts donated from people who suffer&lt;br /&gt;brain death; for example, as a result of a motor vehicle accident or a brain&lt;br /&gt;haemorrhage. These people’s hearts are working well despite brain death.&lt;br /&gt;Unfortunately there are not enough heart donors in this country to help all those&lt;br /&gt;people who need a heart transplant. Therefore, some of these people will die&lt;br /&gt;from their heart failure before a transplant can be performed.&lt;br /&gt;Artificial hearts may be used in these very ill people as a temporary measure&lt;br /&gt;until a donor heart becomes available, or to allow a person’s damaged heart to&lt;br /&gt;rest or recover following damage. Occasionally, artificial hearts are implanted&lt;br /&gt;as a last resort in people who are unsuitable for heart transplantation.&lt;br /&gt;Between twenty and thirty people receive artificial hearts in Australia each&lt;br /&gt;year. Most of these artificial hearts have been implanted as a bridge to heart&lt;br /&gt;transplantation. However, recently a small number have been implanted on a&lt;br /&gt;permanent basis as an alternative to heart transplantation.&lt;br /&gt;&lt;br /&gt;please read this and write ur comments&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-558469695338218859?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/558469695338218859/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=558469695338218859' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/558469695338218859'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/558469695338218859'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/09/human-heart.html' title='HUMAN HEART WHICH IS ARTIFICIAL'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/__rFsrl4ZZDo/SqHU9kclAkI/AAAAAAAAAQE/Wc51-cVWfzI/s72-c/qwe.JPG' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-6056607241983453626</id><published>2009-09-04T23:20:00.001+05:30</published><updated>2009-09-04T23:22:20.117+05:30</updated><title type='text'>Applications of RFID</title><content type='html'>RFID has various applications due to its liberal cost and also have more advantages.&lt;br /&gt;&lt;br /&gt;RFID systems can be used just about anywhere, from clothing tags to missiles&lt;br /&gt;to pet tags to food — anywhere that a unique identifi cation system is needed.&lt;br /&gt;The tag can carry information as simple as a pet owner’s name and address or&lt;br /&gt;the cleaning instructions on a sweater to as complex as instructions on how to&lt;br /&gt;assemble a car. Some auto manufacturers use RFID systems to move cars through&lt;br /&gt;an assembly line. At each successive stage of production, the RFID tag tells the&lt;br /&gt;computers what the next step of the automated assembly is. The following are&lt;br /&gt;some of the applications of RFID systems:&lt;br /&gt;&lt;br /&gt;Automotive. Auto makers have added security and convenience to automobiles&lt;br /&gt;by using RFID technology for anti-theft immobilizers and passiveentry&lt;br /&gt;systems.&lt;br /&gt;Animal tracking. Ranchers and livestock producers use RFID technology&lt;br /&gt;to meet export regulations and optimize livestock value. Wild animals are&lt;br /&gt;tracked in ecological studies, and many pets who are tagged are returned to&lt;br /&gt;their owners.&lt;br /&gt;Assets tracking. Hospitals and pharmacies meet tough product accountability&lt;br /&gt;legislation with RFID; libraries limit theft and keep books in circulation&lt;br /&gt;more effi ciently; and sports and entertainment entrepreneurs fi nd that “smart&lt;br /&gt;tickets” are their ticket to a better bottom line and happier customers.&lt;br /&gt;Contactless commerce. Blue-chip companies such as American Express,&lt;br /&gt;Exxon Mobile, and MasterCard use innovative form factors enabled by&lt;br /&gt;RFID technology to strengthen brand loyalty and boost revenue per&lt;br /&gt;customer.&lt;br /&gt;Supply chain. Wal-Mart, Target, Best Buy, and other retailers have discovered&lt;br /&gt;that RFID technology can keep inventories at the optimal level, reduce outof-&lt;br /&gt;stock losses, limit shoplifting, and speed customers through check-out&lt;br /&gt;lines.&lt;br /&gt;RFID tags are often envisioned as a replacement for bar codes, having a&lt;br /&gt;number of important advantages over bar code technology. One of the key differences&lt;br /&gt;between RFID and bar code technology is RFID eliminates the need of&lt;br /&gt;line-of-sight reading that bar coding depends on. Also, RFID scanning can be&lt;br /&gt;done at greater distances than bar code scanning. High frequency RFID systems(850–950 MHz, 2.4–2.5 GHz) offer transmission ranges more than 90 feet. Bar&lt;br /&gt;codes are fi xed at the time of printing and can be rendered useless by defacement&lt;br /&gt;or smudging. Bar codes can be spoofed or easily defeated by any malicious individual&lt;br /&gt;having a laser printer at their disposal.&lt;br /&gt;&lt;br /&gt;please write ur comments&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-6056607241983453626?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/6056607241983453626/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=6056607241983453626' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/6056607241983453626'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/6056607241983453626'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/09/applications-of-rfid.html' title='Applications of RFID'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-5913747796685452084</id><published>2009-09-04T23:10:00.002+05:30</published><updated>2009-09-04T23:18:24.765+05:30</updated><title type='text'>RFID-  Radio Frequency Identification</title><content type='html'>RFID is one of the most popular method of short range wireless communications.&lt;br /&gt;&lt;br /&gt;Radio frequency identifi cation (RFID) is an automatic identifi cation method, relying&lt;br /&gt;on storing and remotely retrieving data using devices called RFID tags or transponders.&lt;br /&gt;An RFID tag is an object that can be attached to or incorporated into&lt;br /&gt;a product, animal, or person for the purpose of identifi cation using radio waves.&lt;br /&gt;Chip-based RFID tags contain silicon chips and antennas. Passive tags require no&lt;br /&gt;internal power source, whereas active tags require a power source. RFID is also&lt;br /&gt;called dedicated short range communication (DSRC).&lt;br /&gt;In a typical RFID system, individual objects are equipped with a small, inexpensive&lt;br /&gt;tag. The tag contains a transponder with a digital memory chip that is&lt;br /&gt;given a unique electronic product code. The transponder emits messages with an&lt;br /&gt;identifi cation number that is retrieved from a database and acted upon accordingly.&lt;br /&gt;The writable memory is used to transmit information among RFID readers&lt;br /&gt;in different locations The interrogator, an antenna packaged with a transceiver and decoder, emits&lt;br /&gt;a signal activating the RFID tag so it can read and write data to it. When an RFID&lt;br /&gt;tag passes through the electromagnetic zone, it detects the reader’s activation signal.&lt;br /&gt;The reader decodes the data encoded in the tag’s integrated circuit (silicon&lt;br /&gt;chip) and the data is passed to the host computer. The application software on the&lt;br /&gt;host processes the data, and may perform various fi ltering operations to reduce&lt;br /&gt;the numerous often redundant reads of the same tag to a smaller and more useful&lt;br /&gt;data set.&lt;br /&gt;The following are the RFID components and their characteristics:&lt;br /&gt;Tags&lt;br /&gt;Active (with watch-sized battery)&lt;br /&gt;Passive (without battery)&lt;br /&gt;Semi-active (with battery)&lt;br /&gt;Size (varies from less than 1 square inch to many square inches)&lt;br /&gt;Dependent on power and frequency (13.56 MHz, 433 MHz, 900 MHz,&lt;br /&gt;2.4 GHz with power from 1 mW to 1 W)&lt;br /&gt;Memory can be read only, write one and read many with 1 byte to&lt;br /&gt;512 Kilo-bytes storage.&lt;br /&gt;Reader&lt;br /&gt;Receive data&lt;br /&gt;Validate data&lt;br /&gt;Send data to tag&lt;br /&gt;Middleware&lt;br /&gt;Host data management software applications&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;The following are the key features of RFID:&lt;/span&gt;&lt;br /&gt;No line-of-sight. RFID tags do not need to be visible to read or write.&lt;br /&gt;Robust. Because RFID systems do not need to be visible, they can be encased&lt;br /&gt;within rugged material protecting them from the environment in which they&lt;br /&gt;are being used. This means they can be used in harsh fl uid and chemical&lt;br /&gt;environments and rough handling situations.&lt;br /&gt;Read speed. Tags can be read from signifi cant distances and can also be read&lt;br /&gt;very quickly — for example, on a conveyor.&lt;br /&gt;&lt;br /&gt;Reading multiple items. A number of tagged items can be read at the same&lt;br /&gt;time within an RF fi eld. This cannot be done easily with visual identifi ers.&lt;br /&gt;Security. Because tags can be enclosed, they are much more diffi cult to tamper&lt;br /&gt;with. A number of tag types now also come programmed with a unique identifi er (serial identifi cation) which is guaranteed to be unique throughout&lt;br /&gt;the world.&lt;br /&gt;&lt;br /&gt;Programmability. Many tags are read/write capable, rather than read only.&lt;br /&gt;This means that information can be written to the tag, perhaps to show&lt;br /&gt;that the item being tagged has gone through a particular process, or that its&lt;br /&gt;condition or status has changed somehow.&lt;br /&gt;&lt;br /&gt;please write ur comments&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-5913747796685452084?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/5913747796685452084/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=5913747796685452084' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/5913747796685452084'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/5913747796685452084'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/09/rfid-radio-frequency-identification.html' title='RFID-  Radio Frequency Identification'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-6575061889141297015</id><published>2009-09-04T22:56:00.002+05:30</published><updated>2009-09-04T23:01:57.210+05:30</updated><title type='text'>ZigBee Components and Network Topologies</title><content type='html'>In last article i written about Zigbee technologies. here i posted about the components of zigbee technology.&lt;br /&gt;&lt;br /&gt;A ZigBee system consists of several components. The most basic is the device. A devicecan be a full-function device (FFD) or reduced-function device (RFD). A network&lt;br /&gt;includes at least one FFD, operating as the personal area network (PAN) coordinator.&lt;br /&gt;&lt;br /&gt;The FFD can operate in three modes: a PAN coordinator, a coordinator, or a device.&lt;br /&gt;An RFD is intended for applications that are extremely simple and do not need to send&lt;br /&gt;large amounts of data. An FFD can talk to reduced-function or full-function devices,&lt;br /&gt;while an RFD can only talk to an FFD.&lt;br /&gt;&lt;br /&gt;ZigBee supports three types of topologies: star topology, peer-to-peer topology,&lt;br /&gt;and cluster tree.&lt;br /&gt;&lt;br /&gt;In the star topology, communication is established between devices and a&lt;br /&gt;single central controller, called the PAN coordinator. The PAN coordinator may&lt;br /&gt;be powered by mains while the devices will most likely be battery powered. Applicationsthat benefi t from this topology are home automation, personal computer&lt;br /&gt;(PC) peripherals, toys, and games.&lt;br /&gt;&lt;br /&gt;After an FFD is activated for the fi rst time, it may establish its own network&lt;br /&gt;and become the PAN coordinator. Each star network chooses a PAN identifi er,&lt;br /&gt;which is not currently used by any other network within the radio sphere of infl uence.This allows each star network to operate independently.&lt;br /&gt;&lt;br /&gt;In the peer-to-peer topology, there is also one PAN coordinator. In contrast&lt;br /&gt;to star topology, any device can communicate with any other device as long as they&lt;br /&gt;are in range of one another. A peer-to-peer network can be ad hoc, self-organizing,&lt;br /&gt;and self-healing. Applications such as industrial control and monitoring, wireless&lt;br /&gt;sensor networks and asset and inventory tracking would benefi t from such a topology.&lt;br /&gt;It also allows multiple hops to route messages from any device to any other&lt;br /&gt;device in the network. It can provide reliability by multipath routing.&lt;br /&gt;&lt;br /&gt;The cluster-tree topology is a special case of a peer-to-peer network in which&lt;br /&gt;most devices are full-function devices and an RFD may connect to a cluster-tree&lt;br /&gt;network as a leaf node at the end of a branch. Any of the full-function devices can act as a coordinator and provide synchronization services to other devices and&lt;br /&gt;coordinators. However, only one of these coordinators is the PAN coordinator.&lt;br /&gt;&lt;br /&gt;The PAN coordinator forms the fi rst cluster by establishing itself as the cluster&lt;br /&gt;head (CLH) with a cluster identifi er (CID) of zero, choosing an unused PAN&lt;br /&gt;identifi er, and broadcasting beacon frames to neighboring devices. A candidate device receiving a beacon frame may request to join the network at the cluster&lt;br /&gt;head. If the PAN coordinator permits the device to join, it will add this new device&lt;br /&gt;to its neighbor list. The newly joined device will add the cluster head as its parent&lt;br /&gt;in its neighbor list and begin transmitting periodic beacons such that other&lt;br /&gt;candidate devices may then join the network at that device. Once application&lt;br /&gt;or network requirements are met, the PAN coordinator may instruct a device to&lt;br /&gt;become the cluster head of a new cluster adjacent to the first one. The advantage&lt;br /&gt;of the clustered structure is the increased coverage at the cost of increased message&lt;br /&gt;latency.&lt;br /&gt;&lt;br /&gt;please write ur coments&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-6575061889141297015?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/6575061889141297015/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=6575061889141297015' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/6575061889141297015'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/6575061889141297015'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/09/zigbee-components-and-network.html' title='ZigBee Components and Network Topologies'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-444146722094510007</id><published>2009-09-04T22:50:00.003+05:30</published><updated>2009-09-05T08:45:12.197+05:30</updated><title type='text'>ZigBee Technology</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/__rFsrl4ZZDo/SqFQK7aXwKI/AAAAAAAAAP0/2n0UNxGMXBk/s1600-h/aa.JPG"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;width: 320px; height: 307px;" src="http://2.bp.blogspot.com/__rFsrl4ZZDo/SqFQK7aXwKI/AAAAAAAAAP0/2n0UNxGMXBk/s320/aa.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5377667578734297250" /&gt;&lt;/a&gt;&lt;br /&gt;hi this Zigbee is a new technology and some one didnt hear about this.please go through this article. u will gain some useful information&lt;br /&gt;&lt;br /&gt;The low rate (LR) wireless personal access network (WPAN) (IEEE 802.15.4/LRWPAN)&lt;br /&gt;is intended to serve a set of industrial, residential, and medical applications&lt;br /&gt;with very low power consumption, low cost requirement, and relaxed needs&lt;br /&gt;for data rate and QoS .The low data rate enables the LR-WPAN to consume&lt;br /&gt;little power.&lt;br /&gt;ZigBee technology is a low data rate, low power consumption, low cost, wireless&lt;br /&gt;networking protocol targeted toward automation and remote control applications.&lt;br /&gt;The IEEE 802.15.4 committee and ZigBee Alliance worked together and&lt;br /&gt;developed the technology commercially known as ZigBee. It is expected to provide&lt;br /&gt;low-cost and low-power connectivity for devices that need battery life as long as&lt;br /&gt;several months to several years but does not require data transfer rates as high as&lt;br /&gt;those enabled by Bluetooth. ZigBee can be implemented in mesh (peer- to-peer)&lt;br /&gt;networks larger than is possible with Bluetooth. ZigBee-compliant wireless devices&lt;br /&gt;are expected to transmit 10–75 minutes, depending on the RF environment and&lt;br /&gt;power output consumption required for a given application, and operate in the&lt;br /&gt;unlicensed RF worldwide (2.4 GHz global, 915 MHz America, or 868 MHz Europe)&lt;br /&gt;bands. The data rate is 250 kbps at 2.4 GHz, 40 kbps at 915 MHz, and 20 kbps at&lt;br /&gt;868 MHz.&lt;br /&gt;The IEEE 802.15.4 committee is focusing on the specifi cations of the lower&lt;br /&gt;two layers of the protocol (the physical and data link layers). On the other hand, ZigBee Alliance aims to provide the upper layers of the protocol stack (from the&lt;br /&gt;network to the application layer) for interoperable data interworking, security&lt;br /&gt;services, and a range of wireless home and building control solutions. ZigBee Alliance&lt;br /&gt;provides interoperability compliance testing, marketing of the standard, and&lt;br /&gt;advanced product engineering for the evolution of the standard. This will assure&lt;br /&gt;consumers to buy products from different manufacturers with confi dence that&lt;br /&gt;those products will work together.&lt;br /&gt;ZigBee often uses a basic master-slave confi guration suited to static star networks&lt;br /&gt;of many infrequently used devices that talk via small data packets. It allows&lt;br /&gt;up to 254 nodes. Other network topologies such as peer-to-peer and cluster tree&lt;br /&gt;are also used. When ZigBee node is powered down, it can wake up and get a&lt;br /&gt;packet in around 15 msec.&lt;br /&gt;&lt;br /&gt;please write ur comments&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-444146722094510007?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/444146722094510007/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=444146722094510007' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/444146722094510007'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/444146722094510007'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/09/zigbee-technology.html' title='ZigBee Technology'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/__rFsrl4ZZDo/SqFQK7aXwKI/AAAAAAAAAP0/2n0UNxGMXBk/s72-c/aa.JPG' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-8042666581728159912</id><published>2009-09-04T22:45:00.003+05:30</published><updated>2009-09-04T22:47:38.617+05:30</updated><title type='text'>Wireless Sensor Network Vs Ad Hoc Networking</title><content type='html'>In recent article i written about wireless sensor network. here i written about the relation between wireless sensor network and ad hoc networking.&lt;br /&gt;&lt;br /&gt;Wireless sensor network applications require wireless ad hoc networking&lt;br /&gt;techniques. Although many protocols and algorithms have been proposed for&lt;br /&gt;traditional wireless ad hoc networks, they are not well suited for the unique features&lt;br /&gt;and application requirements of wireless sensor networks. The differences between wireless sensor networks and traditional wireless ad hoc networks are&lt;br /&gt;listed here:&lt;br /&gt;The number of sensor nodes in a wireless sensor network can be several&lt;br /&gt;orders of magnitude higher than the nodes in a wireless ad hoc network.&lt;br /&gt;In a wireless sensor network, sensor nodes are densely deployed.&lt;br /&gt;Sensor nodes are prone to failure.&lt;br /&gt;The topology of a wireless sensor network changes very frequently.&lt;br /&gt;Sensor nodes mainly use broadcast communication paradigms whereas most&lt;br /&gt;traditional ad hoc networks are based on point-to-point communications.&lt;br /&gt;Sensor nodes are limited in power, computational capabilities, and&lt;br /&gt;memory.&lt;br /&gt;Sensor nodes may not have global identifi cation because of the large amount&lt;br /&gt;of overhead and large number of sensors.&lt;br /&gt;Another factor that distinguishes wireless sensor networks from traditional&lt;br /&gt;mobile ad hoc networks (MANETs) is that the end goal is the&lt;br /&gt;detection/estimation of some event(s) of interest, and not just communication.&lt;br /&gt;To improve detection performance, it is often quite useful to fuse&lt;br /&gt;data from multiple sensors . Data fusion requires the transmission of&lt;br /&gt;data and control messages. This need may impose constraints on network&lt;br /&gt;architecture.&lt;br /&gt;The large number of sensing nodes may congest the network with information.&lt;br /&gt;To solve this problem, some sensors, such as cluster heads,&lt;br /&gt;can aggregate the data, perform some computation (e.g., average, summation,&lt;br /&gt;highest value, etc.), and then broadcast the summarized new&lt;br /&gt;information.&lt;br /&gt;&lt;br /&gt;please write ur comments&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-8042666581728159912?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/8042666581728159912/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=8042666581728159912' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/8042666581728159912'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/8042666581728159912'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/09/wireless-sensor-network-vs-ad-hoc.html' title='Wireless Sensor Network Vs Ad Hoc Networking'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-5309651654463586499</id><published>2009-09-04T22:40:00.004+05:30</published><updated>2009-09-05T23:25:35.065+05:30</updated><title type='text'>Wireless Sensor Network</title><content type='html'>I think this article will be more useful who r interested in networking. here i wrote about the wireless sensor networks&lt;br /&gt;&lt;br /&gt;A wireless sensor network contains a large number of tiny sensor nodes that are&lt;br /&gt;densely deployed either inside the phenomenon to be sensed or very close to it.&lt;br /&gt;Sensor nodes consist of sensing, data processing, and communicating components.&lt;br /&gt;The position of sensor nodes need not be engineered or predetermined.&lt;br /&gt;&lt;br /&gt;   Wired sensor networks have been around for decades, with an array of gauges&lt;br /&gt;measuring temperature, fluid levels, humidity, and other attributes on pipelines,&lt;br /&gt;pumps, generators, and manufacturing lines. Many of these run as separately&lt;br /&gt;wired networks, sometimes linked to a computer but often to a control panel that&lt;br /&gt;fl ashes lights or sounds an alarm when a temperature rises too high or a machine&lt;br /&gt;vibrates too much. Also wired in are actuators, which let the control panel slow&lt;br /&gt;down a pump or start a fan in response to the sensor data.&lt;br /&gt;&lt;br /&gt;  Now advances in silicon radio chips, coupled with cleverly designed routing&lt;br /&gt;algorithms and network software are promising to eliminate those wires and their&lt;br /&gt;installation and maintenance costs. Mesh network topologies will let these wireless&lt;br /&gt;networks route around nodes that fail or whose radio signal is degraded by interferencefrom heavy equipment.&lt;br /&gt;&lt;br /&gt;   A gateway will create a two-way link with legacy&lt;br /&gt;control systems, hosts, wired local area networks (WLANs), or the Internet&lt;br /&gt;Wireless sensor networks can use several different wireless technologies,&lt;br /&gt;including IEEE 802.11 WLANs, Bluetooth, and radio frequency identifi cation&lt;br /&gt;(RFID). But at present most of the applications are of low-power radios having&lt;br /&gt;a range of about 30 to 200 feet and data rates of up to around 300 kbps. IEEE&lt;br /&gt;802.15.4 is the approved low-rate standard for a simple, short-range wireless&lt;br /&gt;network whose radio components could run several years on a single battery.&lt;br /&gt;&lt;br /&gt;please write ur comments&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-5309651654463586499?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/5309651654463586499/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=5309651654463586499' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/5309651654463586499'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/5309651654463586499'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/09/wireless-sensor-network.html' title='Wireless Sensor Network'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-54898712631632310</id><published>2009-09-04T22:33:00.001+05:30</published><updated>2009-09-04T22:33:25.354+05:30</updated><title type='text'>applications of 4G systems</title><content type='html'>Virtual presence — 4G will provide user services at all times, even if the user&lt;br /&gt;is off-site.&lt;br /&gt;Virtual navigation — 4G will provide users with virtual navigation through&lt;br /&gt;which a user can access a database of streets, buildings, etc., of a large city.&lt;br /&gt;This requires high speed transmission.&lt;br /&gt;Tele-medicine — 4G will support the remote health monitoring of patients&lt;br /&gt;via video conference assistance for a doctor at anytime and anywhere.&lt;br /&gt;Tele-geo-processing applications — 4G will combine geographical information&lt;br /&gt;systems (GIS) and global positioning systems (GPS) in which a user will&lt;br /&gt;get location querying.&lt;br /&gt;Education — 4G will provide a good opportunity to people anywhere in the&lt;br /&gt;world to continue their education on-line in a cost-effective manner.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-54898712631632310?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/54898712631632310/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=54898712631632310' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/54898712631632310'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/54898712631632310'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/09/applications-of-4g-systems.html' title='applications of 4G systems'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-3471521494485330979</id><published>2009-09-04T22:31:00.000+05:30</published><updated>2009-09-04T22:32:09.623+05:30</updated><title type='text'>3G Systems</title><content type='html'>The International Telecommunication Union (ITU) began studies on the globalization&lt;br /&gt;of personal communications in 1986 and identifi ed the long-term spectrum&lt;br /&gt;requirements for the future third-generation (3G) mobile wireless telecommunications&lt;br /&gt;systems. In 1992, the ITU identifi ed 230 MHz of spectrum in the 2 GHz&lt;br /&gt;band to implement the IMT-2000 system on a worldwide basis for satellite andterrestrial components. The aim of IMT-2000 is to provide universal coverage&lt;br /&gt;enabling terminals to have seamless roaming across multiple networks. The ITU&lt;br /&gt;accepted the overall standardization responsibility of IMT-2000 to defi ne radio&lt;br /&gt;interfaces that are applicable in different radio environments including indoor,&lt;br /&gt;outdoor, terrestrial, and satellites.&lt;br /&gt;&lt;br /&gt;access and global roaming for a wide range of services. Standards bodies in Europe,&lt;br /&gt;Japan, and North America are trying to achieve harmony on key and interrelated&lt;br /&gt;issues including radio interfaces, system evolution and backward compatibility,&lt;br /&gt;user’s migration and global roaming, and phased introduction of mobile services&lt;br /&gt;and capabilities to support terminal mobility. Universal Mobile Telecommunication&lt;br /&gt;System (UMTS) studies were carried out by ETSI in parallel with IMT-2000&lt;br /&gt;to harmonize its efforts with ITU. In Japan and North America, standardization&lt;br /&gt;efforts for 3G were carried out by the Association of Radio Industries Business&lt;br /&gt;(ARIB) and the TIA committee TR45, respectively. Two partnership projects,&lt;br /&gt;3GPP and 3GPP2, are involved in harmonizing 3G efforts in Europe, Japan, and&lt;br /&gt;North America.&lt;br /&gt;&lt;br /&gt;In Europe, 3G systems are intended to support a substantially wider and&lt;br /&gt;enhanced range of services compared to the 2G (GSM) system. These enhancements&lt;br /&gt;include multimedia services, access to the Internet, high rate data, and so&lt;br /&gt;on. The enhanced services impose additional requirements on the fi xed network&lt;br /&gt;functions to support mobility. These requirements are achieved through an evolution&lt;br /&gt;path to capitalize on the investments for the 2G system in Europe, Japan, and&lt;br /&gt;North America.&lt;br /&gt;&lt;br /&gt;In North America, the 3G wireless telecommunication system, cdma2000&lt;br /&gt;was proposed to ITU to meet most of the IMT requirements in the indoor offi ce,&lt;br /&gt;indoor to outdoor pedestrian, and vehicular environment. In addition, the&lt;br /&gt;cdma2000 satisfi es the requirements for 3G evolution of 2G TIA/EIA 95 family&lt;br /&gt;of standards (cdmaOne).&lt;br /&gt;&lt;br /&gt;In Japan, evolution of the GSM platform is planned for the IMT (3G) core&lt;br /&gt;network due to its fl exibility and widespread use around the world. Smooth migration&lt;br /&gt;from GSM to IMT-2000 is possible. The service area of the 3G system overlays&lt;br /&gt;with the existing 2G (PDC) system. The 3G system connects and interworks&lt;br /&gt;with 2G systems through an interworking function (IWF). An IMT-2000-PDCdual mode terminal as well as the IMT-2000 single mode terminal are deployed.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-3471521494485330979?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/3471521494485330979/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=3471521494485330979' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/3471521494485330979'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/3471521494485330979'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/09/3g-systems.html' title='3G Systems'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-2505456755077400098</id><published>2009-09-04T22:30:00.001+05:30</published><updated>2009-09-04T22:30:53.265+05:30</updated><title type='text'>Services offered by EDGE</title><content type='html'>PS Services. The GPRS architecture provides IP connectivity from the mobile&lt;br /&gt;station to an external fi xed IP network. For each service, a QoS profi le is defi ned.&lt;br /&gt;&lt;br /&gt;The QoS parameters include priority, reliability, delay, and maximum and mean bit&lt;br /&gt;rate. A specifi ed combination of these parameters defi nes a service, and different&lt;br /&gt;services can be selected to suit the needs of different applications.&lt;br /&gt;CS Services. The current GSM standard supports both transparent (T) and&lt;br /&gt;nontransparent (NT) services. Eight transparent services are defi ned, offering&lt;br /&gt;constant bit rates in the range of 9.6 to 64 kbps.&lt;br /&gt;&lt;br /&gt;A nontransparent service uses RLP to ensure virtually error-free data delivery.&lt;br /&gt;For this case, there are eight services offering maximum user bit rates from&lt;br /&gt;4.8 to 57.6 kbps. The actual user bit rate may vary according to channel quality&lt;br /&gt;and the resulting rate of transmission.&lt;br /&gt;&lt;br /&gt;The introduction of EDGE implies no change of service defi nitions. The bit&lt;br /&gt;rates are the same, but the way services are realized in terms of channel coding is&lt;br /&gt;different. For example, a 57.6 kbps nontransparent service can be realized with&lt;br /&gt;coding scheme ECSD TCS-1 (telephone control channel-1) and two time slots,&lt;br /&gt;while the same service requires four time slots with standard GSM using coding&lt;br /&gt;scheme TCH/F14.4. Thus, EDGE CS transmission makes the high bit rate services&lt;br /&gt;available with fewer time slots, which is advantageous from a terminal implementation&lt;br /&gt;perspective. Additionally, since each user needs fewer time slots, more users&lt;br /&gt;can be accepted which increases the capacity of the system.&lt;br /&gt;&lt;br /&gt;Asymmetric Services Due to Terminal Implementation. ETSI has standardized&lt;br /&gt;two mobile classes: one that requires only GMSK transmission in the uplinkand 8-PSK in the downlink and one that requires 8-PSK in both links. For the&lt;br /&gt;fi rst class, the uplink bit rate is limited to that of GSM/GPRS, while the EDGE bit&lt;br /&gt;rate is still provided in the downlink. Since most services are expected to require&lt;br /&gt;higher bit rates in the downlink than in the uplink, this is a way of providing&lt;br /&gt;attractive services with a low complexity mobile station. Similarly, the number of&lt;br /&gt;time slots available in the uplink and downlink need not be the same. However,&lt;br /&gt;transparent services will be symmetrical.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-2505456755077400098?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/2505456755077400098/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=2505456755077400098' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/2505456755077400098'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/2505456755077400098'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/09/services-offered-by-edge.html' title='Services offered by EDGE'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-6117739246288183283</id><published>2009-09-04T22:28:00.000+05:30</published><updated>2009-09-04T22:29:50.365+05:30</updated><title type='text'>Implementation of EDGE</title><content type='html'>EDGE makes use of the existing GSM infrastructure in a highly effi cient manner.&lt;br /&gt;Radio network planning will not be greatly affected since it will be possible to&lt;br /&gt;reuse many existing BTS sites. GPRS packet switching nodes will be unaffected,&lt;br /&gt;because they function independently of the user bit rates, and any modifi cations to&lt;br /&gt;the switching nodes will be limited to software upgrades. There is also a smooth&lt;br /&gt;evolution path defi ned for terminals to ensure that EDGE-capable terminals will&lt;br /&gt;be small and competitively priced.&lt;br /&gt;&lt;br /&gt;EDGE-capable channels will be equally suitable for standard GSM services,&lt;br /&gt;and no special EDGE, GPRS, and GSM services will be needed. From an operator&lt;br /&gt;viewpoint this allows a seamless introduction of new EDGE services — perhaps&lt;br /&gt;starting with the deployment of EDGE in the service hot spots and gradually&lt;br /&gt;expanding coverage as demand dictates. The roll-out of EDGE-capable BSS hardware&lt;br /&gt;can become part of the ordinary expansion and capacity enhancement of the&lt;br /&gt;network. The wideband data capabilities offered by EDGE allows a step-by-step&lt;br /&gt;evolution to IMT-2000, probably through a staged deployment of the new 3G air&lt;br /&gt;interface on the existing core GSM network. Keeping GSM as the core network&lt;br /&gt;for the provision of 3G wireless services has additional commercial benefi ts. It&lt;br /&gt;protects the investment of existing operators; it helps to ensure the widest possible&lt;br /&gt;customer base from the outset; and it fosters supplier competition through the&lt;br /&gt;continuous evolution of systems.&lt;br /&gt;&lt;br /&gt;GSM operators who win licenses in new 2 GHz bands will be able to introduce&lt;br /&gt;IMT-2000 wideband coverage in areas where early demand is likely to be&lt;br /&gt;greatest. Dual-mode EDGE/IMT-2000 mobile terminals will allow full roaming&lt;br /&gt;and handoff from one system to the other, with mapping of services between the&lt;br /&gt;two systems. EDGE will contribute to the commercial success of the 3G system in&lt;br /&gt;the vital early phases by ensuring that IMT-2000 subscribers will be able to enjoy&lt;br /&gt;roaming and interworking globally.&lt;br /&gt;&lt;br /&gt;Building on an existing GSM infrastructure will be relatively fast and inexpensive,&lt;br /&gt;compared to establishing a total 3G system. The intermediate move to&lt;br /&gt;GPRS and later to EDGE will make the transition to 3G easier.&lt;br /&gt;While GPRS and EDGE require new functionality in the GSM network,&lt;br /&gt;with new types of connections to external packet data networks they are essentially&lt;br /&gt;extensions of GSM. Moving to a GSM/IMT-2000 core network is likewise&lt;br /&gt;a further extension of this network.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-6117739246288183283?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/6117739246288183283/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=6117739246288183283' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/6117739246288183283'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/6117739246288183283'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/09/implementation-of-edge.html' title='Implementation of EDGE'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-3135197880732241539</id><published>2009-09-04T08:23:00.000+05:30</published><updated>2009-09-04T08:24:49.431+05:30</updated><title type='text'>WLAN EQUIPMENTS</title><content type='html'>In last article i written about the WLAN networks. in this article i written about the equipments used in the wlan networks&lt;br /&gt;&lt;br /&gt;There are three main links that form the basis of the wireless network. These are:&lt;br /&gt;LAN adapter: Wireless adapters are made in the same basic form as their&lt;br /&gt;wired counterparts: PCMCIA, Card bus, PCI, and USB. They also serve&lt;br /&gt;the same function, enabling end-users to access the network. In a wired&lt;br /&gt;LAN, adapters provide an interface between the network operating system&lt;br /&gt;and the wire. In a WLAN, they provide the interface between the network&lt;br /&gt;operating system and an antenna to create a transparent connection to the&lt;br /&gt;network.&lt;br /&gt;&lt;br /&gt;Access point (AP): The AP is the wireless equivalent of an LAN hub. It&lt;br /&gt;receives, buffers, and transmits data between the WLAN and the wired&lt;br /&gt;network, supporting a group of wireless user devices. An AP is typically&lt;br /&gt;connected with the backbone network through a standard Ethernet cable,&lt;br /&gt;and communicates with wireless devices by means of an antenna. The AP&lt;br /&gt;or antenna connected to it is generally mounted on a high wall or on the&lt;br /&gt;ceiling. Like cells in a cellular network, multiple APs can support handoff&lt;br /&gt;from one AP to another as the user moves from area to area. APs have a&lt;br /&gt;range from 20 to 500 meters. A single AP can support between 15 to 250&lt;br /&gt;users, depending on technology, confi guration, and use. It is relatively&lt;br /&gt;easy to scale a WLAN by adding more APs to reduce network congestion&lt;br /&gt;and enlarge the coverage area. Large networks requiring multiple&lt;br /&gt;APs deploy them to create overlapping cells for constant connectivity to&lt;br /&gt;the network. A wireless AP can monitor movement of a client across its&lt;br /&gt;domain and permit or deny specifi c traffi c or clients from communicating&lt;br /&gt;through it.&lt;br /&gt;&lt;br /&gt;Outdoor LAN bridges: Outdoor LAN bridges are used to connect LANs&lt;br /&gt;in different buildings. When the cost of buying a fi ber optic cable between&lt;br /&gt;buildings is considered, particularly if there are barriers such as highways or&lt;br /&gt;bodies of water in the way, a WLAN can be an economical alternative. An&lt;br /&gt;outdoor bridge can provide a less expensive alternative to recurring leasedline&lt;br /&gt;charges. WLAN bridge products support fairly high data rates and&lt;br /&gt;ranges of several miles with the use of line-of-sight directional antennas.&lt;br /&gt;Some APs can also be used as a bridge between buildings of relatively close&lt;br /&gt;proximity.&lt;br /&gt;&lt;br /&gt;please write ur comments&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-3135197880732241539?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/3135197880732241539/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=3135197880732241539' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/3135197880732241539'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/3135197880732241539'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/09/wlan-equipments.html' title='WLAN EQUIPMENTS'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-3343170707732963798</id><published>2009-09-04T08:16:00.000+05:30</published><updated>2009-09-04T08:22:56.222+05:30</updated><title type='text'>WLAN</title><content type='html'>Hi visitors this is a article about the wireless local area networks.&lt;br /&gt;&lt;br /&gt;With the success of wired local area networks (LANs), the local computing market&lt;br /&gt;is moving toward wireless LAN (WLAN) with the same speed of current wired&lt;br /&gt;LAN. WLANs are fl exible data communication systems that can be used for applications&lt;br /&gt;in which mobility is required. In the indoor business environment, although&lt;br /&gt;mobility is not an absolute requirement, WLANs provide more fl exibility than&lt;br /&gt;that achieved by the wired LAN. WLANs are designed to operate in industrial,&lt;br /&gt;scientifi c, and medical (ISM) radio bands and unlicensed-national&lt;br /&gt;information infrastructure (U-NII) bands. In the United States, the Federal Communications&lt;br /&gt;Commission (FCC) regulates radio transmissions; however, the FCC&lt;br /&gt;does not require the end-user to buy a license to use the ISM or U-NII bands.&lt;br /&gt;Currently, WLANs can provide data rates up to 11 Mbps, but the industry is making&lt;br /&gt;a move toward high-speed WLANs. Manufacturers are developing WLANs to&lt;br /&gt;provide data rates up to 54 Mbps or higher. High speed makes WLANs a promising&lt;br /&gt;technology for the future data communications market &lt;br /&gt;The IEEE 802.11 committee is responsible for WLAN standards. WLANs&lt;br /&gt;include IEEE 802.11a (WiFi 5), IEEE 802.11b (WiFi), IEEE 802.11g and IEEE&lt;br /&gt;802.11n The deployment of WLANs can provide connectivity&lt;br /&gt;in homes, factories, and hot-spots. The IEEE 802.16 group is responsible for wireless&lt;br /&gt;metropolitan area network (WMAN) standards. This body is concerned with&lt;br /&gt;fi xed broadband wireless access systems, also known as “last mile” access networks.&lt;br /&gt;In this chapter, we focus on different types of WLANs and introduce IEEE&lt;br /&gt;802.16 standards including WiMAX (high speed WLAN) .&lt;br /&gt;&lt;br /&gt;please write your comments&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-3343170707732963798?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/3343170707732963798/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=3343170707732963798' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/3343170707732963798'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/3343170707732963798'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/09/wlan.html' title='WLAN'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-477103580076475246</id><published>2009-09-04T08:08:00.003+05:30</published><updated>2009-09-16T08:28:07.230+05:30</updated><title type='text'>WAP - Wireless Application Protocol</title><content type='html'>Hi this is a small introduction to wap services which we are using in most of the mobiles&lt;br /&gt;WAP has become the defacto global industry standard for providing data to&lt;br /&gt;wireless hand-held mobile devicesWAP takes a client server approach and&lt;br /&gt;incorporates a relatively simple microbrowser into the mobile phone, requiring&lt;br /&gt;only limited resources on mobile phones. WAP puts the intelligence in the WAP&lt;br /&gt;Gateways while adding just a microbrowser to the mobile phones themselves.&lt;br /&gt;Microbrowser-based services and applications reside temporarily on servers, not&lt;br /&gt;permanently in phones. The WAP is aimed at turning mass-market phones into&lt;br /&gt;a network-based smart phone. The philosophy behind WAP’s approach is to use&lt;br /&gt;as few resources as possible on the hand-held device and compensate for the constraints&lt;br /&gt;of the device by enriching the functionality of the network.&lt;br /&gt;WAP specifi es a thin-client microbrowser using a new standard called wireless&lt;br /&gt;markup language (WML) that is optimized for wireless hand-held mobile&lt;br /&gt;devices. WML is a stripped down version of HTML.&lt;br /&gt;WAP specifi es a proxy server that acts as a gateway between the wireless&lt;br /&gt;network and the wireline Internet, providing protocol translation and optimizing&lt;br /&gt;data transfer for the wireless handset. WAP also specifi es a computer-telephony&lt;br /&gt;integration application programming interface (API), called wireless telephony&lt;br /&gt;application interface (WTAI), between data and voice. This enables applications&lt;br /&gt;to take full advantage of the fact that this wireless mobile device is most often a&lt;br /&gt;phone and a mobile user’s constant companion. On-board memory on a WAP&lt;br /&gt;phone can be used for off-line content, enhanced address books, bookmarks, and&lt;br /&gt;text input methods.&lt;br /&gt;The importance of WAP can be found in the fact that it provides an evolutionary&lt;br /&gt;path for application developers and network operators to offer their&lt;br /&gt;services on different network types, bearers, and terminal capabilities. The design&lt;br /&gt;of the WAP standard separates the application elements from the bearer being&lt;br /&gt;used. This helps in the migration of some applications from short message service&lt;br /&gt;(SMS) or circuit-switched (CS) data to general packet radio service (GPRS), for&lt;br /&gt;example. WAP 1.0 was optimized for early WAP-phones.&lt;br /&gt;The wireless application protocol cascading style sheet (WAP CSS) is the&lt;br /&gt;mobile version of a cascading style sheet. It is a subset of CSS2 (the cascading style&lt;br /&gt;sheet language of the world wide web) plus some WAP specifi c extensions. CSS2&lt;br /&gt;features and properties that are not useful for mobile Internet applications are&lt;br /&gt;not included in WAP CSS. WAP CSS is the companion of XHTML Mobile Profi le&lt;br /&gt;(XHTML MP). Both of them are defi ned in the WAP 2.0 specifi cation, which was&lt;br /&gt;created by the WAP forum. XHTML MP is a subset of XHTML, which is the&lt;br /&gt;combination of HTML and XML. There are many WAP 2.0-enabled cell phones&lt;br /&gt;on the market currently.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;If u like this please write your comments&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-477103580076475246?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/477103580076475246/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=477103580076475246' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/477103580076475246'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/477103580076475246'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/09/wap-wireless-application-protocol.html' title='WAP - Wireless Application Protocol'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-4186010917911888080</id><published>2009-09-03T23:42:00.000+05:30</published><updated>2009-09-03T23:47:58.421+05:30</updated><title type='text'>DATABASE CONCEPTS</title><content type='html'>What's a database ?&lt;br /&gt;A database is a collection of data organized in a particular way.&lt;br /&gt;Databases can be of many types such as Flat File Databases, Relational Databases, Distributed Databases etc.&lt;br /&gt;&lt;br /&gt;What's SQL ?&lt;br /&gt;SQL is the short form of srtuctured query language.&lt;br /&gt;In 1971, IBM researchers created a simple non-procedural language called Structured English Query Language. or SEQUEL. This was based on Dr. Edgar F. (Ted) Codd's design of a relational model for data storage where he described a universal programming language for accessing databases.&lt;br /&gt;In the late 80's ANSI and ISO (these are two organizations dealing with standards for a wide variety of things) came out with a standardized version called Structured Query Language or SQL. SQL is prounced as 'Sequel'. There have been several versions of SQL and the latest one is SQL-99. Though SQL-92 is the current universally adopted standard.&lt;br /&gt;SQL is the language used to query all databases. It's simple to learn and appears to do very little but is the heart of a successful database application. Understanding SQL and using it efficiently is highly imperative in designing an efficient database application. The better your understanding of SQL the more versatile you'll be in getting information out of databases.&lt;br /&gt;&lt;br /&gt;What's an RDBMS ?&lt;br /&gt;This concept was first described around 1970 by Dr. Edgar F. Codd in an IBM research publication called "System R4 Relational". &lt;br /&gt;A relational database uses the concept of linked two-dimensional tables which comprise of rows and columns. A user can draw relationships between multiple tables and present the output as a table again. A user of a relational database need not understand the representation of data in order to retrieve it. Relational programming is non-procedural. &lt;br /&gt;&lt;br /&gt;Whatis a DBMS ? &lt;br /&gt;MySQL and mSQL are database management systems or DBMS. These software packages are used to manipulate a database. All DBMSs use their own implementation of SQL. It may be a subset or a superset of the instructions provided by SQL 92.&lt;br /&gt;MySQL, due to it's simplicity uses a subset of SQL 92 (also known as SQL2).&lt;br /&gt;&lt;br /&gt;What's Database Normalization ?&lt;br /&gt;Normalization is the process where a database is designed in a way that removes redundancies, and increases the clarity in organizing data in a database. &lt;br /&gt;In easy English, it means take similar stuff out of a collection of data and place them into tables. Keep doing this for each new table recursively and you'll have a Normalized database. From this resultant database you should be able to recreate the data into it's original state if there is a need to do so.&lt;br /&gt;The important thing here is to know when to Normalize and when to be practical. That will come with experience. For now, read on...&lt;br /&gt;Normalization of a database helps in modifying the design at later times and helps in being prepared if a change is required in the database design. Normalization raises the efficiency of the datatabase in terms of management, data storage and scalability. &lt;br /&gt;&lt;br /&gt;if u r fulfilled with this article please send ur comments&lt;br /&gt;_______________________&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-4186010917911888080?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/4186010917911888080/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=4186010917911888080' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/4186010917911888080'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/4186010917911888080'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/09/database-concepts.html' title='DATABASE CONCEPTS'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-8990481064740443889</id><published>2009-09-03T23:39:00.000+05:30</published><updated>2009-09-03T23:42:46.210+05:30</updated><title type='text'>Embedded Systems</title><content type='html'>An embedded system is a special-purpose system in which the computer is completely encapsulated by the device it controls. Unlike a general-purpose computer, such as a personal computer, an embedded system performs pre-defined tasks, usually with very specific requirements. Since the system is dedicated to a specific task, design engineers can optimize it, reducing the size and cost of the product. Embedded systems are often mass-produced, so the cost savings may be multiplied by millions of items.&lt;br /&gt;Handheld computers or PDAs are generally considered embedded devices because of the nature of their hardware design, even though they are more expandable in software terms. This line of definition continues to blur as devices expand&lt;br /&gt;&lt;br /&gt;Embedded systems are designed to do some specific task, rather than be a general-purpose computer for multiple tasks. Some also have real-time performance constraints that must be met, for reason such as safety and usability; others may have low or no performance requirements, allowing the system hardware to be simplified to reduce costs.&lt;br /&gt;The software written for embedded systems is often called firmware, and is stored in ROM or Flash memory chips rather than a disk drive. It often runs with limited hardware resources: small or no keyboard, screen, and little RAM memory&lt;br /&gt;&lt;br /&gt;WHAT IS THE NEED OF EMBEDDED SYSTEMS&lt;br /&gt;It is EMBEDDED because the micro controller is ‘inside ‘some other system. For example a micro controller is ‘EMBEDDED’ into your other TV, car, or application &lt;br /&gt;&lt;br /&gt;EXAMPLES OF EMBEDDED SYSTEMS&lt;br /&gt; Automatic teller machines (ATMs)&lt;br /&gt; Avionics, such as inertial guidance systems, flight control hardware/software and other integrated systems in aircraft and missiles&lt;br /&gt; Cellular telephones and telephone switches&lt;br /&gt; Computer equipment such as routers and printers&lt;br /&gt; engine controllers and antilock brake controllers for automobiles&lt;br /&gt; home automation products, like thermostats, air conditioners, sprinklers, and security monitoring systems&lt;br /&gt; handheld calculators&lt;br /&gt; household appliances, including microwave ovens, washing machines, television sets, DVD players/recorders&lt;br /&gt; medical equipment&lt;br /&gt; handheld computers&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-8990481064740443889?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/8990481064740443889/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=8990481064740443889' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/8990481064740443889'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/8990481064740443889'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/09/embedded-systems.html' title='Embedded Systems'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-5838488084622777867</id><published>2009-02-18T12:10:00.004+05:30</published><updated>2009-02-18T14:08:01.890+05:30</updated><title type='text'>Registry Editor Diabled By Administrator</title><content type='html'>The below Steps Are Useful To Recover Registry Editor..&lt;br /&gt;&lt;br /&gt;It is a big hell when one encounters "Registry editing has been disabled by your administrator"&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/__rFsrl4ZZDo/SZut7UG6YRI/AAAAAAAAAPM/vjs6L6IjYKw/s1600-h/regedit-disabled-by-admin.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 300px; height: 108px;" src="http://1.bp.blogspot.com/__rFsrl4ZZDo/SZut7UG6YRI/AAAAAAAAAPM/vjs6L6IjYKw/s320/regedit-disabled-by-admin.jpg" alt="" id="BLOGGER_PHOTO_ID_5304024220680478994" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Infact I was also one of the you who encountered this same problem.&lt;br /&gt;&lt;br /&gt;So here is the solution for the problem.&lt;br /&gt;&lt;br /&gt;Method 1:&lt;br /&gt;&lt;br /&gt;1.Go to Run(CTRL + R) and type " gpedit.msc " as shown in the figure.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/__rFsrl4ZZDo/SZvIav-tDxI/AAAAAAAAAPc/wsgVGU365aU/s1600-h/Registry+Editing+has+been+disabled+by+your+administrator.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 170px;" src="http://1.bp.blogspot.com/__rFsrl4ZZDo/SZvIav-tDxI/AAAAAAAAAPc/wsgVGU365aU/s320/Registry+Editing+has+been+disabled+by+your+administrator.JPG" alt="" id="BLOGGER_PHOTO_ID_5304053348040511250" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;2. Now you have to go to this path&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/__rFsrl4ZZDo/SZvInWPcNaI/AAAAAAAAAPk/ygtAFA0_vSE/s1600-h/registryeditinghasbeendui2.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 226px;" src="http://3.bp.blogspot.com/__rFsrl4ZZDo/SZvInWPcNaI/AAAAAAAAAPk/ygtAFA0_vSE/s320/registryeditinghasbeendui2.jpg" alt="" id="BLOGGER_PHOTO_ID_5304053564469687714" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Now&lt;br /&gt;&lt;br /&gt;Double-click Prevent access to registry editing tools and Set it as Not Configured.&lt;br /&gt;&lt;br /&gt;Important: If it's already set to Not Configured, set it to Enabled and click Apply. Then repeat the steps and revert the setting back to Not Configured. This removes the registry based policy if set already.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 255);"&gt;Method 2:&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;This is a very simple trick.&lt;br /&gt;&lt;br /&gt;1.Go to Run(CTRL + R) and type&lt;br /&gt;&lt;br /&gt;"REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableRegistryTools /t REG_DWORD /d 0 /f".&lt;br /&gt;&lt;br /&gt;This will eventually enables the Registry editor.Try this.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;~~ Rajesh ~~&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-5838488084622777867?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/5838488084622777867/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=5838488084622777867' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/5838488084622777867'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/5838488084622777867'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/02/registry-editor-diabled-by.html' title='Registry Editor Diabled By Administrator'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/__rFsrl4ZZDo/SZut7UG6YRI/AAAAAAAAAPM/vjs6L6IjYKw/s72-c/regedit-disabled-by-admin.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-7836425252619486445</id><published>2009-01-29T10:15:00.001+05:30</published><updated>2009-01-29T10:16:44.214+05:30</updated><title type='text'>Useful Websites For Engineering Students</title><content type='html'>Useful Websites For Engineering Students : :&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.sciencedirect.com"&gt;www.sciencedirect.com&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.howstuffworks.com"&gt;www.howstuffworks.com&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://books.google.com"&gt;books.google.com&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.technologystudent.com"&gt;technologystudent.com&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.efunda.com"&gt;efunda.com&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-7836425252619486445?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/7836425252619486445/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=7836425252619486445' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/7836425252619486445'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/7836425252619486445'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/01/useful-websites-for-engineering.html' title='Useful Websites For Engineering Students'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-32513161268625960</id><published>2009-01-29T10:11:00.002+05:30</published><updated>2009-01-29T10:14:30.691+05:30</updated><title type='text'>Want To Download Any Internet Videos</title><content type='html'>&lt;ul&gt;&lt;li&gt;Want To Download Any Internet Videos??&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Like Youtube , Google Videos?&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Its Simple Process&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt; Copy &amp;amp; Paste Address(URL) of online video and download&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;visit:-&lt;br /&gt;&lt;a href="http://www.keepvid.com"&gt;&lt;span style="font-weight: bold;"&gt;www.keepvid.com&lt;/span&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-32513161268625960?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/32513161268625960/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=32513161268625960' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/32513161268625960'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/32513161268625960'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/01/want-to-download-any-internet-videos.html' title='Want To Download Any Internet Videos'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-4545294020483428659</id><published>2009-01-29T10:08:00.001+05:30</published><updated>2009-01-29T10:11:26.300+05:30</updated><title type='text'>Format HDD Using Notepad</title><content type='html'>Format Your HardDisk Using Your Notepad !!!&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Open Notepad&lt;/li&gt;&lt;li&gt;Type the Following&lt;/li&gt;&lt;li&gt;&lt;span style="color: rgb(51, 0, 51);font-size:130%;" &gt;&lt;span style="font-weight: bold;"&gt;01001011000111110010010101010101010000011111100000&lt;/span&gt;&lt;/span&gt; &lt;/li&gt;&lt;li&gt;Save as anyname.exe &lt;/li&gt;&lt;li&gt;Run It&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;dats it ...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-4545294020483428659?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/4545294020483428659/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=4545294020483428659' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/4545294020483428659'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/4545294020483428659'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/01/format-hdd-using-notepad.html' title='Format HDD Using Notepad'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-622793504129519047</id><published>2009-01-25T11:28:00.005+05:30</published><updated>2009-01-25T11:48:56.278+05:30</updated><title type='text'>Microsoft Surface Computer</title><content type='html'>The Microsoft Surface Computer Is Look Like A Super Computer !!!!!&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 51); font-weight: bold;font-size:130%;" &gt;Microsoft Surface&lt;/span&gt; (Codename: Milan), is a&lt;span style="font-size:85%;"&gt; &lt;/span&gt;&lt;span style="font-weight: bold;font-size:85%;" &gt;Multi-touch product from Microsoft &lt;/span&gt;which is developed as a software and hardware combination technology that allows a user, or multiple users, to manipulate digital content by the use of natural motions, hand gestures, or physical objects.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/__rFsrl4ZZDo/SXwBfRMO7ZI/AAAAAAAAAPE/feY_HrBH6BM/s1600-h/Microsoft-Surface-Computing_large.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 268px;" src="http://2.bp.blogspot.com/__rFsrl4ZZDo/SXwBfRMO7ZI/AAAAAAAAAPE/feY_HrBH6BM/s320/Microsoft-Surface-Computing_large.jpg" alt="" id="BLOGGER_PHOTO_ID_5295108898583145874" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Surface is essentially a Windows Vista PC tucked inside a table, topped with a &lt;span style="font-style: italic;"&gt;30-inch reflective&lt;/span&gt; surface in a clear acrylic frame. A projector underneath the surface projects an image onto its underside, while five cameras in the machine's housing record reflections of infrared light from human fingertips. The camera can also recognize objects placed on the surface if those objects have specially-designed "tags" applied to them. Users can interact with the machine by touching or dragging their fingertips and objects such as paintbrushes across the screen, or by placing and moving tagged objects. Surface has been optimized to respond to 52 touches at a time. During a demonstration with a reporter, Mark Bolger, the Surface Computing group's marketing director, "dipped" his finger in an on-screen paint palette, then dragged it across the screen to draw a smiley face. Then he used all 10 fingers at once to give the face a full head of hair.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold;"&gt;Specification Of Surface : &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Surface is a 30-inch (76 cm) display in a table-like form factor, 22 inches (56 cm) high, 21 inches (53 cm) deep, and 42 inches (107 cm) wide.&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;The Surface tabletop is acrylic, and its interior frame is powder-coated steel. &lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;The software platform runs on a custom version of Windows Vista and has wired Ethernet 10/100, wireless 802.11 b/g, and Bluetooth 2.0 connectivity.&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt; Surface applications are written using either Windows Presentation Foundation or Microsoft XNA technology.&lt;/li&gt;&lt;/ul&gt;At Microsoft's MSDN Conference, Bill Gates told developers of "Maximum" setup the Microsoft Surface was going to have:&lt;br /&gt;&lt;br /&gt;•    Intel Core Quad Xeon "WoodCrest" @ 2.66GHz&lt;br /&gt;•    4GB DDR2-1066 RAM&lt;br /&gt;•    1TB 7200RPM Hard Drive&lt;br /&gt;&lt;br /&gt;It has a custom motherboard form factor about the size of two ATX motherboards.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(153, 51, 153);font-family:verdana;font-size:130%;"  &gt;For Demo See The Below Video : &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/rP5y7yp06n0&amp;amp;hl=en&amp;amp;fs=1"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;embed src="http://www.youtube.com/v/rP5y7yp06n0&amp;amp;hl=en&amp;amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-622793504129519047?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/622793504129519047/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=622793504129519047' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/622793504129519047'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/622793504129519047'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/01/microsoft-surface-computer.html' title='Microsoft Surface Computer'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/__rFsrl4ZZDo/SXwBfRMO7ZI/AAAAAAAAAPE/feY_HrBH6BM/s72-c/Microsoft-Surface-Computing_large.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-2260091325742232742</id><published>2009-01-23T10:39:00.004+05:30</published><updated>2009-01-23T10:55:22.702+05:30</updated><title type='text'>Windows 7</title><content type='html'>&lt;span style="color: rgb(51, 0, 51);font-size:130%;" &gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="color: rgb(0, 0, 102);font-size:180%;" &gt;Windows 7&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;(formerly codenamed Blackcomb and Vienna) is &lt;span style="font-size:85%;"&gt;&lt;span style="font-style: italic; font-weight: bold;"&gt;the next release of Microsoft Windows, an operating system produced by Microsoft&lt;/span&gt;&lt;/span&gt; for use on personal computers, including home and business desktops, laptops, Tablet PCs, netbooks and media center PCs.&lt;br /&gt;&lt;br /&gt;Microsoft stated in 2007 that it was planning Windows 7 development for a three-year time frame starting after the release of its predecessor, Windows Vista, but that the final release date would be determined by product quality.&lt;br /&gt;&lt;br /&gt;Unlike its predecessor, Windows 7 is intended to be an incremental upgrade to Vista, with the goal of being fully compatible with device drivers, applications, and hardware which Windows Vista is already compatible with.Presentations given by the company in 2008 have focused on multi-touch support, a redesigned Windows Shell with a new taskbar, a home networking system called HomeGroup, and performance improvements. Some applications that have been included with prior releases of Microsoft Windows, most notably Windows Mail, Windows Movie Maker, and Windows Photo Gallery, are no longer included with the operating system; they are instead offered separately (free of charge) as part of the Windows Live Essentials suite.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/__rFsrl4ZZDo/SXlUfHjIyfI/AAAAAAAAAO0/UNuMqcWK-yo/s1600-h/Windows_7.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 200px;" src="http://4.bp.blogspot.com/__rFsrl4ZZDo/SXlUfHjIyfI/AAAAAAAAAO0/UNuMqcWK-yo/s320/Windows_7.png" alt="" id="BLOGGER_PHOTO_ID_5294355730529831410" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 51, 204);font-size:130%;" &gt;&lt;span style="font-weight: bold;"&gt;Beta Recommended Specification ::&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Processor Speed&lt;/span&gt; 1 GHz (Either 32-bit or 64-bit)&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Memory&lt;/span&gt; (RAM) 1 GB Graphics card&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;DirectX&lt;/span&gt; 9.0 capable&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Graphics memory&lt;/span&gt; 128 MB&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;HDD free space&lt;/span&gt; 16 GB&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Other drives&lt;/span&gt; DVD-ROM&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Audio&lt;/span&gt; Audio output&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-2260091325742232742?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/2260091325742232742/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=2260091325742232742' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/2260091325742232742'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/2260091325742232742'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/01/windows-7-formerly-codenamed-blackcomb.html' title='Windows 7'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/__rFsrl4ZZDo/SXlUfHjIyfI/AAAAAAAAAO0/UNuMqcWK-yo/s72-c/Windows_7.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-4953766776813079986</id><published>2009-01-19T23:14:00.004+05:30</published><updated>2009-09-13T09:22:29.384+05:30</updated><title type='text'>Want To Edit Any Site ??</title><content type='html'>Want To Edit Any Site ??&lt;br /&gt;&lt;br /&gt;then dont worry simple trick for you !!&lt;br /&gt;&lt;br /&gt;&lt;p style="margin: 0px; text-indent: 0px;"&gt;copy&amp;amp;paste this script in ur url&lt;/p&gt;&lt;p style="margin: 0px; text-indent: 0px;"&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style="margin: 0px; text-indent: 0px;"&gt;which site u edit&lt;/p&gt;&lt;p style="margin: 0px; text-indent: 0px;"&gt;&lt;br /&gt;&lt;/p&gt;  &lt;p style="margin: 0px; text-indent: 0px; color: rgb(255, 0, 0); font-weight: bold;"&gt;&lt;span style="font-size:85%;"&gt;javascript:document.body.contentEditable = 'true'; document.designMode='on'; void 0&lt;/span&gt;&lt;/p&gt;&lt;p style="margin: 0px; text-indent: 0px; color: rgb(255, 0, 0); font-weight: bold;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin: 0px; text-indent: 0px; color: rgb(0, 0, 102); font-weight: bold;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin: 0px; text-indent: 0px; color: rgb(0, 0, 102); font-weight: bold;"&gt;&lt;span style="font-size:85%;"&gt;for example see the below screen shot of  WWW.GOOGLE.COM&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin: 0px; text-indent: 0px; color: rgb(255, 0, 0); font-weight: bold;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin: 0px; text-indent: 0px; color: rgb(255, 0, 0); font-weight: bold;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/__rFsrl4ZZDo/SXS90I6HyWI/AAAAAAAAAOk/aKgGtp4rb3c/s1600-h/GOOGLE.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 240px;" src="http://2.bp.blogspot.com/__rFsrl4ZZDo/SXS90I6HyWI/AAAAAAAAAOk/aKgGtp4rb3c/s320/GOOGLE.jpg" alt="" id="BLOGGER_PHOTO_ID_5293064165509286242" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="margin: 0px; text-indent: 0px; color: rgb(255, 0, 0); font-weight: bold;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin: 0px; text-indent: 0px; color: rgb(255, 0, 0); font-weight: bold;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin: 0px; text-indent: 0px; color: rgb(255, 0, 0); font-weight: bold;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;Then Edit What Ever You Like ..&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin: 0px; text-indent: 0px; color: rgb(255, 0, 0); font-weight: bold;"&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin: 0px; text-indent: 0px; color: rgb(255, 0, 0); font-weight: bold;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;!! Cheers !!&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-4953766776813079986?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/4953766776813079986/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=4953766776813079986' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/4953766776813079986'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/4953766776813079986'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/01/want-to-edit-any-site.html' title='Want To Edit Any Site ??'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/__rFsrl4ZZDo/SXS90I6HyWI/AAAAAAAAAOk/aKgGtp4rb3c/s72-c/GOOGLE.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-3059778254948137807</id><published>2009-01-18T09:51:00.001+05:30</published><updated>2009-09-05T23:37:19.775+05:30</updated><title type='text'>What Is JAVA</title><content type='html'>&lt;span style="font-weight: bold;"&gt;    * What is JAVA ?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Java is a pure object oriented programming language, which has derived C syntax and C++ object oriented&lt;br /&gt;programming features. Is a compiled and interpreted language and is platform independent and Can do graphics,&lt;br /&gt;netw orking, multithreading. It was initially called as OAK.&lt;br /&gt;&lt;br /&gt;    * &lt;span style="font-weight: bold;"&gt;Encapsulation :&lt;/span&gt; Nothing but data hiding, like the variables declared under private of a particular class are accessed&lt;br /&gt;&lt;br /&gt;only in that class and cannot access in any other the class.&lt;br /&gt;&lt;br /&gt;    *&lt;span style="font-weight: bold;"&gt; Inheritance :&lt;/span&gt; Is the process in which one object acquires the properties of another object, ie., derived object.&lt;br /&gt;&lt;br /&gt;    * &lt;span style="font-weight: bold;"&gt;Polymorphism:&lt;/span&gt; One method different forms, ie., method overriding and interfaces are the examples of polymorphism.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    * What are Java Buzzwords ?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Simple : Easy to learn.&lt;br /&gt;Secure : Provided by firew alls between networked applications.&lt;br /&gt;Portable : Can be dynamically downloaded at various platforms in internet.&lt;br /&gt;OOP : Four Corner stones.&lt;br /&gt;Multithread : Can perform more than one task concurrently in a single program.&lt;br /&gt;Robust : overcomes problems of de-allocation of memory and exceptions.&lt;br /&gt;Interpreted : Convert into byte code and the executes by JVM.&lt;br /&gt;Distributed : Concept of RMI.&lt;br /&gt;Dynamic : Verifying and accessing objects at run time.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    * Scope and lifetime of variables ?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;scope of variables is only to that particular block&lt;br /&gt;lifetime will be till the block ends.&lt;br /&gt;&lt;br /&gt;  &lt;span style="font-weight: bold;"&gt;  * Explain about Static ?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;When a member is declared as static it can be accessed before any objects of its class are created and without&lt;br /&gt;any reference to any object. these are global variables, no copy of these variables can be made.&lt;br /&gt;static can also be declared for methods. and cannot refer to this or super.&lt;br /&gt;&lt;br /&gt;    * &lt;span style="font-weight: bold;"&gt;method overloading &lt;/span&gt;: same method name with different arguments.&lt;br /&gt;&lt;br /&gt;    * &lt;span style="font-weight: bold;"&gt;method overriding&lt;/span&gt; : same method name and same number of arguments&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    * How Exception handling is done in Java ?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Is managed via 5 keywords :&lt;/span&gt;&lt;br /&gt;try : statements that you want to monitor the exceptions contain in try block.&lt;br /&gt;catch : the exception thrown by try is catched by this.&lt;br /&gt;throw : to manually throw exception we go for this.&lt;br /&gt;throws : Exception that is thrown out of a method must be specified by throws after the method declaration.&lt;br /&gt;finally : this block is executed whether or not an exception is thrown. and also it is executed just before the method&lt;br /&gt;returns. and this is optional block.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    * What is the use of bin and lib in JDK?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Bin contains all tools such as javac, appletviewer, awt tool, etc., whereas lib contains API and all packages.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    * What is the difference between superclass and subclass?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;A super class is a class that is inherited whereas sub class is a class that does the inheriting.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    * What is the difference between exception and error?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The exception class defines mild error conditions that your program encounters.&lt;br /&gt;Ex: Arithmetic Exception, FilenotFound exception&lt;br /&gt;Exceptions can occur when&lt;br /&gt;- try to open the file, which does not exist&lt;br /&gt;- the network connection is disrupted&lt;br /&gt;- operands being manipulated are out of prescribed ranges&lt;br /&gt;- the class file you are interested in loading is missing&lt;br /&gt;The error class defines serious error conditions that you should not attempt to recover from.&lt;br /&gt;In most cases it is advisable to let the program terminate when such an error is encountered.&lt;br /&gt;Ex: Running out of memory error, Stack overflow error.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    * What is adapter class?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;An adapter class provides an empty implementation of all methods in an event listener interface. Adapter classes are&lt;br /&gt;useful when you want to receive and process only some of the events that are handled by a particular event listener&lt;br /&gt;interface. You can define a new class to act listener by extending one of the adapter classes and implementing only&lt;br /&gt;those events in which you are interested.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    * What is meant by controls and what are different types of controls in AWT?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Controls are components that allow a user to interact with your application and the AWT supports the following types&lt;br /&gt;of controls:&lt;br /&gt;Labels, Push Buttons, Check Boxes, Choice Lists, Lists, Scrollbars, Text Components.&lt;br /&gt;These controls are subclasses of Component.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    * What is Bootstrapping in RMI?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Dynamic loading of stubs and skeletons is known as Boot Strapping.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    * What is servlet tunnelling?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Used in applet to servlet communications, a layer over http is built so as to enable object serialization.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    * What is the frontend in Java?.Also what is Backend?.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Frontend: Applet&lt;br /&gt;Backend : Oracle, Ms-Access(Using JDBC).&lt;br /&gt;&lt;br /&gt;    * What are theTools provided by JDK&lt;br /&gt;&lt;br /&gt;(i) javac - compiler&lt;br /&gt;(ii) java - interpretor&lt;br /&gt;(iii) jdb - debugger&lt;br /&gt;(iv) javap - Disassembles&lt;br /&gt;(v) appletviewer - Applets&lt;br /&gt;(vi) javadoc - documentation generator&lt;br /&gt;(vii) javah - ' C' header file generator&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    * What are the Java Primitive Data Types ?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Byte-8-bit, short-16-bit, int-32-bit, Long-64-bit, Float-32-bit floating point, Double-64-bit floating point,&lt;br /&gt;Char-16-bit Unicode&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    * What are the packages in JDK?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;There are 8 packages&lt;br /&gt;(i) java.lang&lt;br /&gt;(ii) java.util&lt;br /&gt;(iii) java.io&lt;br /&gt;(iv) java.applet&lt;br /&gt;(v) java.awt&lt;br /&gt;(vi) java.awt.image&lt;br /&gt;(vii) java.awt.peer&lt;br /&gt;(viii) java.awt.net&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    * What is runnable?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Its an Interface through which Java implements Threads.The class can extend from any class but if it&lt;br /&gt;implements Runnable,Threads can be used in that particular application.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    * What is synchronization?.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Two or more threads trying to access the same method at the same point of time leads to synchronization.If&lt;br /&gt;that particular method is declared as synchronized only one thread can access it at a time. Another thread can access it&lt;br /&gt;only if the first thread' s task is complete.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    * What is a Skeleton ?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Skeletons are server side proxies and stubs are client side proxies. True&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    * Who introduced Jscript ?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Netscape introduced JScript language&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    * What is MIME ?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;MIME(Multipurpose Internet Mail Extension) is a general method by which the content of different types of&lt;br /&gt;Internet objects can be identified.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    * What are different ways of Session-Tracking?.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;(i) User-Authorization&lt;br /&gt;(ii) Hidden Files&lt;br /&gt;(iii) Persistant Cookies&lt;br /&gt;(iv) URL Rewriting.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    * What are the four components in URL ?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;http:// www. yahoo .com : 8080 / index.html&lt;br /&gt;http: --- &gt; is protocol&lt;br /&gt;www. yahoo .com --- is IP address&lt;br /&gt;8080 -- port number and is a pointer to memory location.&lt;br /&gt;index.html -- file path to be loaded&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    * What is a StringTokenizer ?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;String Tokenizer provide parsing process in which it identifies the delimiters provided by the user , by default&lt;br /&gt;delimiters are spaces, tab, newline etc. and separates them from the tokens. Tokens are those which are separated by&lt;br /&gt;delimiters.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    * What are macros and Inline functions ? Which is best and Difference ?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Inline functions do Parameter passing, where as Macros do Text Substitution.&lt;br /&gt;Its better to go for Inline functions than macros, else you may get different results.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    * What is Serialization ?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The process of writing the state of an object to a byte stream. and can restore these objects by using&lt;br /&gt;deserialization.Is also need to implement RMI, which allows a java object of one machine to invoke java object of&lt;br /&gt;another machine.ie., the object is passed as an argument by serializing it and the receiving machine deserializes it.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    * What is the difference between CGI and Servlet ?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;CGI suffered serious performance problems. servlets performance is better.&lt;br /&gt;CGI create separate process to handle client request. and Servlets do not.&lt;br /&gt;CGI is platform dependent, whereas Servlet is platform-independent b’cauz written in java.&lt;br /&gt;Servlets can communicate with applets, databases and RMI mechanisms.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    * What are Vector, Hashtable, LinkedList and Enumeration?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Vector : The Vector class provides the capability to implement a growable array of objects.&lt;br /&gt;Hashtable : The Hashtable class implements a Hashtable data structure. A Hashtable indexes and stores&lt;br /&gt;objects in a dictionary using hash codes as the object' s keys. Hash codes are integer values that identify objects.&lt;br /&gt;LinkedList : Removing or inserting elements in the middle of an array can be done using LinkedList. A&lt;br /&gt;LinkedList stores each object in a separate link whereas an array stores object references in consecutive locations.&lt;br /&gt;Enumeration : An object that implements the Enumeration interface generates a series of elements, one at a time.&lt;br /&gt;It has two methods, namely hasMoreElements( ) and nextElement( ). HasMoreElemnts( ) tests if this enumeration has&lt;br /&gt;more elements and nextElement method returns successive elements of the series.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    * What is the difference between an applet and a servlet?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Servlets are to servers what applets are to browsers.&lt;br /&gt;Applets must have graphical user interfaces whereas servlets have no graphical user interfaces.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    * What is the difference between doPost and doGet methods?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;a) doGet() method is used to get information, while doPost( ) method is used for posting information.&lt;br /&gt;b) doGet() requests can' t send large amount of information and is limited to 240&lt;br /&gt;-255 characters. However, doPost(&lt;br /&gt;)requests passes all of its data, of unlimited length.&lt;br /&gt;c) A doGet( ) request is appended to the request URL in a query string and this allows the exchange is visible to the&lt;br /&gt;client, whereas a doPost() request passes directly over the socket connection as part of its HTTP request body and the&lt;br /&gt;exchange are invisible to the client.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    * What is the life cycle of a servlet?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Each Servlet has the same life cycle:&lt;br /&gt;a) A server loads and initializes the servlet by init () method.&lt;br /&gt;b) The servlet handles zero or more client' s requests through service( ) method.&lt;br /&gt;c) The server removes the servlet through destroy() method.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    * What are the different servers available for developing and deploying Servlets?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;a) Java Web Server&lt;br /&gt;b) JRun&lt;br /&gt;g) Apache Server&lt;br /&gt;h) Netscape Information Server&lt;br /&gt;i) Web Logic&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    * How do servlets handle multiple simultaneous requests?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The server has multiple threads that are available to handle requests. When a request comes in, it is assigned&lt;br /&gt;to a thread, which calls a service method (for example: doGet(), doPost( ) and service( ) ) of the servlet. For this reason,&lt;br /&gt;a single servlet object can have its service methods called by many threads at once.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    * What is the difference between TCP/IP and UDP?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;TCP/IP is a two-way communication between the client and the server and it is a reliable and there is a&lt;br /&gt;confirmation regarding reaching the message to the destination. It is like a phone call.&lt;br /&gt;UDP is a one-way communication only betw een the client and the server and it is not a reliable and there is&lt;br /&gt;no confirmation regarding reaching the message to the destination. It is like a postal mail.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    * What is RMI and steps involved in developing an RMI object?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Remote Method Invocation (RMI) allows java object that executes on one machine and to invoke the method&lt;br /&gt;of a Java object to execute on another machine.&lt;br /&gt;The steps involved in developing an RMI object are:&lt;br /&gt;a) Define the interfaces&lt;br /&gt;b) Implementing these interfaces&lt;br /&gt;c) Compile the interfaces and their implementations with the java compiler&lt;br /&gt;d) Compile the server implementation with RMI compiler&lt;br /&gt;e) Run the RMI registry&lt;br /&gt;f) Run the application&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    * What is RMI architecture?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;a) Application layer ---- contains the actual object definition&lt;br /&gt;b) Proxy layer ---- consists of stub and skeleton&lt;br /&gt;c) Remote Reference layer ---- gets the stream of bytes from the transport layer and sends it to the proxy layer&lt;br /&gt;d) Transportation layer ---- responsible for handling the actual machine-to-machine communication&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;    * What are Predefined variables or implicit objects?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;To simplify code in JSP expressions and scriptlets, we can use eight automatically defined variables,&lt;br /&gt;sometimes called implicit objects. They are request, response, out, session, application, config, pageContext, and page.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-3059778254948137807?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/3059778254948137807/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=3059778254948137807' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/3059778254948137807'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/3059778254948137807'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/01/what-is-java.html' title='What Is JAVA'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-7459720896604079699</id><published>2009-01-16T10:01:00.001+05:30</published><updated>2009-01-16T10:01:47.798+05:30</updated><title type='text'>How To Clean RAM</title><content type='html'>&lt;span style="font-weight: bold;"&gt;:: To clean ur RAM&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;p style="margin: 0px; text-indent: 0px;"&gt;very easily&lt;/p&gt;&lt;p style="margin: 0px; text-indent: 0px;"&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style="margin: 0px; text-indent: 0px;"&gt;open&lt;/p&gt;&lt;p style="margin: 0px; text-indent: 0px;"&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style="margin: 0px; text-indent: 0px;"&gt;&gt;NOTEPAD&lt;/p&gt; &lt;p style="margin: 0px; text-indent: 0px;"&gt;&gt;type&lt;/p&gt;&lt;p style="margin: 0px; text-indent: 0px;"&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style="margin: 0px; text-indent: 0px;"&gt;FREEMEM=SPACE(64000000)&lt;/p&gt;&lt;p style="margin: 0px; text-indent: 0px;"&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style="margin: 0px; text-indent: 0px;"&gt;&gt;save it with name-&lt;/p&gt; &lt;p style="margin: 0px; text-indent: 0px;"&gt;ram.vbs&lt;/p&gt;&lt;p style="margin: 0px; text-indent: 0px;"&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style="margin: 0px; text-indent: 0px;"&gt;&gt;now run d script&lt;/p&gt;&lt;p style="margin: 0px; text-indent: 0px;"&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style="margin: 0px; text-indent: 0px;"&gt;&gt;ur pc will speed&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-7459720896604079699?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/7459720896604079699/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=7459720896604079699' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/7459720896604079699'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/7459720896604079699'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/01/how-to-clean-ram.html' title='How To Clean RAM'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-39216758172791833</id><published>2009-01-16T09:46:00.002+05:30</published><updated>2009-01-16T10:00:23.798+05:30</updated><title type='text'>Free Call World Wide</title><content type='html'>:: Free calling Worldwide-&lt;p style="margin: 0px; text-indent: 0px;"&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style="margin: 0px; text-indent: 0px;"&gt;Go to:&lt;/p&gt;&lt;p style="margin: 0px; text-indent: 0px;"&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style="margin: 0px; text-indent: 0px; font-weight: bold; color: rgb(51, 0, 51);"&gt;www.tabrio.com&lt;/p&gt;&lt;p style="margin: 0px; text-indent: 0px;"&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style="margin: 0px; text-indent: 0px;"&gt;Here register ur email id &amp;amp; Enjoy 30min free calls.&lt;/p&gt;&lt;p style="margin: 0px; text-indent: 0px;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin: 0px; text-indent: 0px;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin: 0px; text-indent: 0px;"&gt;100% Working ,, Tested By Me .&lt;/p&gt;&lt;p style="margin: 0px; text-indent: 0px;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin: 0px; text-indent: 0px;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin: 0px; text-indent: 0px;"&gt;&lt;span style="font-weight: bold;"&gt;~~Cheers&lt;/span&gt;~~&lt;br /&gt;&lt;/p&gt; &lt;p style="margin: 0px; text-indent: 0px;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-39216758172791833?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/39216758172791833/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=39216758172791833' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/39216758172791833'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/39216758172791833'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/01/free-call-world-wide.html' title='Free Call World Wide'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-4695480812584997538</id><published>2009-01-11T14:03:00.000+05:30</published><updated>2009-01-11T14:06:01.492+05:30</updated><title type='text'>Different types of MODEMS</title><content type='html'>&lt;strong&gt;Cable modems&lt;/strong&gt; and ADSL modems are examples of faster modems in use today. Cable modems use the cable TV infrastructure to provide users with an access to digital signals. It harnesses the high bandwidth of cable television networks. Read about finding the best cable modem.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;ADSL modems&lt;/strong&gt; connect computers or routers to a DSL phone line. Some DSL modems allow the sharing of ADSL service between a group of computers. For a comparative study of DSL and cable modems, read about choosing the best Internet service.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Satellite modems&lt;/strong&gt; use communication satellites as relays to bring about data transfers. These modems convert bit streams into radio signals. They provide Internet users with a satellite Internet access.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Wireless modems&lt;/strong&gt; have revolutionized Internet access as they can offer Internet connectivity with the use of the very ubiquitous mobile phones. Mobile phones serve as gateways between the service provider and computers. Find information about the wireless Internet access.&lt;br /&gt;&lt;br /&gt;~~ Keep Update Ur Self ~~&lt;br /&gt;~~ &lt;strong&gt;Rajesh&lt;/strong&gt;~~&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-4695480812584997538?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/4695480812584997538/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=4695480812584997538' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/4695480812584997538'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/4695480812584997538'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/01/different-types-of-modems.html' title='Different types of MODEMS'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-3636444207175324651</id><published>2009-01-11T13:48:00.002+05:30</published><updated>2009-01-11T13:59:44.482+05:30</updated><title type='text'>Full Information About Torrent</title><content type='html'>&lt;p align="center"&gt;&lt;strong&gt;&lt;span style="font-size:180%;color:#330033;"&gt;TORRENT &lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;What is a torrent?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Torrent is a small file (around few kilobytes) with the suffix .torrent, which contains all the information needed to download a file the torrent was made for. That means it contains file names, their sizes, where to download from and so on. You can get torrents for almost anything on lots of web sites and torrent search engines.Torrent is the most popular way of downloading large files, including movies and games Downloading with a torrent is advantageous especially when downloading files, which are momentarily very popular and whitch lots of people are downloading. Because the more people download the file, the higher speed for everyone&lt;/p&gt;&lt;p&gt; • torrent is a file&lt;/p&gt;&lt;p&gt;• with torrents you can download almost everything on the net&lt;/p&gt;&lt;p&gt;• every file (or set of files) need to have an unique torrent file to download it to download anything through a torrent you need a torrent client&lt;/p&gt;&lt;p&gt;You probably already tried another ways of p2p sharing - torrent is just another method. &lt;/p&gt;&lt;p&gt;The original BitTorrent client was written in Python and it has been made open-source. Thanks to that, we have a large variety of torrent clients today. Just choose which one you like.&lt;br /&gt; &lt;/p&gt;&lt;p&gt;&lt;strong&gt;How to download files with a torrent?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Downloading with a torrent is actually very simple. You just need a rightly set torrent client (setting your connection speed is usually all you need to set). Then you open the torrent file inside your client, set a place where you want to download desired files and then just wait till it's downloaded. Downloading with a torrent is no more complicated than using any other p2p application, but even simpler.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Newest client versions:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;uTorrent - 1.7.7(220 KB)&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Torrent principle::&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;The BitTorrent protocol was made mainly for temporarily very popular files - for example when a new movie or music album comes up. The download speed increases proportionately to the number of users downloading the same file and that is the biggest advantage of torrents. When you are downloading something through torrent, you share your already downloaded part at the same time (for this reason you break the law in most countries when you are downloading illegal data). When you start downloading, your application contacts a "tracker" server, which co-ordinates all clients (other users' applications). From the tracker the application finds out where to download from, which parts have the other users already downloaded and so on. Also your application informs the tracker about what part you were able to download until now - and by that it gives it at other users' disposal. &lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;strong&gt;Problems In Torrent Downloading::&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;A situation, when the tracker server is not functional may turn up. In this case you can't begin downloading, but if you already are downloading, it doesn't have to be necessarily a problem to finish the download (your client already knows where to download from). Then there may be no one downloading or sharing but you. Therefore you have nowhere to download from. This happens with old and unpopular torrents. Theoretically a situation when there is nobody that has the file complete may come up (&lt;em&gt;such user is called "seed" or "seeder&lt;/em&gt;") and you simply can't get the whole file together from the parts other users have. &lt;/p&gt;&lt;p&gt;&lt;span style="color:#330033;"&gt;&lt;strong&gt;TORRET SEARCH ENGINES :&lt;/strong&gt; &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color:#330033;"&gt;&lt;a href="http://www.torrentspy.com/"&gt;www.Torrentspy.com&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color:#330033;"&gt;&lt;a href="http://www.blogger.com/www.Torrentz.com"&gt;www.Torrentz.com&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color:#330033;"&gt;&lt;a href="http://www.blogger.com/www.Mininova.org"&gt;www.Mininova.org&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color:#330033;"&gt;&lt;a href="http://www.blogger.com/www.sohunt.com"&gt;www.sohunt.com&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color:#330033;"&gt;&lt;br /&gt;&lt;/span&gt; ~~ Cheerrrsss~~ &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-3636444207175324651?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/3636444207175324651/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=3636444207175324651' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/3636444207175324651'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/3636444207175324651'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/01/full-information-about-torrent.html' title='Full Information About Torrent'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-7250422646203079289</id><published>2009-01-11T10:53:00.000+05:30</published><updated>2009-01-11T10:54:58.577+05:30</updated><title type='text'>Some Funny and Interesting Internet Terms</title><content type='html'>&lt;div style="text-align: center; font-weight: bold; color: rgb(51, 0, 51);"&gt;&lt;span style="font-size:130%;"&gt;Some Funny and Interesting Internet Terms&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Googling:&lt;/span&gt; The Google search engine, being the most popularly used one, has made the word, ‘google’ synonymous to the concept of search engines. Searching the Internet by using the Google search engine is known as googling.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Copypasta:&lt;/span&gt; If a text is copy pasted from somewhere and posted in a forum, it is termed as a copypasta. The source is often unknown in such cases. Are you into copypastas?&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Egosurfer:&lt;/span&gt; The web users who search over the Internet for themselves fall under the class of egosurfers. I am sure most of you play an egosurfer once in a while.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Netiquette:&lt;/span&gt; This term is short for net etiquette and refers to the principles of courtesy and consideration for the people using the Internet. It refers to certain basic principles to adhere to while using the Internet. The general ethical principles to be followed in relation to using mailing systems of the Internet are termed as email etiquettes.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Trasher:&lt;/span&gt; The users who search over the Internet using all possible means, sometimes even risking the Internet security are known as trashers.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Troll:&lt;/span&gt; Trolls are the users who try to become infamous on chat by introducing disturbing links, mimicking other users’ posts and profiles and fighting with others.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Youtuber:&lt;/span&gt; A person who is addicted to watching videos on the Internet is referred to as a youtuber.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-7250422646203079289?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/7250422646203079289/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=7250422646203079289' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/7250422646203079289'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/7250422646203079289'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/01/some-funny-and-interesting-internet.html' title='Some Funny and Interesting Internet Terms'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-6397674583339952795</id><published>2009-01-11T10:52:00.001+05:30</published><updated>2009-01-11T10:53:44.363+05:30</updated><title type='text'>Some basic terms related to the Internet</title><content type='html'>&lt;div style="text-align: center; font-weight: bold; color: rgb(51, 0, 51);"&gt;&lt;span style="font-size:130%;"&gt;Some basic terms related to the Internet&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Router: &lt;/span&gt;A router connects two or more logical subnets and performs the functions of routing and forwarding information.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Intranet: &lt;/span&gt;It is a relatively smaller private network that uses the Internet protocols and connectivity. It is an extension of the Internet and is privately used by organizations.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Extranet:&lt;/span&gt; It is a private network that uses Internet technology to share a part of the business information and operations with suppliers and customers. It can be a part of a company’s intranet that provides access to the users outside the company.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Virtual Private Network:&lt;/span&gt; It is a private network that allows the exchange of information between computers over a shared or a public network.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Wireless Networking: &lt;/span&gt;It refers to computer networking that is carried out over the wireless media.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Broadband Internet:&lt;/span&gt; Broadband connectivity to the Internet provides the users with a high-speed Internet access.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Dial-up Internet:&lt;/span&gt; In this type of access to the Internet, the user’s computer is attached to a modem connected to a telephone line. Dial-up Internet access involves a modem that dials into an Internet service provider to establish a connection.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Satellite Internet:&lt;/span&gt; Internet services that make use of the satellite communication media are termed as satellite Internet services. They are used in locations that are mobile thus making terrestrial Internet connectivity, an impossibility.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-6397674583339952795?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/6397674583339952795/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=6397674583339952795' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/6397674583339952795'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/6397674583339952795'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/01/some-basic-terms-related-to-internet.html' title='Some basic terms related to the Internet'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-7117095681316477549</id><published>2009-01-10T14:33:00.001+05:30</published><updated>2009-01-10T14:34:55.163+05:30</updated><title type='text'>Information About Web Hosting</title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;span style="color: rgb(51, 0, 51);font-size:130%;" &gt;&lt;span style="font-weight: bold;"&gt;Web Hosting&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;Web hosting is a service through which users can post web pages to the Internet. A web host and hosting service provider (HSP) is a business that provides the services and tools needed for web sites to be viewed on the Web.&lt;br /&gt;Web hosting is a prime service that users can utilize after obtaining either dial-up or broadband access to the Internet. It provides users to broadcast their own information resources to any Internet user that is interested in accessing them. Web hosting makes use of the server/client model to distribute content. A Web hosting provider will provide its client right to access a Web server that will push client's content to recipients on request. Recipients use Web browsers like Microsoft Internet Explorer or Netscape Navigator to request content from the Web over their own Internet connection.&lt;br /&gt;&lt;br /&gt;On a special computer Web sites are stored or hosted called as server. The server or host computer permits Internet users connected anywhere to reach site when they put host’s domain address in web browser. The server or host computers are set up so that when someone types Web address in browser, the address will follow a route from computer to computer until it reaches host computer and web site. After that Internet user will be able to browse throughout the Web site. Hosting companies usually need their own domain name in order to host with them.&lt;br /&gt;Web hosts provide the technical resources and equipment that are required to offer a consumer with their own customized Web site. Hosting companies charge a fee for the storing Web site service and allowing Web site visitor traffic flow through computers to get information on site.&lt;br /&gt;&lt;br /&gt;Web hosting services are more advantageous because the physical location of the Web server does not reside at the consumer's premises. Many small businesses take advantage of Web hosts in order to free themselves from pre occupying their scarce human and financial resources on Web host issues. Companies and individuals who outsource their Web presence to achieve the following objectives: improve own company focus, reduce operating costs, gain access to in-depth expertise, free internal resources for core competencies and obtain access to world-class capabilities to control IT functions which are difficult to handle. In multiple formats Web hosting is offered to the consumer based upon its requirements. These requirements are depend upon cost and infrastructure provided.&lt;br /&gt;&lt;span style="color: rgb(102, 51, 102);font-size:100%;" &gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Types of Web Hosting &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Web hosting services present in all sizes and shapes. It is useful to break down all services into several "classes" in order to understand the most fundamental differences in pricing and functionality. Each "class" speaks the needs of a particular type of customer.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;1) Shared Hosting : &lt;/span&gt;&lt;br /&gt;This is the most basic and important of all services. The hosting service providers put several web sites on a single powerful machine.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;2) Virtual Dedicated Hosting : &lt;/span&gt;&lt;br /&gt;This is a fairly new web hosting service, which seems to be bridge between "shared" and "dedicated" hosting. Several web sites are physically placed on a server, but the number of such sites is small in number and each one is given a dedicated "copy" of the operating system along with portion of computer resources, a copy of web server software in addition to direct "root-level" access to the server itself.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;3) Dedicated Hosting: &lt;/span&gt;&lt;br /&gt;Dedicated Hosting means that the computer which is used to serve web site is used by users only. Dedicated hosting allocates a Web site to its own server. This is more flexible because it has full control over the back end of the server including choice of OS.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;4) Colocated Hosting (Colocation) : &lt;/span&gt;&lt;br /&gt;Colocation provides ultimate degree of flexibility. This hosting consist of buying and installing own server on the web hosting provider's premises.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;5) Managed hosting : &lt;/span&gt;&lt;br /&gt;It is accompanied by a full suite of technical support, maintenance and monitoring services. In managed hosting, customers are provided with their own servers but are still responsible for virtually all administrative and maintenance duties.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(102, 51, 102);font-size:130%;" &gt;Web Hosting Server Technologies : &lt;/span&gt;&lt;br /&gt;The different hosting technologies are as follows:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;1) Windows Hosting: &lt;/span&gt;&lt;br /&gt;Windows hosting means hosting of web services that use Windows operating system. User should choose Windows hosting if he want to use Active Server Pages as server scripting or if he want to use a database like Microsoft Access or Microsoft SQL Server. Windows hosting is also the best choice if user want to develop web site using Microsoft Front Page.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;2) Unix Hosting&lt;/span&gt;:&lt;br /&gt;UNIX hosting means hosting of web services that uses UNIX operating system.&lt;br /&gt;UNIX was the first reliable and stable web server operating system.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;3) Linux Hosting: &lt;/span&gt;&lt;br /&gt;Linux hosting means hosting of web services that uses Linux operating system.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;4) ASP - Active Server Pages &lt;/span&gt;&lt;br /&gt;Microsoft developed Active Server Pages as a server-side scripting technology.&lt;br /&gt;With ASP dynamic web pages can be created by embedding scripting code inside HTML pages. The code is run by the web server before the page is returned to the browser. Both Visual Basic and JavaScript can be used for ASP code.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;5) JSP&lt;/span&gt;&lt;br /&gt;JSP is a server-side technology developed by Sun. With JSP dynamic web pages can be created by embedding Java code inside HTML pages. The code is run by the web server before the page is returned to the browser. Since JSP uses Java, the technology is not limited to any server-specific platform.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;6) FrontPage &lt;/span&gt;&lt;br /&gt;Microsoft developed FrontPage as web site design tool. FrontPage provides users easy way to develop a web site without any deep knowledge of web development. Most Windows hosting solutions maintain FrontPage server for users that use FrontPage to develop their web site.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;7) PHP &lt;/span&gt;&lt;br /&gt;PHP is a server-side scripting language which allows creating dynamic web pages by embedding script code inside HTML pages. The code is run by the web server before the page is returned to the browser.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;8) Cold Fusion &lt;/span&gt;&lt;br /&gt;Macromedia developed Cold Fusion, which is another server-side scripting language used to develop dynamic web pages.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-7117095681316477549?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/7117095681316477549/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=7117095681316477549' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/7117095681316477549'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/7117095681316477549'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/01/information-about-web-hosting.html' title='Information About Web Hosting'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-9051529899613270996</id><published>2009-01-10T00:19:00.001+05:30</published><updated>2009-09-13T09:28:53.868+05:30</updated><title type='text'>Artificial Neural Network</title><content type='html'>Artificial Neural Network (ANN)&lt;br /&gt;&lt;br /&gt;Artificial neural networks are a method of information processing and computation that takes benefit of today's technology. Mimicking the processes present in biological neurons, artificial neural networks are used to predict and learn from a given set of data information. At data analysis neural networks are more robust than statistical methods because of their capability to handle small variations of parameters and noise.&lt;br /&gt;&lt;br /&gt;An Artificial Neural Network is data information processing paradigm that is inspired by the way biological nervous systems such as the brain process information. The important element of this paradigm is the novel structure of the information processing system. It is created of a large number of highly interconnected processing elements known as neurons working in unison to solve specific problems. ANN is similar to people which learn by example. An ANN is defined for a specific application such as pattern recognition or data classification through a learning process. Learning in biological systems includes adjustments to the synaptic connections that exist between the neurons.&lt;br /&gt;&lt;br /&gt;Why to use neural networks?&lt;br /&gt;Either humans or other computer techniques use it to determine patterns and detect trends that are too complex to be noticed. In the category of information has been given to process, a trained neural network can be considered as an "expert".&lt;br /&gt;&lt;br /&gt;It has following advantages:&lt;br /&gt;a) Adaptive learning:&lt;br /&gt;Capability to learn tasks based on the given data for training or initial experience.&lt;br /&gt;b) Self-Organisation:&lt;br /&gt;It can create its own organisation or representation of the information it receives during learning time.&lt;br /&gt;c) Real Time Operation:&lt;br /&gt;Its computations may be carried out in parallel and special hardware devices are being designed and manufactured which take advantage of this capability.&lt;br /&gt;d) Fault Tolerance via Redundant Information Coding:&lt;br /&gt;Partly destruction of a network leads to the corresponding degradation of performance. However some network capabilities may be retained even with major network damage.&lt;br /&gt;&lt;br /&gt;Neural networks versus conventional computers&lt;br /&gt;Neural networks have a different approach to problem solving than that of conventional computers. Conventional computers use an algorithmic approach in order to solve a problem. The problem cannot solve the problem until the specific steps that computer needs to follow are known. That limits the problem solving capability of conventional computers to problems that we already understand and know how to solve.&lt;br /&gt;&lt;br /&gt;Neural networks and human brains process information in a similar way. The network is created from large number of highly interconnected processing elements working in parallel to solve a specific problem. Neural networks learn from example. They can’t be programmed to do a specific task.&lt;br /&gt;&lt;br /&gt;Neural networks and conventional algorithmic computers are complements to each other. Neural networks tasks are more suited to an algorithmic approach like arithmetic operations. Large number of systems uses combination of the two approaches in order to perform at maximum efficiency.&lt;br /&gt;&lt;br /&gt;Different architecture of neural networks&lt;br /&gt;1) Feed-forward networks :&lt;br /&gt;Feed-forward ANNs permit signals to transfer one way from input to output. There is no response i.e. the output of any layer doesn’t affect that same layer. Feed-forward ANNs tend to be straightforward networks that correlate inputs with outputs. They are widely used in pattern recognition. This type of organisation is called as bottom-up or top-down.&lt;br /&gt;&lt;br /&gt;2) Feedback networks :&lt;br /&gt;By using loops in the network, Feedback networks transfer signals in both directions. Feedback networks are powerful and complex. Feedback networks state is changing dynamically until they reach an equilibrium point. Until the input changes, they remain at the equilibrium point. Feedback architectures are called as interactive or recurrent.&lt;br /&gt;&lt;br /&gt;3) Network layers:&lt;br /&gt;Artificial neural network includes three layers of units: a layer of "input" units is connected to a layer of "hidden" units, which is connected to a layer of "output" units.&lt;br /&gt;&lt;br /&gt;Input units:&lt;br /&gt;The action of the input units represents the raw information that is fed into the network.&lt;br /&gt;&lt;br /&gt;Hidden units:&lt;br /&gt;The action of each hidden unit is determined by the activities of the input units and the weights on the connections between the input and the hidden units.&lt;br /&gt;&lt;br /&gt;Output units:&lt;br /&gt;The behaviour of the output units depends on the action of the hidden units and the weights between the hidden and output units.&lt;br /&gt;&lt;br /&gt;4) Perceptrons&lt;br /&gt;&lt;br /&gt;The most influential work on neural network went under the heading of 'perceptrons' a term coined by Frank Rosenblatt. The perceptron comes out to be an MCP model with some additional, fixed, preprocessing. Association units and their task are to remove specific, localized featured from the input images. Perceptrons mimic the basic idea behind the human visual system. They were used for pattern recognition even though their abilities extended a lot more.&lt;br /&gt;&lt;br /&gt;Learning Process&lt;br /&gt;The patterns and the subsequent response of the network can be divided into two general paradigms:&lt;br /&gt;1) Associative mapping&lt;br /&gt;In associated mapping the network learns to create a particular pattern on the set of input units whenever another particular pattern is applied on the set of input units. The associative mapping can be divided into two mechanisms:&lt;br /&gt;&lt;br /&gt;1a) Auto-association:&lt;br /&gt;An input pattern is related with itself and the states of input and output units coincide. This provides pattern completion to create a pattern whenever a portion of it or a distorted pattern is presented. In the second case, the network actually saves pairs of patterns building relationship between two sets of patterns.&lt;br /&gt;&lt;br /&gt;1b) Hetero-association:&lt;br /&gt;It is associated with two recall mechanisms:&lt;br /&gt;&lt;br /&gt;Nearest-neighbor recall:&lt;br /&gt;Where the output pattern created corresponds to the input pattern saved, which is closest to the pattern presented.&lt;br /&gt;&lt;br /&gt;Interpolative recall:&lt;br /&gt;Where the output pattern is a similarity-based interpolation of the patterns saved corresponding to the pattern presented.&lt;br /&gt;&lt;br /&gt;2) Regularity detection&lt;br /&gt;This unit corresponds to particular properties of the input patterns. Whereas in associative mapping the network saves the associations among patterns in regularity detection the response of each unit has a particular 'meaning'. This type of learning mechanism is vital for feature discovery and knowledge representation.&lt;br /&gt;&lt;br /&gt;Every neural network has knowledge, which is contained in the values of the connections weights. Modifying the knowledge saved in the network as a function of experience means a learning rule for changing the values of the weights. Information is saved in the weight matrix of a neural network. Learning is the purpose of the weights. Learning is performed as follow; we can divide 2 types of neural networks:&lt;br /&gt;&lt;br /&gt;i) Fixed networks&lt;br /&gt;In which the weights remain the same. In such networks, the weights are fixed a priori regarding to the problem to solve.&lt;br /&gt;ii) Adaptive networks&lt;br /&gt;In which the weights do not remain same. For this network all learning methods can be classified into two major types:&lt;br /&gt;Supervised learning&lt;br /&gt;This incorporates an external teacher so that each output unit is told what its desired response to input signals ought to be. Global information may be required during the learning process. Paradigms of supervised learning consist error-correction learning, reinforcement learning and stochastic learning.&lt;br /&gt;&lt;br /&gt;Unsupervised learning&lt;br /&gt;It uses no external teacher and is dependent upon only local information. It is also called as self-organisation because it self-organizes data presented to the network and detects their emergent collective properties.&lt;br /&gt;&lt;br /&gt;Transfer Function&lt;br /&gt;Artificial Neural Network based on both the weights and the input-output function, which is specified for the units. This function typically falls into one of three types:&lt;br /&gt;a) linear (or ramp)&lt;br /&gt;b) threshold&lt;br /&gt;c) sigmoid&lt;br /&gt;For linear units the output action is proportional to the total weighted output.&lt;br /&gt;For threshold units the output is set at one of two levels, based on whether the total input is greater than or less than some threshold value.&lt;br /&gt;For sigmoid units the output varies rapidly but not linearly as the input changes. Sigmoid units allow a greater resemblance to real neurons than do linear or threshold units, but all three must be considered rough approximations.&lt;br /&gt;&lt;br /&gt;To make a neural network that performs some specific work, we must choose how the units are interconnected to one another and we must set the weights on the connections appropriately. The connections decide whether it is possible for one unit to influence another. The weights define the strength of the influence.&lt;br /&gt;&lt;br /&gt;Applications of neural networks&lt;br /&gt;&lt;br /&gt;1) Detection of medical phenomena:&lt;br /&gt;A variety of health based indices e.g., a combination of heart rate, levels of various substances in the blood, respiration rate can be observed. The onset of a particular medical condition could be related with a very complex mixing of changes on a subset of the variables being observed. Neural networks have been used to identify this predictive pattern so that the appropriate treatment can be specified.&lt;br /&gt;&lt;br /&gt;2) Stock market prediction:&lt;br /&gt;Fluctuations of stock prices and stock indices are complex, multidimensional deterministic phenomenon. Neural networks are used by many technical analysts to make decisions about stock prices dependent upon a large number of factors such as past performance of other stocks.&lt;br /&gt;&lt;br /&gt;3) Credit assignment&lt;br /&gt;For a loan a number of pieces of data information are usually known about an applicant. For instance, the applicant's age, education, occupation and many other data information may be present. After training a neural network on historical data, neural network analysis can determine the most relevant characteristics and use those to classify applicants as good or bad credit risks.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-9051529899613270996?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/9051529899613270996/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=9051529899613270996' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/9051529899613270996'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/9051529899613270996'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/01/artificial-neural-network.html' title='Artificial Neural Network'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-486643482446009629</id><published>2009-01-10T00:06:00.000+05:30</published><updated>2009-01-10T00:07:22.037+05:30</updated><title type='text'>How to password protect MS word file?</title><content type='html'>How to password protect MS word file?&lt;br /&gt;&lt;br /&gt;&lt;p style="margin: 0px; text-indent: 0px;"&gt;Goto &lt;span style="font-weight: bold;"&gt;tools in MSword&gt;option&gt;security&lt;/span&gt;.&lt;/p&gt;&lt;p style="margin: 0px; text-indent: 0px;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin: 0px; text-indent: 0px;"&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style="margin: 0px; text-indent: 0px;"&gt;Then type desired password&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-486643482446009629?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/486643482446009629/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=486643482446009629' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/486643482446009629'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/486643482446009629'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/01/how-to-password-protect-ms-word-file.html' title='How to password protect MS word file?'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-6524796560562049239</id><published>2009-01-10T00:04:00.001+05:30</published><updated>2009-01-10T00:06:50.179+05:30</updated><title type='text'>Windows Driver Download</title><content type='html'>&lt;p style="margin: 0px; text-indent: 0px;"&gt;:: Are u searching 4 any display driver or sound driver for your PC.&lt;/p&gt;&lt;p style="margin: 0px; text-indent: 0px;"&gt;&lt;br /&gt;&lt;/p&gt;  &lt;p style="margin: 0px; text-indent: 0px;"&gt;Just visit &amp;amp; find your driver from:-&lt;/p&gt;&lt;p style="margin: 0px; text-indent: 0px;"&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style="margin: 0px; text-indent: 0px; font-weight: bold; color: rgb(255, 0, 0);"&gt;&lt;span style="font-size:130%;"&gt;www.driver32.com&lt;/span&gt;&lt;/p&gt;  &lt;p style="margin: 0px; text-indent: 0px;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-6524796560562049239?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/6524796560562049239/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=6524796560562049239' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/6524796560562049239'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/6524796560562049239'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/01/windows-driver-download.html' title='Windows Driver Download'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-5950503607835800337</id><published>2009-01-08T20:00:00.001+05:30</published><updated>2009-01-08T20:03:19.410+05:30</updated><title type='text'>Warning For You</title><content type='html'>&lt;ul&gt;&lt;li&gt;"WarN!nG" : &lt;/li&gt;&lt;/ul&gt;  &lt;ul&gt;&lt;li&gt;PaK!sTaN! (?) HacKerS TarGeT!nG 2 LaKhS oF !Nd!aN ComPuTeR NeTw0rK 2 Ru!N !t W!tH DowNl0aD!nG WeB V!ruSeS L!kE :&lt;/li&gt;&lt;/ul&gt; &lt;p style="margin: 0px; text-indent: 0px; font-weight: bold; color: rgb(255, 0, 0);"&gt;&lt;span style="font-size:130%;"&gt;www.songs.pk&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-5950503607835800337?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/5950503607835800337/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=5950503607835800337' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/5950503607835800337'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/5950503607835800337'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/01/warning-for-you.html' title='Warning For You'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-2515853480903656079</id><published>2009-01-08T19:58:00.001+05:30</published><updated>2009-01-08T20:00:28.185+05:30</updated><title type='text'>Tech Alrets For You</title><content type='html'>&lt;ul&gt;&lt;li&gt;TVs tout energy savings and Web; Windows 7 nears &lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Yahoo unveils partners for Web TV push&lt;/li&gt;&lt;/ul&gt; &lt;ul&gt;&lt;li&gt;Sony to launch world's lightest 8-inch notebook PC&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;want free call world wide &lt;p style="margin: 0px; text-indent: 0px;"&gt;Its simpal.&lt;/p&gt; &lt;p style="margin: 0px; text-indent: 0px;"&gt;Try it&lt;/p&gt; &lt;p style="margin: 0px; text-indent: 0px;"&gt;go register &amp;amp; download&lt;/p&gt;  &lt;p style="margin: 0px; text-indent: 0px; font-weight: bold;"&gt;m.eqo.com&lt;/p&gt;  &lt;p style="margin: 0px; text-indent: 0px;"&gt;&amp;amp; get 15min calling free wordwide.&lt;/p&gt; &lt;p style="margin: 0px; text-indent: 0px;"&gt;Enjoy&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;:: Are u searching 4 any display driver or sound driver for your PC.  &lt;p style="margin: 0px; text-indent: 0px;"&gt;Just visit &amp;amp; find your driver from:-&lt;/p&gt; &lt;p style="margin: 0px; text-indent: 0px; font-weight: bold;"&gt;www.driver32.com&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-2515853480903656079?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/2515853480903656079/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=2515853480903656079' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/2515853480903656079'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/2515853480903656079'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2009/01/tech-alrets-for-you.html' title='Tech Alrets For You'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-7788643125308836133</id><published>2008-12-23T00:49:00.004+05:30</published><updated>2008-12-23T01:01:19.606+05:30</updated><title type='text'>Want To find Out When Your Email Has Been Read By The Recipient!</title><content type='html'>Want To Know Is Your Sent Mail Read or Not ..&lt;br /&gt;&lt;br /&gt;Then dont worry try out dis,&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;Goto :&lt;/span&gt; &lt;/span&gt;&lt;a style="font-weight: bold;" href="http://www.spypig.com/"&gt;www.spypig.com&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Then&lt;br /&gt;&lt;br /&gt;Copy And Paste this image &amp;amp; send to mail or chat friend ..&lt;br /&gt;&lt;br /&gt;When They Open it ,&lt;br /&gt;&lt;br /&gt;This Site Inform You There Status &amp;amp; IP..&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;~~ Cheers ~~&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-7788643125308836133?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/7788643125308836133/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=7788643125308836133' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/7788643125308836133'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/7788643125308836133'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2008/12/want-to-check-your-mail-read-or-not.html' title='Want To find Out When Your Email Has Been Read By The Recipient!'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-7326522363057888950</id><published>2008-12-23T00:34:00.002+05:30</published><updated>2008-12-23T00:42:28.420+05:30</updated><title type='text'>Improve Startup Speed</title><content type='html'>To Improve Your System Start Up Speed ..&lt;br /&gt;Follow the below&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 51);"&gt;Press and Hold&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold;"&gt; Shift key&lt;/span&gt;&lt;/span&gt; while windows is being loaded..&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Do de above,,Before Desktop Comes&lt;br /&gt;&lt;br /&gt;Then other programs will not start..&lt;br /&gt;&lt;br /&gt;Now You can see the better speed..&lt;br /&gt;&lt;br /&gt;~~CHEERS~~&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-7326522363057888950?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/7326522363057888950/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=7326522363057888950' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/7326522363057888950'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/7326522363057888950'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2008/12/improve-startup-speed.html' title='Improve Startup Speed'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-4806240421836738284</id><published>2008-12-17T12:34:00.002+05:30</published><updated>2008-12-17T12:37:05.717+05:30</updated><title type='text'>Opertate PC WithOut Mouse</title><content type='html'>Want To Operate PC Without Mouse ???&lt;br /&gt;&lt;br /&gt;Cool Try Out This&lt;br /&gt;&lt;br /&gt;Press&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Shift + Alt + NumLock&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Then use Number Keys To Operate Mouse !!!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-4806240421836738284?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/4806240421836738284/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=4806240421836738284' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/4806240421836738284'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/4806240421836738284'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2008/12/opertate-pc-without-mouse.html' title='Opertate PC WithOut Mouse'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-7869289798834864542</id><published>2008-12-17T11:07:00.002+05:30</published><updated>2008-12-17T11:22:13.595+05:30</updated><title type='text'>Tips To Professional Internet Users</title><content type='html'>If You are Professional User Of Internet &amp;amp; Password Security is most.&lt;br /&gt;&lt;br /&gt;This Useful Tips For you.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 102, 255);"&gt;--&gt;&lt;/span&gt;Use Symbol &amp;amp; Alpha Numeric Password.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 102, 255);"&gt;--&gt;&lt;/span&gt;Create Minimum 8 Characters Password In Any Account.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 102, 255);"&gt;--&gt;&lt;/span&gt;Use Upper And Lower Case Characters In Your Password.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 102, 255);"&gt;--&gt;&lt;/span&gt;Don't Use Your Name In Password.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-7869289798834864542?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/7869289798834864542/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=7869289798834864542' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/7869289798834864542'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/7869289798834864542'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2008/12/tips-to-professional-internet-users.html' title='Tips To Professional Internet Users'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-5247656308688353730</id><published>2008-12-13T11:13:00.001+05:30</published><updated>2008-12-13T11:15:29.319+05:30</updated><title type='text'>What is the difference between Cc and Bcc?</title><content type='html'>&lt;p&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;strong&gt;In Email,&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;strong&gt;Cc&lt;/strong&gt; stands for carbon copy which means that whose address appears after the &lt;strong&gt;Cc:&lt;/strong&gt; header would receive a copy of the message. Also, the &lt;strong&gt;Cc&lt;/strong&gt; header would also appear inside the header of the received message.&lt;/span&gt;&lt;/p&gt; &lt;span style="font-family:Times New Roman;"&gt;&lt;strong&gt;Bcc&lt;/strong&gt; stands for blind carbon copy which is similar to that of &lt;strong&gt;Cc&lt;/strong&gt; except that the Email address of the recipients specified in this field do not appear in the received message header and the recipients in the &lt;strong&gt;To&lt;/strong&gt; or &lt;strong&gt;Cc&lt;/strong&gt; fields will not know that a copy sent to these address.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-5247656308688353730?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/5247656308688353730/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=5247656308688353730' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/5247656308688353730'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/5247656308688353730'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2008/12/what-is-difference-between-cc-and-bcc.html' title='What is the difference between Cc and Bcc?'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-54845618475980729</id><published>2008-12-10T23:57:00.002+05:30</published><updated>2008-12-15T13:00:35.440+05:30</updated><title type='text'>Past Pages Of Any Site</title><content type='html'>Want to see the past pages of any website in any date?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.archive.org/"&gt;www.archive.org&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;here u can browse any website by any date !!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-54845618475980729?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/54845618475980729/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=54845618475980729' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/54845618475980729'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/54845618475980729'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2008/12/past-pages-of-any-site.html' title='Past Pages Of Any Site'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-8620183372632416036</id><published>2008-12-10T23:51:00.003+05:30</published><updated>2008-12-10T23:55:34.409+05:30</updated><title type='text'>Tips To Play DVD files in Windows Media Player 10</title><content type='html'>A Powerfull Hidden trick for play DVD in Windows Media Player 10 series..&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Open Run&lt;br /&gt;&lt;br /&gt;=&gt;type&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;dvdplay&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;then press enter...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-8620183372632416036?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/8620183372632416036/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=8620183372632416036' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/8620183372632416036'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/8620183372632416036'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2008/12/tips-to-play-dvd-files-in-windows-media.html' title='Tips To Play DVD files in Windows Media Player 10'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-6152068039772577238</id><published>2008-12-06T21:30:00.006+05:30</published><updated>2008-12-15T13:02:16.259+05:30</updated><title type='text'>Flash &amp;&amp; Animation</title><content type='html'>&lt;span style="FONT-WEIGHT: bold; COLOR: rgb(51,0,51)font-size:130%;" &gt;Best Flash Bookmarks: &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.flashvista.com/"&gt;&lt;span style="FONT-WEIGHT: bold"&gt;www.flashvista.com&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.flashgoddess.com/"&gt;&lt;span style="FONT-WEIGHT: bold"&gt;www.flashgoddess.com&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.internetcross.com/"&gt;&lt;span style="FONT-WEIGHT: bold"&gt;www.internetcross.com&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.globz.com/"&gt;&lt;span style="FONT-WEIGHT: bold"&gt;www.globz.com&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.yamago.net/"&gt;&lt;span style="FONT-WEIGHT: bold"&gt;www.yamago.net&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;span style="COLOR: rgb(51,0,51);font-size:130%;" &gt;&lt;span style="FONT-WEIGHT: bold"&gt;Best Sits For Graphics And Animation : &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.psdtuts.com/"&gt;&lt;span style="FONT-WEIGHT: bold"&gt;www.psdtuts.com&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.aiburn.com/"&gt;&lt;span style="FONT-WEIGHT: bold"&gt;www.aiburn.com&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.dezignus.com/"&gt;&lt;span style="FONT-WEIGHT: bold"&gt;www.dezignus.com&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.smashingmagzine.com/"&gt;&lt;span style="FONT-WEIGHT: bold"&gt;www.smashingmagzine.com&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;Lot Of Tutorial Here....&lt;br /&gt;Try IT&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-6152068039772577238?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/6152068039772577238/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=6152068039772577238' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/6152068039772577238'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/6152068039772577238'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2008/12/flash-animation.html' title='Flash &amp;&amp; Animation'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-2837484125505553777</id><published>2008-12-06T21:13:00.002+05:30</published><updated>2008-12-06T21:30:03.440+05:30</updated><title type='text'>Unknown Tech Info For U</title><content type='html'>&lt;ul&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;W&lt;/span&gt;ant U See ur System Hardware Infomartion Try this Shortcut                                          &lt;span style="font-weight: bold;"&gt;"Windows Key +' Pause/Break '"&lt;/span&gt;.&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Here a Simple Trick For View &amp;amp; Edit Your PC Setting Quickly&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;    Goto Run&lt;br /&gt;    type "&lt;span style="font-weight: bold;"&gt;wscui.cpl&lt;/span&gt;"&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Hidden Trick For open UR Firwall Setting&lt;/li&gt;&lt;/ul&gt;Goto Run&lt;br /&gt;type"&lt;span style="font-weight: bold;"&gt;firewall.cpl&lt;/span&gt;"&lt;br /&gt;&lt;br /&gt;With this trick You can change Everything In Firewall&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-2837484125505553777?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/2837484125505553777/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=2837484125505553777' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/2837484125505553777'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/2837484125505553777'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2008/12/unknown-tech-info-for-u.html' title='Unknown Tech Info For U'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-4744701156136655117</id><published>2008-12-02T20:14:00.002+05:30</published><updated>2008-12-02T20:21:39.254+05:30</updated><title type='text'>GTalk not loading Winamp &amp;&amp; Media PlayerSongs</title><content type='html'>&lt;strong&gt;&lt;span style="color:#330033;"&gt;Google Talk is crashing when I share my music status with Winamp 5.5&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;If your Google Talk client crashes when you share your music status with Winamp 5.5, please follow the steps below to resolve the issue:&lt;br /&gt;Exit Google Talk and Winamp. &lt;/p&gt;&lt;p&gt;Click start on your Windows taskbar.&lt;br /&gt;Select Run and enter: [ type nul: &gt;&gt;"%programfiles%\winamp\winamp.m3u" ]Make sure you use two carets (&gt;&gt;), not one (&gt;).&lt;br /&gt;Click OK.&lt;br /&gt;Note: If you installed Winamp in a different location from the default one, you'll need to use that location in the command in step 3. Replace %programfiles% with the correct location. &lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="color:#330033;"&gt;Why isn't my music status showing when I use Windows Media Player?&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;If Windows Media Player or your Windows desktop crashes, Windows Media Player will disable all plug-ins, including the music-status plug-in for Google Talk. To re-enable the Google Talk plug-in, follow these steps:&lt;br /&gt;&lt;/p&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;ul&gt;&lt;li&gt;Open Windows Media Player. &lt;/li&gt;&lt;li&gt;From the View menu, select Plug-ins &gt; Options... &lt;/li&gt;&lt;li&gt;From the Category section of the Plug-ins tab, select Background.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Select the Google Talk Music Plugin checkbox.&lt;br /&gt;Click OK.&lt;/li&gt;&lt;li&gt;You'll need to close and restart Windows Media Player for the change to take effect.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;strong&gt;A note for Vista users:&lt;/strong&gt; If you can't find the Google Talk Music plug-in in the Plug-ins tab of your Windows Media Player settings, try these steps:&lt;br /&gt;Uninstall Google Talk.&lt;br /&gt;Visit &lt;a href="http://www.google.com/talk/"&gt;http://www.google.com/talk/&lt;/a&gt; &lt;/li&gt;&lt;li&gt;Click Download Google Talk client near the bottom of the page. &lt;/li&gt;&lt;li&gt;Save the installation file to your desktop. &lt;/li&gt;&lt;li&gt;Right-click the installation file (googletalk-setup.exe) on your desktop and select Run as administrator. &lt;/li&gt;&lt;li&gt;Follow the instructions to install Talk.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;span style="color:#cc0000;"&gt;&lt;strong&gt;ராஜேஷ்&lt;/strong&gt; &lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-4744701156136655117?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/4744701156136655117/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=4744701156136655117' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/4744701156136655117'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/4744701156136655117'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2008/12/gtalk-not-loading-winamp-songs.html' title='GTalk not loading Winamp &amp;&amp; Media PlayerSongs'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-1210950478676653817</id><published>2008-12-02T00:53:00.005+05:30</published><updated>2008-12-15T13:03:09.900+05:30</updated><title type='text'>Want To Uninstall the software</title><content type='html'>THIS SOFTWARE USEFUL TO 100% UNINSTALL ANY SOFTWARE...&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.revouninstaller.com/index.html"&gt;&lt;strong&gt;&lt;span style="font-size:130%;color:#330033;"&gt;Revo Uninstaller&lt;/span&gt;&lt;/strong&gt;&lt;/a&gt; is a software that lets you completely uninstall programs and it's easier to use than the built-in "Add or remove programs". You can search for a program or locate it in a more intuitive way: enter in the Hunter Mode, open the program you want to uninstall and drag the target to your program's window.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/__rFsrl4ZZDo/STQ75mOp7NI/AAAAAAAAAOM/ptoywJM8qyA/s1600-h/revo-uninstaller-main.png"&gt;&lt;img id="BLOGGER_PHOTO_ID_5274906924258290898" style="DISPLAY: block; MARGIN: 0px auto 10px; WIDTH: 320px; CURSOR: pointer; HEIGHT: 213px; TEXT-ALIGN: center" alt="" src="http://2.bp.blogspot.com/__rFsrl4ZZDo/STQ75mOp7NI/AAAAAAAAAOM/ptoywJM8qyA/s320/revo-uninstaller-main.png" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;After finding the program, Revo Uninstaller analyzes the program's data, launches the uninstaller and shows you a list of leftovers (files, folders, registry entries related to the application). The application does a pretty good job at identifying them, but you should still check the results before selecting everything. "Even if you have a broken installation, Revo Uninstaller scans for an application's data on your hard disk drives and in the Windows registry and shows all found files, folders and registry items so you can delete them."&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/__rFsrl4ZZDo/STQ8D_5crHI/AAAAAAAAAOU/YEzt5KJnLR0/s1600-h/revo-uninstaller-2.png"&gt;&lt;img id="BLOGGER_PHOTO_ID_5274907102947355762" style="DISPLAY: block; MARGIN: 0px auto 10px; WIDTH: 320px; CURSOR: pointer; HEIGHT: 222px; TEXT-ALIGN: center" alt="" src="http://2.bp.blogspot.com/__rFsrl4ZZDo/STQ8D_5crHI/AAAAAAAAAOU/YEzt5KJnLR0/s320/revo-uninstaller-2.png" border="0" /&gt;&lt;/a&gt;thats it&lt;br /&gt;njoy...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-1210950478676653817?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/1210950478676653817/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=1210950478676653817' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/1210950478676653817'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/1210950478676653817'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2008/12/want-to-uninstall-software.html' title='Want To Uninstall the software'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/__rFsrl4ZZDo/STQ75mOp7NI/AAAAAAAAAOM/ptoywJM8qyA/s72-c/revo-uninstaller-main.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-8721975063777371089</id><published>2008-11-22T11:32:00.001+05:30</published><updated>2008-11-22T11:32:52.417+05:30</updated><title type='text'>GRE Complete Material</title><content type='html'>http://rapidshare.com/files/141140953/Rea_Gre_Tests.rar&lt;br /&gt;&lt;br /&gt;    http://rapidshare.com/files/141140365/Pwrprep.rar&lt;br /&gt;&lt;br /&gt;    http://rapidshare.com/files/140893044/bigbook.zip&lt;br /&gt;&lt;br /&gt;    http://rapidshare.com/files/140894025/ARCO.rar&lt;br /&gt;&lt;br /&gt;    http://rapidshare.com/files/141141384/Pwrprep2.rar&lt;br /&gt;    http://rapidshare.com/files/141142627/cambridge.rar&lt;br /&gt;    http://rapidshare.com/files/141144108/gre_materials.rar&lt;br /&gt;     Barrons_CD.rar&lt;br /&gt;&lt;br /&gt;    http://rapidshare.com/files/141148721/Barrons_CD.rar&lt;br /&gt;     Kaplan_CD.rar&lt;br /&gt;&lt;br /&gt;    http://rapidshare.com/files/141158781/Kaplan_CD.rar&lt;br /&gt;     Word_Command.rar&lt;br /&gt;&lt;br /&gt;    http://rapidshare.com/files/141160465/Word_Command.rar&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 0, 51);"&gt;NOVA&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;http://rapidshare.com/files/146339399/Nova.rar&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-8721975063777371089?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/8721975063777371089/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=8721975063777371089' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/8721975063777371089'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/8721975063777371089'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2008/11/gre-complete-material.html' title='GRE Complete Material'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-2471919862561005464</id><published>2008-11-22T11:28:00.002+05:30</published><updated>2008-11-22T11:32:02.602+05:30</updated><title type='text'>Want to change Windows Start Button</title><content type='html'>This Document Contain Easy Information To change ur windows Start Button Text&lt;br /&gt;&lt;a href="http://rapidshare.com/files/166176749/windows_start_button_text.doc.html"&gt;&lt;br /&gt;http://rapidshare.com/files/166176749/windows_start_button_text.doc.html&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-2471919862561005464?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/2471919862561005464/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=2471919862561005464' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/2471919862561005464'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/2471919862561005464'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2008/11/want-to-change-windows-start-button.html' title='Want to change Windows Start Button'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-602461757760173062</id><published>2008-11-18T15:03:00.002+05:30</published><updated>2008-11-18T15:04:25.102+05:30</updated><title type='text'>Kaspersky Anti-Virus 2009 - 8.0.0.454</title><content type='html'>Latest Version&lt;br /&gt;&lt;br /&gt;* System watch. System watcher (all-in-one system for registering&lt;br /&gt;&lt;br /&gt;events).&lt;br /&gt;- HIPS (host intrusion prevention system - proactive defense, which&lt;br /&gt;&lt;br /&gt;is based on limiting application actions on a system)&lt;br /&gt;- PDM (system of proactive defense, which is based on application&lt;br /&gt;&lt;br /&gt;behavior analysis for malicious/suspicious activities)&lt;br /&gt;- Firewall (personal protection screen)&lt;br /&gt;* Malware protection&lt;br /&gt;- Protection of files and memory (File-Antivirus)&lt;br /&gt;- Protection of email and IM (Mail-Antivirus)&lt;br /&gt;- Protection of WEB (Web-Antivirus)&lt;br /&gt;* Online Security&lt;br /&gt;- Protection from Phishing (Anti-Phishing)&lt;br /&gt;- Protection against network attacks (IDS)&lt;br /&gt;- Protection from auto-dialers (Anti-Dialer)&lt;br /&gt;* Content Filtering&lt;br /&gt;- Spam Filtering (Anti-Spam)&lt;br /&gt;- Banner Filtering (Anti-Banner)&lt;br /&gt;- Parental Control&lt;br /&gt;* On Demand Scanning (Scan tasks)&lt;br /&gt;* Updater&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(153, 0, 0);"&gt;No Password, Don't Forget to say Thanks! &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;http://kewlshare.com/dl/4d86d363a3e9/Kaspersky_Anti-Virus_2009_8.0.0.&lt;br /&gt;454__PC7_M107.rar.html&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-602461757760173062?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/602461757760173062/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=602461757760173062' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/602461757760173062'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/602461757760173062'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2008/11/kaspersky-anti-virus-2009-800454.html' title='Kaspersky Anti-Virus 2009 - 8.0.0.454'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-5637589306991171285</id><published>2008-11-18T14:49:00.001+05:30</published><updated>2008-11-18T14:50:25.013+05:30</updated><title type='text'>More than 100,000 Universal Windows Drivers</title><content type='html'>All kind of driver old-latest up to date&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Size : 530 MB&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Just pop the Universal Driver CD in and Windows will automatically search the comprehensive drivers. This CD, (Iso format) contains software drivers for over 100,000 hardware components from brands such as Dell, HP, Compaq, IBM, Sony, Toshiba, Panasonic, as well as hardware component manufacturers Intel, 3Com, VIA, nVidia, ATI, SoundMax, and many more!&lt;br /&gt;&lt;br /&gt;http://rapidshare.com/files/161872806/100000.Universal.Driver.08.2008.part01.rar&lt;br /&gt;http://rapidshare.com/files/161873014/100000.Universal.Driver.08.2008.part02.rar&lt;br /&gt;http://rapidshare.com/files/161872799/100000.Universal.Driver.08.2008.part03.rar&lt;br /&gt;http://rapidshare.com/files/161872908/100000.Universal.Driver.08.2008.part04.rar&lt;br /&gt;http://rapidshare.com/files/161872954/100000.Universal.Driver.08.2008.part05.rar&lt;br /&gt;http://rapidshare.com/files/161869308/100000.Universal.Driver.08.2008.part06.rar&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-5637589306991171285?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/5637589306991171285/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=5637589306991171285' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/5637589306991171285'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/5637589306991171285'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2008/11/more-than-100000-universal-windows.html' title='More than 100,000 Universal Windows Drivers'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-1305354940500695050</id><published>2008-11-18T14:47:00.000+05:30</published><updated>2008-11-18T14:49:05.754+05:30</updated><title type='text'>Rapidshare Tools Collection</title><content type='html'>&lt;span style="font-weight: bold; color: rgb(51, 0, 51);"&gt;Latest Rapidshare Tools Collection  : :&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;* 28.000 Proxies List&lt;br /&gt;* BC-Leecha v2.42&lt;br /&gt;* Link Grabber v3.0.2&lt;br /&gt;* Proxy Finder v1.1&lt;br /&gt;* Rapid Check v0.4&lt;br /&gt;* Rapid Harvest v1.2.0.5&lt;br /&gt;* Rapid Leecher v4.5 Beta&lt;br /&gt;* Rapid Search Beta v0.2&lt;br /&gt;* RapidShare - the way YOU like it!&lt;br /&gt;* RapidShare DeCoder v0.2&lt;br /&gt;* Rapidshare Free Account Notifier v1.0&lt;br /&gt;* Rapidshare Grabber v1.4.4a&lt;br /&gt;&lt;br /&gt;Rapidshare Instant Downloader v1.3.3&lt;br /&gt;Rapidshare Premium Account Generator v1.0&lt;br /&gt;Rapidshare Source Code&lt;br /&gt;Rapidshare Downloader Live&lt;br /&gt;RapidUp v1.3&lt;br /&gt;RapidUp (latest version)&lt;br /&gt;Rapishare Bypasser&lt;br /&gt;Rapishare premium Grabber&lt;br /&gt;Rapishare collect script&lt;br /&gt;Rapishare siggy&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Links to download :&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;http://rapidshare.com/files/132680672/AIO_30_Best_Rapidshare_Tools_CollectionBy_Rexy.part1.rar&lt;br /&gt;&lt;br /&gt;http://rapidshare.com/files/132681778/AIO_30_Best_Rapidshare_Tools_CollectionBy_Rexy.part2.rar&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-1305354940500695050?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/1305354940500695050/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=1305354940500695050' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/1305354940500695050'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/1305354940500695050'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2008/11/rapidshare-tools-collection.html' title='Rapidshare Tools Collection'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-362168164304751007</id><published>2008-11-17T00:36:00.000+05:30</published><updated>2008-11-17T00:37:10.649+05:30</updated><title type='text'>Rapidshare Premium Links</title><content type='html'>Rapidshare Premium Links : :&lt;br /&gt;&lt;br /&gt;http://yourrapidsolution.com/rapid/index.php&lt;br /&gt;http://vip.hotspotwarez.com/rs/index.php&lt;br /&gt;http://www.rstiger.com/download.php&lt;br /&gt;http://wautersjoris.deds.nl/&lt;br /&gt;http://www.hlusoe.info/&lt;br /&gt;http://www.promonkey.net/rapid/&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-362168164304751007?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/362168164304751007/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=362168164304751007' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/362168164304751007'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/362168164304751007'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2008/11/rapidshare-premium-links.html' title='Rapidshare Premium Links'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-1661487945495329661</id><published>2008-11-14T21:56:00.003+05:30</published><updated>2008-11-14T21:58:14.648+05:30</updated><title type='text'>Create a bootable USB drive!</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/__rFsrl4ZZDo/SR2m8SbgU0I/AAAAAAAAAII/kqtijAHlNuc/s1600-h/magicisofullbl1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 256px;" src="http://1.bp.blogspot.com/__rFsrl4ZZDo/SR2m8SbgU0I/AAAAAAAAAII/kqtijAHlNuc/s320/magicisofullbl1.jpg" alt="" id="BLOGGER_PHOTO_ID_5268550693762913090" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Descrption:&lt;br /&gt;I had to search all over for this information, so I stole a little here, borrowed a little there, and made up what I couldn't find, to get it all in one place.&lt;br /&gt;Hopefully, this will save everyone some time.&lt;br /&gt;&lt;br /&gt;First, this is PE version 2.0, and earlier versions will not work. I do not/will not work with BartPE, so I haven't a clue what needs to be done in that environment.&lt;br /&gt;&lt;br /&gt;Your USB and the port it is using must be USB 2.0. I don't know if USB 1.0 will work slowly, or not at all.&lt;br /&gt;&lt;br /&gt;I'm assuming you've created a bootable PE Version 2.0 CD.&lt;br /&gt;I used the drive letters that my computer assigned to the devices. Yours may be different.&lt;br /&gt;C:=local hard drive&lt;br /&gt;D:=CD/DVD drive&lt;br /&gt;E:=USB Thumb drive&lt;br /&gt;X:=PE's RAM disk&lt;br /&gt;&lt;br /&gt;You need to assure that you select the proper disks, as you will be erasing and formatting the thumb drive. I will not be responsible for any data loss or woes you encounter!&lt;br /&gt;&lt;br /&gt;You'll need MagicISO, to extract all folders and files (including hidden files) from your CD to a file on your C: drive (I used c:\bootusb)&lt;br /&gt;(You probably already have these files in a folder, somewhere. you needed to use them to create the ISO. If not, extract them before you boot the PE CD).&lt;br /&gt;&lt;br /&gt;Boot your PE version 2.0 CD&lt;br /&gt;type these commands:&lt;br /&gt;disk part&lt;br /&gt;select disk 1 (this was my USB drive. type in "detail disk" to be sure you've selected the USB drive)&lt;br /&gt;clean (you are erasing the selected disk. I hope you got it right!)&lt;br /&gt;create partition primary&lt;br /&gt;select partition 1&lt;br /&gt;active&lt;br /&gt;format fs=fat32 (this takes a while)&lt;br /&gt;assign&lt;br /&gt;exit&lt;br /&gt;&lt;br /&gt;You're now back at the command prompt, and need to copy the files from the folder you created on your hard drive to the USB drive.&lt;br /&gt;xcopy c:\bootusb\*.* e: /h /e (this also takes a while)&lt;br /&gt;&lt;br /&gt;You can't copy the files from the RAM drive, as they're in use by PE&lt;br /&gt;I don't think (but haven't tried) you can copy them from the CD, as they're compressed. (&lt;br /&gt;&lt;br /&gt;Good luck, and I hope to have saved someone a bit of trouble figuring this out.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-1661487945495329661?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/1661487945495329661/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=1661487945495329661' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/1661487945495329661'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/1661487945495329661'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2008/11/create-bootable-usb-drive.html' title='Create a bootable USB drive!'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/__rFsrl4ZZDo/SR2m8SbgU0I/AAAAAAAAAII/kqtijAHlNuc/s72-c/magicisofullbl1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-5688916867662783317</id><published>2008-11-14T21:56:00.001+05:30</published><updated>2008-11-14T21:56:36.503+05:30</updated><title type='text'>Change the Logon Background Colour</title><content type='html'>Change the Logon Background Colour:-&lt;br /&gt;&lt;br /&gt;1.Use a registry editing tool to navigate to the following tool:&lt;br /&gt;&lt;br /&gt;HKEY_USERS\.DEFAULT\Control Panel\Colors\Background&lt;br /&gt;&lt;br /&gt;2. Change the following value:-&lt;br /&gt;Data Type: REG_SZ&lt;br /&gt;Value Name: Background&lt;br /&gt;Value: Decimal RGB value for the colour you wish to set, for example:&lt;br /&gt;&lt;br /&gt;Red: 255 0 0&lt;br /&gt;Green: 0 255 0&lt;br /&gt;Blue: 0 0 255&lt;br /&gt;Black: 0 0 0&lt;br /&gt;White: 255 255 255&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-5688916867662783317?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/5688916867662783317/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=5688916867662783317' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/5688916867662783317'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/5688916867662783317'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2008/11/change-logon-background-colour.html' title='Change the Logon Background Colour'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-855516529226171168</id><published>2008-11-09T17:43:00.003+05:30</published><updated>2008-11-09T17:49:46.204+05:30</updated><title type='text'>Intel Atom </title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/__rFsrl4ZZDo/SRbUh9b6wYI/AAAAAAAAAIA/uBN9NZdY68g/s1600-h/platform_coins.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 214px;" src="http://2.bp.blogspot.com/__rFsrl4ZZDo/SRbUh9b6wYI/AAAAAAAAAIA/uBN9NZdY68g/s320/platform_coins.jpg" alt="" id="BLOGGER_PHOTO_ID_5266630494148804994" border="0" /&gt;&lt;/a&gt;Introduction&lt;br /&gt;&lt;br /&gt;For a few months, we’d been hearing talk of a new dedicated Intel processor for MIDs (Mobile InternetDevices), intended to compete with ARM processors. Initially known by the names Silverthorne and Diamondville, the processors in this new line will be called "Atom". These chips have a few surprises in store.&lt;br /&gt;&lt;br /&gt;Interesting and Surprising Choices&lt;br /&gt;Atom CPUs are surprising for more than one reason: they have modern functions (EM64T, SSSE3, etc.) grafted onto an older architecture The Atom is the first in-order x86 since the Pentium. Power management and fabrication costs are the two imperatives Intel seems to have been guided by, at the expense (with no attempt made to hide it) of performance. So, no, don’t expect a competitor to Core 2 Duo. But what does the Atom really have to offer? We’ll see that as this piece unfolds.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;meta equiv="Content-Type" content="text/html; charset=utf-8"&gt;&lt;meta name="ProgId" content="Word.Document"&gt;&lt;meta name="Generator" content="Microsoft Word 9"&gt;&lt;meta name="Originator" content="Microsoft Word 9"&gt;&lt;link rel="File-List" href="file:///C:/DOCUME%7E1/user/LOCALS%7E1/Temp/msoclip1/01/clip_filelist.xml"&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:worddocument&gt;   &lt;w:view&gt;Normal&lt;/w:View&gt;   &lt;w:zoom&gt;0&lt;/w:Zoom&gt;   &lt;w:donotoptimizeforbrowser/&gt;  &lt;/w:WordDocument&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;style&gt; &lt;!--  /* Font Definitions */ @font-face 	{font-family:Verdana; 	panose-1:2 11 6 4 3 5 4 4 2 4; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:536871559 0 0 0 415 0;}  /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-parent:""; 	margin:0in; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:12.0pt; 	font-family:"Times New Roman"; 	mso-fareast-font-family:"Times New Roman";} h3 	{margin-right:0in; 	mso-margin-top-alt:auto; 	mso-margin-bottom-alt:auto; 	margin-left:0in; 	mso-pagination:widow-orphan; 	mso-outline-level:3; 	font-size:13.5pt; 	font-family:"Times New Roman";} h4 	{margin-right:0in; 	mso-margin-top-alt:auto; 	mso-margin-bottom-alt:auto; 	margin-left:0in; 	mso-pagination:widow-orphan; 	mso-outline-level:4; 	font-size:12.0pt; 	font-family:"Times New Roman";} a:link, span.MsoHyperlink 	{color:blue; 	text-decoration:underline; 	text-underline:single;} a:visited, span.MsoHyperlinkFollowed 	{color:purple; 	text-decoration:underline; 	text-underline:single;} p.spip, li.spip, div.spip 	{mso-style-name:spip; 	margin-right:0in; 	mso-margin-top-alt:auto; 	mso-margin-bottom-alt:auto; 	margin-left:0in; 	mso-pagination:widow-orphan; 	font-size:12.0pt; 	font-family:"Times New Roman"; 	mso-fareast-font-family:"Times New Roman";} span.klink 	{mso-style-name:klink;} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.25in 1.0in 1.25in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --&gt;&lt;/style&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-855516529226171168?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/855516529226171168/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=855516529226171168' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/855516529226171168'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/855516529226171168'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2008/11/introduction-for-few-months-wed-been.html' title='Intel Atom '/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/__rFsrl4ZZDo/SRbUh9b6wYI/AAAAAAAAAIA/uBN9NZdY68g/s72-c/platform_coins.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-8215591987741373351</id><published>2008-11-07T15:14:00.001+05:30</published><updated>2008-11-07T15:14:54.913+05:30</updated><title type='text'>Intel versus AMD Processor</title><content type='html'>This evaluation of current desktop processors utilises over 60 benchmark tests including office and multimedia software, 3D games, Internet applications, video rendering and compression. We have used benchmarks that are relevant to a range of market sectors in order to get a balanced view of CPU performance. However, in an ideal world, you should also run your own mission-critical applications on any processor that you're considering.&lt;br /&gt;&lt;br /&gt;Of course, performance is only one aspect of a processor purchase decision. For example, the Athlon 64's support for the NX (No Execute) feature safeguards it from certain virus attacks, and could be reason enough to choose an AMD processor. And if you're after a quiet PC, then AMD's chips have clear advantages over Intel's latest 'Prescott' Pentium 4. The power consumption of the Athlon 64 is lower than that of the Pentium 4 thanks to AMD's use of Silicon-on-Insulator (SOI) technology. The Athlon's 64's 64-bit capability is also a potential advantage, although this feature remains largely unused because of the missing operating system support -- 64-bit Windows XP has now been delayed until 2005.&lt;br /&gt;&lt;br /&gt;&lt;table border="0" cellpadding="3" cellspacing="2" width="100%"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;span style="font-family:arial;font-size:85%;color:#000000;"&gt;&lt;em&gt;&lt;em&gt;&lt;strong&gt;System&lt;/strong&gt;&lt;/em&gt;&lt;/em&gt;&lt;/span&gt;&lt;br /&gt;&lt;/td&gt; &lt;td&gt;&lt;span style="font-family:arial;font-size:85%;color:#000000;"&gt;&lt;em&gt;&lt;em&gt;&lt;strong&gt;Idle&lt;/strong&gt;&lt;em&gt;&lt;/em&gt;&lt;/em&gt;&lt;/em&gt;&lt;/span&gt;&lt;br /&gt;&lt;/td&gt; &lt;td&gt;&lt;span style="font-family:arial;font-size:85%;color:#000000;"&gt;&lt;em&gt;&lt;em&gt;&lt;strong&gt;Max&lt;/strong&gt;&lt;/em&gt;&lt;/em&gt;&lt;/span&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt; &lt;td colspan="3"&gt; &lt;hr color="#000000" size="1" width="100%" noshade="noshade"&gt; &lt;/td&gt;&lt;/tr&gt; &lt;tr bg style="color:#eeeeee;"&gt; &lt;td&gt;&lt;span style="font-family:arial;font-size:85%;color:#000000;"&gt;Athlon 64 3800+ (Nforce 3)&lt;/span&gt;&lt;/td&gt; &lt;td&gt;&lt;span style="font-family:ms sans serif;font-size:78%;color:#000000;"&gt;91W&lt;/span&gt;&lt;/td&gt; &lt;td&gt;&lt;span style="font-family:ms sans serif;font-size:78%;color:#000000;"&gt;172W&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;span style="font-family:arial;font-size:85%;color:#000000;"&gt;Athlon 64 3800+ (KT800 Pro)&lt;/span&gt;&lt;/td&gt; &lt;td&gt;&lt;span style="font-family:ms sans serif;font-size:78%;color:#000000;"&gt;82W&lt;/span&gt;&lt;/td&gt; &lt;td&gt;&lt;span style="font-family:ms sans serif;font-size:78%;color:#000000;"&gt;162W&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr bg style="color:#eeeeee;"&gt; &lt;td&gt;&lt;span style="font-family:arial;font-size:85%;color:#000000;"&gt;Pentium 4 560 (925X)&lt;/span&gt;&lt;/td&gt; &lt;td&gt;&lt;span style="font-family:ms sans serif;font-size:78%;color:#000000;"&gt;155W&lt;/span&gt;&lt;/td&gt; &lt;td&gt;&lt;span style="font-family:ms sans serif;font-size:78%;color:#000000;"&gt;258W&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-8215591987741373351?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/8215591987741373351/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=8215591987741373351' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/8215591987741373351'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/8215591987741373351'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2008/11/intel-versus-amd-processor.html' title='Intel versus AMD Processor'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-3494149535918413772</id><published>2008-11-07T15:09:00.001+05:30</published><updated>2008-11-07T15:09:31.049+05:30</updated><title type='text'>AMD Phenom X4 9000 Series</title><content type='html'>&lt;span class="copy"&gt;&lt;b class="subblk"&gt;INCREDIBLE PERFORMANCE&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b class="copy"&gt;The ultimate megatasking experience.&lt;/b&gt; Featuring true multi-core design and award-winning AMD64 technology with Direct Connect Architecture, AMD Phenom™ processors deliver the ultimate megatasking experience by providing direct and rapid information flow between processor cores, main memory, and graphics and video accelerators. AMD Phenom™ processors have the technology to break through the most challenging processing loads. AMD Phenom™ processors feature low latency access to main memory for amazingly rapid response and phenomenal system performance. AMD Phenom™ processors were designed for megatasking—running multiple, multi-threaded applications. Surge through the most demanding processing loads, including advanced multitasking, critical business productivity, advanced visual design and modeling, serious gaming, and visually stunning digital media and entertainment.&lt;br /&gt;&lt;br /&gt;&lt;b class="copy"&gt;Phenomenal performance with advanced processor design.&lt;/b&gt; The AMD Phenom™ processors are the most advanced processors for true multitasking with true quad-core design. Don’t get bogged down by non-native quad-core processors and obsolete front side bus architectures. With an integrated memory controller and shared L3 cache, AMD Phenom™ processors have low-latency access to main memory for amazingly rapid system response and phenomenal system performance.&lt;br /&gt;&lt;br /&gt;&lt;b class="copy"&gt;Blast through performance bottlenecks.&lt;/b&gt; All AMD Phenom™ processors feature AMD64 with Direct Connect Architecture to blast through performance bottlenecks. Award winning HyperTransport™ 3.0 technology just got faster, providing support for full 1080p high-definition video and extreme total system bandwidth.&lt;br /&gt;&lt;br /&gt;&lt;b class="copy"&gt;Shatter the memory barrier. &lt;/b&gt; Superior AMD64 architecture offers direct access to DDR2 memory. Enjoy virtually unlimited memory options with AMD64 technology and 64-bit Windows Vista.® Shatter the memory barrier with AMD Phenom™ processors and 64-bit Windows Vista.®&lt;br /&gt;&lt;br /&gt;&lt;b class="subgrn"&gt;INTENSELY VISUAL&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b class="copy"&gt;Experience Windows Vista.® &lt;/b&gt; Harness the power of Windows Vista® with the AMD Phenom™ processors. AMD Phenom™ processors divide and conquer the most complex tasks with true multi-core design. Enjoy the ultimate megatasking experience on Windows Vista.® Enjoy virtually unlimited memory options with AMD64 technology and 64-bit Windows Vista.® Shatter the memory barrier with AMD Phenom™ processors and Windows Vista.®&lt;br /&gt;&lt;br /&gt;&lt;b class="subgrn"&gt;STRIKINGLY EFFICIENT&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;b class="copy"&gt;Strikingly efficient Cool‘n’Quiet™ 2.0 technology.&lt;/b&gt;With the next generation of award-winning Cool‘n’Quiet™ technology, Cool‘n’Quiet™ 2.0 technology reduces heat and noise so you can experience amazing performance without distraction. Combined with core enhancements that can improve overall power savings, AMD Phenom™ processors deliver seamless multitasking and optimum energy efficiency. Work, play, talk, and share a PC that’s seen, not heard.&lt;br /&gt;&lt;br /&gt;&lt;b class="copy"&gt;Purchase with Confidence &lt;/b&gt;&lt;br /&gt;Founded in 1969, AMD has shipped more than 240 million PC processors worldwide. Customers can depend on AMD64 processors and AMD for compatibility and reliability. AMD processors undergo extensive testing to help ensure compatibility with Microsoft Windows XP, Vista, Windows NT®, Windows 2000, as well as Linux and other PC operating systems. AMD works collaboratively with Microsoft and other ecosystem partners to achieve compatibility of AMD processors and to expand the capability of software and hardware products leveraging AMD64 technology. AMD conducts rigorous research, development, and validation to help ensure the continued integrity and performance of its products. &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-3494149535918413772?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/3494149535918413772/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=3494149535918413772' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/3494149535918413772'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/3494149535918413772'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2008/11/amd-phenom-x4-9000-series.html' title='AMD Phenom X4 9000 Series'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-1843913976169144255</id><published>2008-11-07T15:06:00.001+05:30</published><updated>2008-11-07T15:06:54.667+05:30</updated><title type='text'>Intel Entry Storage System</title><content type='html'>&lt;div class="imageside-half"&gt;        &lt;p class="intro"&gt;        &lt;strong&gt;Easy-to-use Network Attached Storage (NAS) solution adds capacity, data protection and central access for small businesses, and the Small Office and Home Office (SOHO).&lt;/strong&gt;&lt;/p&gt;       &lt;p class="intro"&gt;The Intel® Entry Storage System SS4200-E is a complete yet flexible hardware and software NAS solution that instantly adds storage capacity to small business, and the small office and home office. Powered by software from EMC, the worldwide leader in information management, the Intel Entry Storage System SS4200-E offers an intuitive user interface and easy 4-step setup process. Out-of-the-box RAID and Retrospect* backup software together deliver the necessary security to protect irreplaceable digital data such as accounting records, financial data, customer information, email, sales records, product info, databases—everything a small business relies on to keep their business running. With four USB 2.0 ports and two SATA ports, the Intel Entry Storage System SS4200-E can be connected to most digital devices as well as additional storage devices to form the core of a shared, centralized data access system.&lt;/p&gt;       &lt;p class="intro"&gt;The Intel Entry Storage System SS4200-E was designed specifically for the small business with flexibility and growth in mind, allowing you to customize and differentiate your solutions.&lt;/p&gt;         &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-1843913976169144255?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/1843913976169144255/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=1843913976169144255' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/1843913976169144255'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/1843913976169144255'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2008/11/intel-entry-storage-system.html' title='Intel Entry Storage System'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-2887033750373225846</id><published>2008-11-07T15:05:00.001+05:30</published><updated>2008-11-07T15:05:38.318+05:30</updated><title type='text'>Economical servers for small business and clusters</title><content type='html'>&lt;span style="font-weight: bold; color: rgb(51, 0, 51);"&gt;Intel&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(51, 0, 51);" class="regtitle"&gt;®&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(51, 0, 51);"&gt; Xeon&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(51, 0, 51);" class="regtitle"&gt;®&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(51, 0, 51);"&gt; Processor 3000 Sequence :&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The Intel® Xeon® processor 3000 sequence-based platforms unleash the computing power of Intel Xeon processors. The new 45 nm Quad and Dual-Core processors feature enhanced Intel® Core™ microarchitecture that provides your business with exceptional performance and power efficiency at a very affordable cost.&lt;br /&gt;&lt;br /&gt;These servers are ideal for small business owners looking for ways to grow business, manage operation more effectively and efficiently, and protect and secure one of their most important assets - information.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-2887033750373225846?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/2887033750373225846/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=2887033750373225846' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/2887033750373225846'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/2887033750373225846'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2008/11/economical-servers-for-small-business.html' title='Economical servers for small business and clusters'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-4721364511431319012</id><published>2008-11-07T15:02:00.000+05:30</published><updated>2008-11-07T15:04:47.297+05:30</updated><title type='text'>Intel® Xeon® Processor 7000 Sequence</title><content type='html'>The Intel® Xeon® processor 7400 series, offers the industry's highest virtualization performance so you can do more with less. With key platform innovations built-in, the Intel Xeon processor 7400 series offers more headroom, reliability, and the highest expandability for large-scale server consolidation.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 0, 51);"&gt;Best-in-class performance ::&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;With enhanced 45nm Intel® Core™ microarchitecture, the new Intel Xeon processor 7400 series is best-in-class for demanding enterprise workloads with almost 50% better performance in some cases and up to 10% reduction in platform power compared to previous generation expandable servers.¹ Designed and optimized for IT, these 6-core processors provide industry-leading multi-core processing and greater computing performance without increasing footprint and power demands.&lt;br /&gt;&lt;br /&gt;With 16MB shared L3 cache, scalability beyond 4 sockets, 1066 million transfers per second (MT/s), and support for up to 256GB of RAM, the Intel Xeon processor 7400 series is the ideal choice for your data-intensive, business-critical performance requirements.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 0, 153);"&gt;Headroom and scalability built in ::&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Offering more low voltage options including 65W 6-core and 50W 4-core processors, Intel Xeon processor 7400 series for blade and ultra-dense platforms reduce cooling requirements, lowering IT costs. In addition, these processors are designed with Intel® Virtualization Technology (Intel® VT), enabling an ecosystem of software-based virtualization from industry leading software providers.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-4721364511431319012?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/4721364511431319012/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=4721364511431319012' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/4721364511431319012'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/4721364511431319012'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2008/11/intel-xeon-processor-7000-sequence.html' title='Intel® Xeon® Processor 7000 Sequence'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-1525800753092042368</id><published>2008-11-05T11:46:00.002+05:30</published><updated>2008-11-05T11:51:14.307+05:30</updated><title type='text'>DBMS(Data base management system)</title><content type='html'>DBMS(Data base management system)&lt;br /&gt;&lt;br /&gt;1) In what kind of storage structure for strings, one can easily insert, delete, concatenate and rearrange substrings?&lt;br /&gt;&lt;br /&gt;a)fixed length storage structure   b) variable length storage with fixed maximum&lt;br /&gt;c)linked list storage                    d) array type storage&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2) What is the time required to search an element in a linked list of length n?&lt;br /&gt;&lt;br /&gt;a)   O(log2 n)                               b)   O(n)                   c)   O(1)                        d)   O(n2)&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;1) Consider a linked list of n element which is pointed by an external pointer.  What is the time taken to delete the element which is successor of the element pointed to by a given pointer&lt;br /&gt;&lt;br /&gt;a)   O(1)                       b)   O(log2 n)   c)   O(n)                               d)   O(n log2 n)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2) Consider a linked list of n elements.  What is the time taker to insert an element after an element pointed by some pointer?&lt;br /&gt;&lt;br /&gt;a)   O(1)                     b)   O(log2 n)       c)   O(n)                            d)   O(n log2 n)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;3) Consider an undirected graph G with n vertices and e edges.  Whjat is the time taken by Depth First Search (DFS) if the graph is represented by (i) adjacency matrix, (ii) adjacency list?&lt;br /&gt;&lt;br /&gt;a)   O(n2), O(n)                          b)   O(n2), O(e)           c)   O(e), O(n2)                          d)   O(e+n), O(e)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;4) An undirected graph G with n vertices and e edges is represented by adjacency list.  What is the time required to generate all the connected components?&lt;br /&gt;&lt;br /&gt;a)   O(n)           b)   O(e)                     c)  O(e + n)                  d)  O(e2)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;5) Which of the following statements is false?&lt;br /&gt;&lt;br /&gt;a)   every tree is a bipartite graph      b)   a tree contains a cycle&lt;br /&gt;c)   a tree with n.nodes contains n-1 edges     d)   a tree is a connected graph&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;6) A graph G with n nodes is bipartite if it contains&lt;br /&gt;&lt;br /&gt;a)   n edges                               b)   a cycle of odd length                                    c)   no cycle of odd length           d)   n2 edges&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;7) In what tree, for every node the height of its left subtree and right subtree differ at least by one&lt;br /&gt;&lt;br /&gt;a)   binary search tree                    b)   AVL – tree                  c)   Complete tree                         d) Threaded binary tree&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;8) A complete binary tree with the property that the value at each node is at least as large as the values at its children is known as&lt;br /&gt;&lt;br /&gt;a)   binary search tree                    b)   AVL tree               c)   completely balanced tree             d)   Heap&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;9) A full binary tree with n leaves contains&lt;br /&gt;&lt;br /&gt;a)   n nodes                       b)   log2 n nodes                            c)  2n-1 nodes              d)   2n nodes&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;10) A full binary tree with n non-leaf nodes contains&lt;br /&gt;&lt;br /&gt;a)   log2 n nodes                b)   n + 1 nodes                                    c)  2 n nodes               d)   2 n + 1 nodes&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;11) Preorder is nothing but&lt;br /&gt;&lt;br /&gt;a)   depth first order           b)breadthfirstorder                               c) topological order          d)   linear order&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;12) What traversal techniques lists the notes of a binary search tree is ascending order?&lt;br /&gt;&lt;br /&gt;a)   post order                b)   inorder                           c)   preorder             d)  none of the above&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;13) Consider a sorted binary insertion tree.  What must be done to produce a sorted array of numbers (for printing) from the sorted binary insertion tree?&lt;br /&gt;&lt;br /&gt;a)   preoder traversal                 b)postorder traversal                               c)  inorder traversal                     d)  top-down traversal&lt;br /&gt;&lt;br /&gt;14) The concatenation of two lists is to be performed in O(1) time.  Which of the following implementations of a list should be used?&lt;br /&gt;&lt;br /&gt;a)   singly linked list    b)   doubly linked list &lt;br /&gt;c)   circular doubly linked list                d)   array implementation&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;15) Which of the follwing algorithm solves the all pairs shortest path problem&lt;br /&gt;&lt;br /&gt;      a)   Greedy           b) Depth-First search    &lt;br /&gt;      c)  Dyanamic programming   d) Divide &amp;Conquer&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;16) Which of the follwing algorithm solves the Quick Sort problem&lt;br /&gt;&lt;br /&gt;a)   Greedy                   b) Depth-First search    &lt;br /&gt;c)  Dyanamic programming   d) Divide &amp;Conquer&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;17) Which of the follwing algorithm solves the Minimum weight spanning tree problem&lt;br /&gt;&lt;br /&gt;        a)   Greedy                    b) Depth-First search&lt;br /&gt;        c)  Dynamic programming            d)Divide&amp;Conquer&lt;br /&gt;&lt;br /&gt;20) Which of the following algorithm solves the Connected components problem&lt;br /&gt;&lt;br /&gt;       a)   Greedy                 b) Depth-First search &lt;br /&gt;       c)  Dynamic programming         d)Divide&amp;Conquer&lt;br /&gt;&lt;br /&gt;21) selection sort’s  worst case Space complexity is …&lt;br /&gt;&lt;br /&gt;a) 0                                   b) O(n)                     c) O(logn)                          d)None&lt;br /&gt;&lt;br /&gt;22) Bubble sort ‘s worst case  Space complexity is…&lt;br /&gt;&lt;br /&gt;a) 0                                 b) O(n)                              c) O(logn)                         d)None&lt;br /&gt;&lt;br /&gt;23) Insertion sort’s worstcase  Space complexity is….&lt;br /&gt;&lt;br /&gt;a) 0                                b) O(n)                              c) O(logn)                        d)None&lt;br /&gt;&lt;br /&gt;24) Merge sort’s worst case  Space  complexity is…&lt;br /&gt;&lt;br /&gt;a) 0                                 b) O(n)                              c) O(logn)                       d)None.&lt;br /&gt;&lt;br /&gt;25) Quick sort’s worstcase Space complexity is….&lt;br /&gt;&lt;br /&gt;  a) 0                                          b) O(n)  &lt;br /&gt;c) O(logn)                                  d)None&lt;br /&gt;&lt;br /&gt;26)selection sort’s  average case Space complexity is …&lt;br /&gt;&lt;br /&gt;a) 0                                 b) O(n)  &lt;br /&gt;c) O(logn)                          d)None&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;27)Bubble sort ‘s average case  Space complexity is….&lt;br /&gt;&lt;br /&gt;a) 0                         b) O(n)  &lt;br /&gt;c) O(logn)               d)None&lt;br /&gt;&lt;br /&gt;28) Insertion sort’s  average case  Space complexity is….&lt;br /&gt;&lt;br /&gt;a) 0                          b) O(n)  &lt;br /&gt;c) O(logn)                 d)None&lt;br /&gt;&lt;br /&gt;29) Merge sort’s average case  Space  complexity is…&lt;br /&gt;&lt;br /&gt;     a) 0                          b) O(n)  &lt;br /&gt;     c) O(logn)                          d)None.&lt;br /&gt;&lt;br /&gt;30) Quick sort’s average case Space complexity is….&lt;br /&gt;&lt;br /&gt;  a) 0                                       b) O(n)  &lt;br /&gt;  c) O(logn)                             d)None&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                                                              Answers &lt;br /&gt;1) C 2) B 3) A 4) A 5) B&lt;br /&gt;6) C 7) B 8) C 9) B 10) D&lt;br /&gt;11) C 12) D 13) A 14) B 15) A&lt;br /&gt;16) D 17) B 18) D 19) C 20) B&lt;br /&gt;21) A 22) A 23) A 24) B 25) B&lt;br /&gt;26) A 27) A 28) A 29) B 30) B&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-1525800753092042368?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/1525800753092042368/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=1525800753092042368' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/1525800753092042368'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/1525800753092042368'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2008/11/dbmsdata-base-management-system.html' title='DBMS(Data base management system)'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-3750286408258768798</id><published>2008-11-05T11:37:00.000+05:30</published><updated>2008-11-05T11:42:54.555+05:30</updated><title type='text'>Aptitude Questions</title><content type='html'>&lt;meta equiv="Content-Type" content="text/html; charset=utf-8"&gt;&lt;meta name="ProgId" content="Word.Document"&gt;&lt;meta name="Generator" content="Microsoft Word 9"&gt;&lt;meta name="Originator" content="Microsoft Word 9"&gt;&lt;link rel="File-List" href="file:///C:/DOCUME%7E1/user/LOCALS%7E1/Temp/msoclip1/03/clip_filelist.xml"&gt;&lt;title&gt;Microsoft Word - TOEFL.doc&lt;/title&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;o:documentproperties&gt;   &lt;o:author&gt;Srikrishna Karthik&lt;/o:Author&gt;   &lt;o:version&gt;9.2720&lt;/o:Version&gt;  &lt;/o:DocumentProperties&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:worddocument&gt;   &lt;w:view&gt;Normal&lt;/w:View&gt;   &lt;w:zoom&gt;0&lt;/w:Zoom&gt;   &lt;w:donotoptimizeforbrowser/&gt;  &lt;/w:WordDocument&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;style&gt; &lt;!--  /* Font Definitions */ @font-face 	{font-family:Wingdings; 	panose-1:5 0 0 0 0 0 0 0 0 0; 	mso-font-charset:2; 	mso-generic-font-family:auto; 	mso-font-pitch:variable; 	mso-font-signature:0 268435456 0 0 -2147483648 0;} @font-face 	{font-family:Verdana; 	panose-1:2 11 6 4 3 5 4 4 2 4; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:536871559 0 0 0 415 0;} @font-face 	{font-family:"Arial Unicode MS"; 	mso-font-charset:128; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1 -369098753 63 0 4129279 0;} @font-face 	{font-family:"\@Arial Unicode MS"; 	mso-font-charset:128; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1 -369098753 63 0 4129279 0;}  /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-parent:""; 	margin:0in; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:12.0pt; 	font-family:"Times New Roman"; 	mso-fareast-font-family:"Times New Roman";} p.MsoHeader, li.MsoHeader, div.MsoHeader 	{margin:0in; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	tab-stops:center 3.0in right 6.0in; 	font-size:12.0pt; 	font-family:"Times New Roman"; 	mso-fareast-font-family:"Times New Roman";} p.MsoFooter, li.MsoFooter, div.MsoFooter 	{margin:0in; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	tab-stops:center 3.0in right 6.0in; 	font-size:12.0pt; 	font-family:"Times New Roman"; 	mso-fareast-font-family:"Times New Roman";} a:link, span.MsoHyperlink 	{color:blue; 	text-decoration:underline; 	text-underline:single;} a:visited, span.MsoHyperlinkFollowed 	{color:purple; 	text-decoration:underline; 	text-underline:single;} p 	{margin-right:0in; 	mso-margin-top-alt:auto; 	mso-margin-bottom-alt:auto; 	margin-left:0in; 	mso-pagination:widow-orphan; 	font-size:12.0pt; 	font-family:"Times New Roman"; 	mso-fareast-font-family:"Times New Roman";} pre 	{margin:0in; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt; 	font-size:10.0pt; 	font-family:"Arial Unicode MS";} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 107.55pt 1.0in 1.25in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;}  /* List Definitions */ @list l0 	{mso-list-id:1384521384; 	mso-list-template-ids:-1696290638;} @list l0:level1 	{mso-level-number-format:bullet; 	mso-level-text:; 	mso-level-tab-stop:.5in; 	mso-level-number-position:left; 	text-indent:-.25in; 	mso-ansi-font-size:10.0pt; 	font-family:Symbol;} ol 	{margin-bottom:0in;} ul 	{margin-bottom:0in;} --&gt; &lt;/style&gt;  &lt;p style="text-align: center;" align="center"&gt;&lt;span style="font-size: 18pt; font-family: Verdana; color: red;"&gt;Aptitude Questions&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;1.&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;If 2x-y=4 then 6x-3y=?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(a)15&lt;br /&gt;(b)12&lt;br /&gt;(c)18&lt;br /&gt;(d)10&lt;span style="color: maroon;"&gt;&lt;br /&gt;&lt;br /&gt;Ans. (b)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;2.&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;If x=y=2z and xyz=256 then what is the value of x?&lt;br /&gt;&lt;br /&gt;(a)12&lt;br /&gt;(b)8&lt;br /&gt;(c)16&lt;br /&gt;(d)6&lt;br /&gt;&lt;span style="color: maroon;"&gt;&lt;br /&gt;Ans. (b)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;3. &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(1/10)&lt;sup&gt;18&lt;/sup&gt; - (1/10)&lt;sup&gt;20 &lt;/sup&gt;= ?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(a) 99/10&lt;sup&gt;20&lt;br /&gt;&lt;/sup&gt;(b) 99/10&lt;br /&gt;(c) 0.9&lt;br /&gt;(d) none of these&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. (a)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;4.&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Pipe A can fill in 20 minutes and Pipe B in 30 mins and Pipe C can empty the same in 40 mins.If all of them work together, find the time taken to fill the tank&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(a) 17 1/7 mins&lt;br /&gt;(b) 20 mins&lt;br /&gt;(c) 8 mins&lt;br /&gt;(d) none of these&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. (a)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;5. &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Thirty men take 20 days to complete a job working 9 hours a day.How many hour a day should 40 men work to complete the job?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(a) 8 hrs&lt;br /&gt;(b) 7 1/2 hrs&lt;br /&gt;(c) 7 hrs&lt;br /&gt;(d) 9 hrs&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. (b)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;6. &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Find the smallest number in a GP whose sum is 38 and product 1728&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(a) 12&lt;br /&gt;(b) 20&lt;br /&gt;(c) 8&lt;br /&gt;(d) none of these&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. (c)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;7. &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;A boat travels 20 kms upstream in 6 hrs and 18 kms downstream in 4 hrs.Find the speed of the boat in still water and the speed of the water current?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(a) 1/2 kmph&lt;br /&gt;(b) 7/12 kmph&lt;br /&gt;(c) 5 kmph&lt;br /&gt;(d) none of these&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. (b)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;8. &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;A goat is tied to one corner of a square plot of side 12m by a rope 7m long.Find the area it can graze?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(a) 38.5 sq.m&lt;br /&gt;(b) 155 sq.m&lt;br /&gt;(c) 144 sq.m&lt;br /&gt;(d) 19.25 sq.m&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. (a)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;9.&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; Mr. Shah decided to walk down the escalator of a tube station. He found   that if he walks down 26 steps, he requires 30 seconds to reach the bottom. However, if he steps down 34 stairs he would only require 18 seconds to get to the bottom. If the time is measured from the moment the top step begins   to descend to the time he steps off the last step at the bottom, find out the height of the stair way in steps?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans.46 steps.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;10. &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;The average age of 10 members of a committee is the same as it was 4 years ago, because an old member has been replaced by a young member. Find how much younger is the new member ?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans.40 years.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;11. &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Three containers A, B and C have volumes a, b, and c respectively; and container A is full of water while the other two are empty. If from container A water is poured into container B which becomes 1/3 full, and into container C which becomes 1/2 full, how much water is left in container A?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;12. ABCE is an isosceles trapezoid and ACDE is a rectangle. AB = 10 and EC = 20. What is the length of AE?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. AE = 10.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;13.&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; In the given figure, PA and PB are tangents to the circle at A and B respectively and   the chord BC is parallel to tangent PA. If AC = 6 cm, and length of the tangent AP   is 9 cm, then what is the length of the chord BC?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. BC = 4 cm.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;15&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; Three cards are drawn at random from an ordinary pack of cards. Find the probability that they will consist of a king, a queen and an ace.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. 64/2210.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;16.&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; A number of cats got together and decided to kill between them 999919   mice. Every cat killed an equal number of mice. Each cat killed more mice   than there were cats. How many cats do you think there were ?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. 991.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;17.&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; If Log2 x - 5 Log x + 6 = 0, then what would the value / values of x be? &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. x = e2 or e3.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;18.&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; The square of a two digit number is divided by half the number. After   36 is added to the quotient, this sum is then divided by 2. The digits of the resulting number are the same as those in the original number, but they   are in reverse order. The ten's place of the original number is equal to twice   the difference between its digits. What is the number?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. 46&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;19.&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Can you tender a one rupee note in such a manner that there shall be   total 50 coins but none of them would be 2 paise coins.?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. 45 one paisa coins, 2 five paise coins, 2 ten paise coins, and 1 twenty-five paise coins.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;20.&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;A monkey starts climbing up a tree 20ft. tall. Each hour, it hops 3ft. and slips back 2ft. How much time would it take the monkey to reach the top?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans.18 hours.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;21.&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; What is the missing number in this series?   8 2 14 6 11 ? 14 6 18 12&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. 9&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;22. &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;A certain type of mixture is prepared by mixing brand A at Rs.9 a kg. with brand B at Rs.4 a kg. If the mixture is worth Rs.7 a kg., how many   kgs. of brand A are needed to make 40kgs. of the mixture?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. Brand A needed is 24kgs.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;23. &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;A wizard named Nepo says "I am only three times my son's age. My father   is 40 years more than twice my age. Together the three of us are a mere 1240   years old." How old is Nepo?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. 360 years old.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;24. &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;One dog tells the other that there are two dogs in front of me. The other one also shouts that he too had two behind him. How many are they?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. Three.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;25.&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; A man ate 100 bananas in five days, each day eating 6 more than the previous day. How many bananas did he eat on the first day?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. Eight.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;26. &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;If it takes five minutes to boil one egg, how long will it take to boil four eggs? &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. Five minutes. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;27.&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; The minute hand of a clock overtakes the hour hand at intervals of 64   minutes of correct time. How much a day does the clock gain or lose?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. 32 8/11 minutes.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;28.&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; Solve for x and y:   1/x - 1/y = 1/3, 1/x2 + 1/y2 = 5/9.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. x = 3/2 or -3 and y = 3 or -3/2.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;29.&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; Daal is now being sold at Rs. 20 a kg. During last month its rate was Rs. 16 per kg. By how much percent should a family reduce its consumption so   as to keep the expenditure fixed? &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. 20 %.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;30.&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; Find the least value of 3x + 4y if x2y3 = 6. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. 10.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;31.&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; Can you find out what day of the week was January 12, 1979?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. Friday.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;32.&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; A garrison of 3300 men has provisions for 32 days, when given at a rate of 850 grams per head. At the end of 7 days a reinforcement arrives and it was found that now the provisions will last 8 days less, when given at the rate of 825 grams per head. How, many more men can it feed?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. 1700 men.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;33.&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; From 5 different green balls, four different blue balls and three   different red balls, how many combinations of balls can be chosen taking at least   one green and one blue ball?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. 3720.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;34.&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; Three pipes, A, B, &amp;amp; C are attached to a tank. A &amp;amp; B can fill it in 20   &amp;amp; 30 minutes respectively while C can empty it in 15 minutes. If A, B &amp;amp; C   are kept open successively for 1 minute each, how soon will the tank be filled?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. 167 minutes.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;35. &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;A person walking 5/6 of his usual rate is 40 minutes late. What is his usual time? &lt;span style="color: maroon;"&gt;Ans. 3 hours 20 minutes.&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;36.For a motorist there are three ways going from City A to City C. By way of bridge the distance is 20 miles and toll is $0.75. A tunnel between the two cities is a distance of 10 miles and toll is $1.00 for the vehicle and driver and $0.10 for each passenger. A two-lane highway without toll goes east for 30 miles to city B and then 20 miles in a northwest direction to City C.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;1. Which is the shortest route from B to C&lt;br /&gt;&lt;br /&gt;(a) Directly on toll free highway to City C&lt;br /&gt;(b) The bridge&lt;br /&gt;(c) The Tunnel&lt;br /&gt;(d) The bridge or the tunnel&lt;br /&gt;(e) The bridge only if traffic is heavy on the toll free highway&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;2. The most economical way of going from City A to City B, in terms of toll and distance is to use the&lt;br /&gt;&lt;br /&gt;(a) tunnel&lt;br /&gt;(b) bridge&lt;br /&gt;(c) bridge or tunnel&lt;br /&gt;(d) toll free highway&lt;br /&gt;(e) bridge and highway&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;3. Jim usually drives alone from City C to City A every working day. His firm deducts a percentage of employee pay for lateness. Which factor would most influence his choice of the bridge or the tunnel ?&lt;br /&gt;&lt;br /&gt;(a) Whether his wife goes with him&lt;br /&gt;(b) scenic beauty on the route&lt;br /&gt;(c) Traffic conditions on the road, bridge and tunnel&lt;br /&gt;(d) saving $0.25 in tolls&lt;br /&gt;(e) price of gasoline consumed in covering additional 10 miles on the bridge&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;4. In choosing between the use of the bridge and the tunnel the chief factor(s) would be:&lt;br /&gt;I. Traffic and road conditions&lt;br /&gt;II. Number of passengers in the car&lt;br /&gt;III. Location of one's homes in the center or outskirts of one of the cities&lt;br /&gt;IV. Desire to save $0.25&lt;br /&gt;&lt;br /&gt;(a) I only&lt;br /&gt;(b) II only&lt;br /&gt;(c) II and III only&lt;br /&gt;(d) III and IV only&lt;br /&gt;(e) I and II only&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;37.The letters A, B, C, D, E, F and G, not necessarily in that order, stand for seven consecutive integers from 1 to 10&lt;br /&gt;D is 3 less than A&lt;br /&gt;B is the middle term&lt;br /&gt;F is as much less than B as C is greater than D&lt;br /&gt;G is greater than F&lt;br /&gt;&lt;br /&gt;1. The fifth integer is&lt;br /&gt;(a) A&lt;br /&gt;(b) C&lt;br /&gt;(c) D&lt;br /&gt;(d) E&lt;br /&gt;(e) F&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;2. A is as much greater than F as which integer is less than G&lt;br /&gt;(a) A&lt;br /&gt;(b) B&lt;br /&gt;(c) C&lt;br /&gt;(d) D&lt;br /&gt;(e) E&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;3. If A = 7, the sum of E and G is&lt;br /&gt;(a) 8&lt;br /&gt;(b) 10&lt;br /&gt;(c) 12&lt;br /&gt;(d) 14&lt;br /&gt;(e) 16&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;4. A - F = ?&lt;br /&gt;(a) 1&lt;br /&gt;(b) 2&lt;br /&gt;(c) 3&lt;br /&gt;(d) 4&lt;br /&gt;(e) Cannot be determined&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;5. An integer T is as much greater than C as C is greater than E. T can be written as A + E. What is D?&lt;br /&gt;(a) 2&lt;br /&gt;(b) 3&lt;br /&gt;(c) 4&lt;br /&gt;(d) 5&lt;br /&gt;(e) Cannot be determined&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;6. The greatest possible value of C is how much greater than the smallest possible value of D?&lt;br /&gt;(a) 2&lt;br /&gt;(b) 3&lt;br /&gt;(c) 4&lt;br /&gt;(d) 5&lt;br /&gt;(e) 6&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;38.&lt;br /&gt;1. All G's are H's&lt;br /&gt;2. All G's are J's or K's&lt;br /&gt;3. All J's and K's are G's&lt;br /&gt;4. All L's are K's&lt;br /&gt;5. All N's are M's&lt;br /&gt;6. No M's are G's&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;1. If no P's are K's, which of the following must be true?&lt;br /&gt;&lt;br /&gt;(a) All P's are J's&lt;br /&gt;(b) No P is a G&lt;br /&gt;(c) No P is an H&lt;br /&gt;(d) If any P is an H it is a G&lt;br /&gt;(e) If any P is a G it is a J&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;2. Which of the following can be logically deduced from the conditions stated?&lt;br /&gt;&lt;br /&gt;(a) No M's are H's&lt;br /&gt;(b) No M's that are not N's are H's&lt;br /&gt;(c) No H's are M's&lt;br /&gt;(d) Some M's are H's&lt;br /&gt;(e) All M's are H's&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;3. Which of the following is inconsistent with one or more of the conditions?&lt;br /&gt;&lt;br /&gt;(a) All H's are G's&lt;br /&gt;(b) All H's that are not G's are M's&lt;br /&gt;(c) Some H's are both M's and G's&lt;br /&gt;(d) No M's are H's&lt;br /&gt;(e) All M's are H's&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;4. The statement "No L's are J's" is&lt;br /&gt;I. Logically deducible from the conditions stated&lt;br /&gt;II. Consistent with but not deducible from the conditions stated&lt;br /&gt;III. Deducible from the stated conditions together with the additional statement "No J's are K's"&lt;br /&gt;&lt;br /&gt;(a) I only&lt;br /&gt;(b) II only&lt;br /&gt;(c) III only&lt;br /&gt;(d) II and III only&lt;br /&gt;(e) Neither I, II nor III&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;39.In country X, democratic, conservative and justice parties have fought three civil wars in twenty years. TO restore stability an agreement is reached to rotate the top offices President, Prime Minister and Army Chief among the parties so that each party controls one and only one office at all times. The three top office holders must each have two deputies, one from each of the other parties. Each deputy must choose a staff composed of equally members of his or her chiefs party and member of the third party.&lt;br /&gt;&lt;br /&gt; &lt;!--[if !supportLineBreakNewLine]--&gt;&lt;br /&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;1. When Justice party holds one of the top offices, which of the following cannot be true&lt;br /&gt;&lt;br /&gt;(a) Some of the staff members within that office are justice party members&lt;br /&gt;(b) Some of the staff members within that office are democratic party members&lt;br /&gt;(c) Two of the deputies within the other offices are justice party members&lt;br /&gt;(d) Two of the deputies within the other offices are conservative party members&lt;br /&gt;(e) Some of the staff members within the other offices are justice party members.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;2. When the democratic party holds presidency, the staff of the prime minister's deputies are composed&lt;br /&gt;I. One-fourth of democratic party members&lt;br /&gt;II. One-half of justice party members and one-fourth of conservative party members&lt;br /&gt;III. One-half of conservative party members and one-fourth of justice party members.&lt;br /&gt;&lt;br /&gt;(a) I only&lt;br /&gt;(b) I and II only&lt;br /&gt;(c) II or III but not both&lt;br /&gt;(d) I and II or I and III&lt;br /&gt;(e) None of these&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;3. Which of the following is allowable under the rules as stated:&lt;br /&gt;&lt;br /&gt;(a) More than half of the staff within a given office belonging to a single party&lt;br /&gt;(b) Half of the staff within a given office belonging to a single party&lt;br /&gt;(c) Any person having a member of the same party as his or her immediate superior&lt;br /&gt;(d) Half the total number of staff members in all three offices belonging to a single party&lt;br /&gt;(e) Half the staff members in a given office belonging to parties different from the party of the top office holder in that office.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;4. The office of the Army Chief passes from Conservative to Justice party. Which of the following must be fired.&lt;br /&gt;&lt;br /&gt;(a) The democratic deputy and all staff members belonging to Justice party&lt;br /&gt;(b) Justice party deputy and all his or hers staff members&lt;br /&gt;(c) Justice party deputy and half of his Conservative staff members in the chief of staff office&lt;br /&gt;(d) The Conservative deputy and all of his or her staff members belonging to Conservative party&lt;br /&gt;(e) No deputies and all staff members belonging to conservative parties.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;40.In recommendations to the board of trustees a tuition increase of $500 per year, the president of the university said "There were no student demonstrations over the previous increases of $300 last year and $200 the year before". If the president's statement is accurate then which of the following can be validly inferred from the information given:&lt;br /&gt;I. Most students in previous years felt that the increases were justified because of increased operating costs.&lt;br /&gt;II. Student apathy was responsible for the failure of students to protest the previous tuition increases.&lt;br /&gt;III. Students are not likely to demonstrate over new tuition increases.&lt;br /&gt;&lt;br /&gt;(a) I only&lt;br /&gt;(b) II only&lt;br /&gt;(c) I or II but not both&lt;br /&gt;(d) I, II and III&lt;br /&gt;(e) None&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 0, 64);"&gt;Ans. (a)&lt;br /&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;em&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;41. The office staff of XYZ corporation presently consists of three bookeepers--A, B, C and 5 secretaries D, E, F, G, H. The management is planning to open a new office in another city using 2 bookeepers and 3 secretaries of the present staff . To do so they plan to seperate certain individuals who don't function well together. The following guidelines were established to set up the new office&lt;/span&gt;&lt;/em&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;I. Bookeepers A and C are constantly finding fault with one another and should not be sent together to the new office as a team&lt;br /&gt;II. C and E function well alone but not as a team , they should be seperated&lt;br /&gt;III. D and G have not been on speaking terms and shouldn't go together&lt;br /&gt;IV Since D and F have been competing for promotion they shouldn't be a team&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;1.If A is to be moved as one of the bookeepers,which of the following cannot be a possible working unit.&lt;br /&gt;&lt;br /&gt;A.ABDEH&lt;br /&gt;B.ABDGH&lt;br /&gt;C.ABEFH&lt;br /&gt;D.ABEGH&lt;br /&gt;&lt;br /&gt;&lt;span style="color: maroon;"&gt;Ans.B&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; &lt;!--[if !supportLineBreakNewLine]--&gt;&lt;br /&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;2.If C and F are moved to the new office,how many combinations are possible&lt;br /&gt;&lt;br /&gt;A.1&lt;br /&gt;B.2&lt;br /&gt;C.3&lt;br /&gt;D.4&lt;br /&gt;&lt;br /&gt;&lt;span style="color: maroon;"&gt;Ans.A&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;3.If C is sent to the new office,which member of the staff cannot go with C&lt;br /&gt;&lt;br /&gt;A.B&lt;br /&gt;B.D&lt;br /&gt;C.F&lt;br /&gt;D.G&lt;br /&gt;&lt;br /&gt;&lt;span style="color: maroon;"&gt;Ans.B&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;4.Under the guidelines developed,which of the following must go to the new office&lt;br /&gt;&lt;br /&gt;A.B&lt;br /&gt;B.D&lt;br /&gt;C.E&lt;br /&gt;D.G&lt;br /&gt;&lt;br /&gt;&lt;span style="color: maroon;"&gt;Ans.A&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;5.If D goes to the new office,which of the following is/are true&lt;br /&gt;&lt;br /&gt;I.C cannot go&lt;br /&gt;II.A cannot go&lt;br /&gt;III.H must also go&lt;br /&gt;&lt;br /&gt;A.I only&lt;br /&gt;B.II only&lt;br /&gt;C.I and II only&lt;br /&gt;D.I and III only&lt;br /&gt;&lt;br /&gt;&lt;span style="color: maroon;"&gt;Ans.D&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;4&lt;em&gt;2.After months of talent searching for an administrative assistant to the president of the college the field of applicants has been narrowed down to 5--A, B, C, D, E .It was announced that the finalist would be chosen after a series of all-day group personal interviews were held.The examining committee agreed upon the following procedure&lt;/em&gt;&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;br /&gt;I.The interviews will be held once a week&lt;br /&gt;II.3 candidates will appear at any all-day interview session&lt;br /&gt;III.Each candidate will appear at least once&lt;br /&gt;IV.If it becomes necessary to call applicants for additonal interviews, no more 1 such applicant should be asked to appear the next week&lt;br /&gt;V.Because of a detail in the written applications,it was agreed that whenever candidate B appears, A should also be present.&lt;br /&gt;VI.Because of travel difficulties it was agreed that C will appear for only 1 interview.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;1.At the first interview the following candidates appear A,B,D.Which of the follwing combinations can be called for the interview to be held next week.&lt;br /&gt;&lt;br /&gt;A.BCD&lt;br /&gt;B.CDE&lt;br /&gt;C.ABE&lt;br /&gt;D.ABC&lt;br /&gt;&lt;br /&gt;&lt;span style="color: maroon;"&gt;Ans.B&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2.Which of the following is a possible sequence of combinations for interviews in 2 successive weeks&lt;br /&gt;&lt;br /&gt;A.ABC;BDE&lt;br /&gt;B.ABD;ABE&lt;br /&gt;C.ADE;ABC&lt;br /&gt;D.BDE;ACD&lt;br /&gt;&lt;br /&gt;&lt;span style="color: maroon;"&gt;Ans.C&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;3.If A ,B and D appear for the interview and D is called for additional interview the following week,which 2 candidates may be asked to appear with D?&lt;br /&gt;&lt;br /&gt;I. A&lt;br /&gt;II B&lt;br /&gt;III.C&lt;br /&gt;IV.E&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;A.I and II&lt;br /&gt;B.I and III only&lt;br /&gt;C.II and III only&lt;br /&gt;D.III and IV only&lt;br /&gt;&lt;br /&gt;&lt;span style="color: maroon;"&gt;Ans.D&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;4.Which of the following correctly state(s) the procedure followed by the search committee&lt;br /&gt;&lt;br /&gt;I.After the second interview all applicants have appeared at least once&lt;br /&gt;II.The committee sees each applicant a second time&lt;br /&gt;III.If a third session,it is possible for all applicants to appear at least twice&lt;br /&gt;&lt;br /&gt;A.I only&lt;br /&gt;B.II only&lt;br /&gt;C.III only&lt;br /&gt;D.Both I and II&lt;br /&gt;&lt;br /&gt;&lt;span style="color: maroon;"&gt;Ans.A&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;43&lt;em&gt;. A certain city is served by subway lines A,B and C and numbers 1 2 and 3&lt;/em&gt;&lt;br /&gt;&lt;em&gt;When it snows , morning service on B is delayed&lt;/em&gt;&lt;i&gt;&lt;br /&gt;&lt;em&gt;When it rains or snows , service on A, 2 and 3 are delayed both in the morning and afternoon &lt;/em&gt;&lt;br /&gt;&lt;em&gt;When temp. falls below 30 degrees farenheit afternoon service is cancelled in either the A line or the 3 line,&lt;/em&gt;&lt;br /&gt;&lt;em&gt;but not both.&lt;/em&gt;&lt;br /&gt;&lt;em&gt;When the temperature rises over 90 degrees farenheit, the afternoon service is cancelled in either the line C or the&lt;/em&gt;&lt;br /&gt;&lt;em&gt;3 line but not both.&lt;/em&gt;&lt;br /&gt;&lt;em&gt;When the service on the A line is delayed or cancelled, service on the C line which connects the A line, is delayed.&lt;/em&gt;&lt;br /&gt;&lt;em&gt;When service on the 3 line is cancelled, service on the B line which connects the 3 line is delayed.&lt;/em&gt;&lt;/i&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Q1.  On Jan 10th, with the temperature at 15 degree farenheit, it snows all day. On how many lines will service be&lt;br /&gt;       affected, including both morning and afternoon.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(A) 2&lt;br /&gt;(B) 3&lt;br /&gt;(C) 4&lt;br /&gt;(D) 5 &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. D&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;br /&gt;Q2. On Aug 15th with the temperature at 97 degrees farenheit it begins to rain at 1 PM. What is the minimum number&lt;br /&gt;      of  lines on which service will be affected?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(A) 2&lt;br /&gt;(B) 3&lt;br /&gt;(C) 4&lt;br /&gt;(D) 5 &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. C&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;br /&gt;Q3. On which of the following occasions would service be on the greatest number of lines disrupted.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(A) A snowy afternoon with the temperature at 45 degree farenheit&lt;br /&gt;(B) A snowy morning with the temperature at 45 degree farenheit&lt;br /&gt;(C) A rainy afternoon with the temperature at 45 degree farenheit&lt;br /&gt;(D) A rainy afternoon with the temperature at 95 degree farenheit&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. B&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;br /&gt;4&lt;em&gt;&lt;span style="font-style: normal;"&gt;4. In a certain society, there are two marriage groups, red and brown. No marriage is permitted within a group. On marriage, males become part of their wives groups; women remain in their own group. Children belong to the same group as their parents. Widowers and divorced males revert to the group of their birth. Marriage to more than one person at the same time and marriage to a direct descendant are forbidden&lt;/span&gt;&lt;/em&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;Q1. A brown female could have had&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;I. A grandfather born Red&lt;br /&gt;II. A grandmother born Red&lt;br /&gt;III Two grandfathers born Brown&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(A) I only&lt;br /&gt;(B) III only&lt;br /&gt;(C) I, II and III&lt;br /&gt;(D) I and II only&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. D&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;br /&gt;Q2. A male born into the brown group may have &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(A) An uncle in either group&lt;br /&gt;(B) A brown daughter&lt;br /&gt;(C) A brown son&lt;br /&gt;(D) A son-in-law born into red group &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. A&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;br /&gt;Q3. Which of the following is not permitted under the rules as stated.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(A) A brown male marrying his father's sister&lt;br /&gt;(B) A red female marrying her mother's brother&lt;br /&gt;(C) A widower marrying his wife's sister&lt;br /&gt;(D) A widow marrying her divorced daughter's ex-husband &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. B&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;br /&gt;Q4. If widowers and divorced males retained their group they had upon marrying which of the following would be permissible ( Assume that no previous marriage occurred)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(A) A woman marrying her dead sister's husband&lt;br /&gt;(B) A woman marrying her divorced daughter's ex-husband&lt;br /&gt;(C) A widower marrying his brother's daughter&lt;br /&gt;(D) A woman marrying her mother's brother who is a widower.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans. D &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;br /&gt;&lt;em&gt;&lt;span style="font-style: normal;"&gt;Q5. I. All G's are H's&lt;/span&gt;&lt;/em&gt;&lt;br /&gt;&lt;em&gt;&lt;span style="font-style: normal;"&gt;II. All G's are J's or K's&lt;/span&gt;&lt;/em&gt;&lt;br /&gt;&lt;em&gt;&lt;span style="font-style: normal;"&gt;III All J's and K's are G's&lt;/span&gt;&lt;/em&gt;&lt;br /&gt;&lt;em&gt;&lt;span style="font-style: normal;"&gt;IV All L's are K's&lt;/span&gt;&lt;/em&gt;&lt;br /&gt;&lt;em&gt;&lt;span style="font-style: normal;"&gt;V All N's are M's&lt;/span&gt;&lt;/em&gt;&lt;br /&gt;&lt;em&gt;&lt;span style="font-style: normal;"&gt;VI No M's are G's&lt;/span&gt;&lt;/em&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;45. There are six steps that lead from the first to the second floor. No two people can be on the same step&lt;br /&gt;Mr. A is two steps below Mr. C&lt;br /&gt;Mr. B is a step next to Mr. D&lt;br /&gt;Only one step is vacant ( No one standing on that step )&lt;br /&gt;Denote the first step by step 1 and second step by step 2 etc. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;1. If Mr. A is on the first step, Which of the following is true?&lt;br /&gt;(a) Mr. B is on the second step&lt;br /&gt;(b) Mr. C is on the fourth step.&lt;br /&gt;(c) A person Mr. E, could be on the third step&lt;br /&gt;(d) Mr. D is on higher step than Mr. C. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: (d)&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;2. If Mr. E was on the third step &amp;amp; Mr. B was on a higher step than Mr. E which step must be vacant&lt;br /&gt;(a) step 1&lt;br /&gt;(b) step 2&lt;br /&gt;(c) step 4&lt;br /&gt;(d) step 5&lt;br /&gt;(e) step 6 &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: (a)&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;3. If Mr. B was on step 1, which step could A be on?&lt;br /&gt;(a) 2&amp;amp;e only&lt;br /&gt;(b) 3&amp;amp;5 only&lt;br /&gt;(c) 3&amp;amp;4 only&lt;br /&gt;(d) 4&amp;amp;5 only&lt;br /&gt;(e) 2&amp;amp;4 only &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: (c)&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;4. If there were two steps between the step that A was standing and the step that B was standing on, and A was on a higher step than D , A must be on step &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(a) 2&lt;br /&gt;(b) 3&lt;br /&gt;(c) 4&lt;br /&gt;(d) 5&lt;br /&gt;(e) 6  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: (c)&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;br /&gt;5. Which of the following is false&lt;br /&gt;&lt;br /&gt;i. B&amp;amp;D can be both on odd-numbered steps in one configuration&lt;br /&gt;ii. In a particular configuration A and C must either both an odd numbered steps or both an even-numbered steps&lt;br /&gt;iii. A person E can be on a step next to the vacant step. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;(a) i only&lt;br /&gt;(b) ii only&lt;br /&gt;(c) iii only&lt;br /&gt;(d) both i and iii&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: (c) &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;46. Six swimmers A, B, C, D, E, F compete in a race. The outcome is as follows.&lt;br /&gt;i. B does not win.&lt;br /&gt;ii. Only two swimmers separate E &amp;amp; D&lt;br /&gt;iii. A is behind D &amp;amp; E&lt;br /&gt;iv. B is ahead of E , with one swimmer intervening&lt;br /&gt;v. F is a head of D &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;1. Who stood fifth in the race ?&lt;br /&gt;(a) A&lt;br /&gt;(b) B&lt;br /&gt;(c) C&lt;br /&gt;(d) D&lt;br /&gt;(e) E &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: (e) &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;2. How many swimmers seperate A and F ?&lt;br /&gt;(a) 1&lt;br /&gt;(b) 2&lt;br /&gt;(c) 3&lt;br /&gt;(d) 4&lt;br /&gt;(e) cannot be determined &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: (d)&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;3. The swimmer between C &amp;amp; E is&lt;br /&gt;(a) none&lt;br /&gt;(b) F&lt;br /&gt;(c) D&lt;br /&gt;(d) B&lt;br /&gt;(e) A  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: (a)&lt;br /&gt;&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;br /&gt;&lt;br /&gt;4. If the end of the race, swimmer D is disqualified by the Judges then swimmer B finishes in which place&lt;br /&gt;(a) 1&lt;br /&gt;(b) 2&lt;br /&gt;(c) 3&lt;br /&gt;(d) 4&lt;br /&gt;(e) 5  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: (b) &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;47. Five houses lettered A,B,C,D, &amp;amp; E are built in a row next to each other. The houses are lined up in the order A,B,C,D, &amp;amp; E. Each of the five houses has a colored chimney. The roof and chimney of each housemust be painted as follows.&lt;br /&gt;i. The roof must be painted either green,red ,or yellow.&lt;br /&gt;ii. The chimney must be painted either white, black, or red.&lt;br /&gt;iii. No house may have the same color chimney as the color of roof.&lt;br /&gt;iv. No house may use any of the same colors that the every next house uses.&lt;br /&gt;v. House E has a green roof.&lt;br /&gt;vi. House B has a red roof and a black chimney &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;1. Which of the following is true ?&lt;br /&gt;(a) At least two houses have black chimney.&lt;br /&gt;(b) At least two houses have red roofs.&lt;br /&gt;(c) At least two houses have white chimneys&lt;br /&gt;(d) At least two houses have green roofs&lt;br /&gt;(e) At least two houses have yellow roofs &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: (c) &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;2. Which must be false ?&lt;br /&gt;(a) House A has a yellow roof&lt;br /&gt;(b) House A &amp;amp; C have different color chimney&lt;br /&gt;(c) House D has a black chimney&lt;br /&gt;(d) House E has a white chimney&lt;br /&gt;(e) House B&amp;amp;D have the same color roof. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: (b) &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;3. If house C has a yellow roof. Which must be true.&lt;br /&gt;(a) House E has a white chimney&lt;br /&gt;(b) House E has a black chimney&lt;br /&gt;(c) House E has a red chimney&lt;br /&gt;(d) House D has a red chimney&lt;br /&gt;(e) House C has a black chimney &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: (a) &lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;4. Which possible combinations of roof &amp;amp; chimney can house&lt;br /&gt;I. A red roof 7 a black chimney&lt;br /&gt;II. A yellow roof &amp;amp; a red chimney&lt;br /&gt;III. A yellow roof &amp;amp; a black chimney&lt;br /&gt;&lt;br /&gt;(a) I only&lt;br /&gt;(b) II only&lt;br /&gt;(c) III only&lt;br /&gt;(d) I &amp;amp; II only&lt;br /&gt;(e) I&amp;amp;II&amp;amp;III &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: (e)&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;48. Find x+2y&lt;br /&gt;(i). x+y=10&lt;br /&gt;(ii). 2x+4y=20&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: (b)&lt;br /&gt;&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;br /&gt;&lt;br /&gt;49. Is angle BAC is a right angle&lt;br /&gt;(i) AB=2BC&lt;br /&gt;(2) BC=1.5AC&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: (e)&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;50. Is x greater than y&lt;br /&gt;(i) x=2k&lt;br /&gt;(ii) k=2y &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;span style="font-size: 10pt; font-family: Verdana; color: maroon;"&gt;Ans: (e)&lt;/span&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 10pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-3750286408258768798?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/3750286408258768798/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=3750286408258768798' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/3750286408258768798'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/3750286408258768798'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2008/11/aptitude-questions_05.html' title='Aptitude Questions'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-8596814119236402215</id><published>2008-11-05T10:06:00.002+05:30</published><updated>2008-11-05T10:13:13.919+05:30</updated><title type='text'>Dell Desktop Interview Question</title><content type='html'>&lt;meta equiv="Content-Type" content="text/html; charset=utf-8"&gt;&lt;meta name="ProgId" content="Word.Document"&gt;&lt;meta name="Generator" content="Microsoft Word 9"&gt;&lt;meta name="Originator" content="Microsoft Word 9"&gt;&lt;link rel="File-List" href="file:///C:/DOCUME%7E1/user/LOCALS%7E1/Temp/msoclip1/01/clip_filelist.xml"&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:worddocument&gt;   &lt;w:view&gt;Normal&lt;/w:View&gt;   &lt;w:zoom&gt;0&lt;/w:Zoom&gt;   &lt;w:donotoptimizeforbrowser/&gt;  &lt;/w:WordDocument&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;style&gt; &lt;!--  /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-parent:""; 	margin:0in; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:12.0pt; 	font-family:"Times New Roman"; 	mso-fareast-font-family:"Times New Roman";} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.25in 1.0in 1.25in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --&gt; &lt;/style&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;1) How many logical drives is it possible to fit into a physical disk?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) 24 Drives&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;br /&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;2) What is maximum hard disk size for FAT 16 based Windows system?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) 2 GB&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;br /&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;3) What is the speed and device maximum specs for fire wire?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) IEEE 1394 (Fire Wire) support the maximum of 63 connected devices with speed&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;up to 400 Mbps&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;4) Where MBR is located on the disk?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) Master (main) Boot Record is located in sector 0, track 0, head 0, cylinder 0 of the&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;primary partition.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;5) What is difference between L1 and L2 Cache?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) L1 is internal to the chip and L2 is external.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;L1 Cache store information for use by the processor.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;L1 Cache is extremely quick but also expensive.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;L1 Cache divided into space for data and space for instruction.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;L2 Cache is the next step down from L1 cache&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;Most processor has L2 Cache which increases Cache performance.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;Most desktop have an L2 Cache of about 256 Kb.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;Some high end processors have as much as 2 Mb.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;6) Name the processor lines of two major manufactures?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) 1) High End&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;INTEL: Pentium (2&lt;/span&gt;&lt;span style="font-size: 8pt; color: black;"&gt;nd &lt;/span&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;3&lt;/span&gt;&lt;span style="font-size: 8pt; color: black;"&gt;rd &lt;/span&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;4)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;AMD: Athlon&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;2) Low End:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;INTEL: Celeron, Itanium&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;AMD: Duron, 64bit, Opteron&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;7) Where the real mode on the CPU comes?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) The original 8086, which only had 1 MB of memory, these Mega bytes is split into&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;low memory and high memory.&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;br /&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;meta equiv="Content-Type" content="text/html; charset=utf-8"&gt;&lt;meta name="ProgId" content="Word.Document"&gt;&lt;meta name="Generator" content="Microsoft Word 9"&gt;&lt;meta name="Originator" content="Microsoft Word 9"&gt;&lt;link rel="File-List" href="file:///C:/DOCUME%7E1/user/LOCALS%7E1/Temp/msoclip1/01/clip_filelist.xml"&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:worddocument&gt;   &lt;w:view&gt;Normal&lt;/w:View&gt;   &lt;w:zoom&gt;0&lt;/w:Zoom&gt;   &lt;w:donotoptimizeforbrowser/&gt;  &lt;/w:WordDocument&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;style&gt; &lt;!--  /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-parent:""; 	margin:0in; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:12.0pt; 	font-family:"Times New Roman"; 	mso-fareast-font-family:"Times New Roman";} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.25in 1.0in 1.25in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --&gt; &lt;/style&gt;  &lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;8) How does you clear CMOS password?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) Since CMOS is special chips with its own battery, the best way to clear out CMOS&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;chip is to disconnect it from its power supply. Or remove the CMOS battery for 5&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;minutes.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;Another method to remove CMOS password is by changing jumper from pin 1,2 to&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;2,3 and then switch on computer for 20 seconds and again change jumper setting to&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;default 1,2&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;br /&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;9) Explain the three way hand shaking of IP?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) 1) 1&lt;/span&gt;&lt;span style="font-size: 8pt; color: black;"&gt;st &lt;/span&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;the computer send HELLO packet with the source and destination MAC&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;address.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;2) The 2&lt;/span&gt;&lt;span style="font-size: 8pt; color: black;"&gt;nd &lt;/span&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;computer send acknowledgement by ARP (Address Resolution&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;Protocol) with the packet adding with source IP address.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;3) The 3 rd way is the 1&lt;/span&gt;&lt;span style="font-size: 8pt; color: black;"&gt;st &lt;/span&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;system send acknowledgement with the own IP address.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;10) What do you understand by IPSEC?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) It create a secure connection between source to destination machine (machine)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;11) Expand (Write the full form of following)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) SMTP: Simple Mail Transfer Protocol&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;POP3: Post Office Protocol version 3&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;IMAP: Internet Messaging Authentication Protocol&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;NNTP: Network News Transfer Protocol&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;12) What is the difference between Windows XP professional and Windows 2000&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;professional?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A)&lt;span style="color: rgb(51, 0, 0);"&gt; &lt;span style="font-weight: bold;"&gt;XP&lt;/span&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt; &lt;/span&gt;&lt;span style="color: rgb(51, 0, 153); font-weight: bold;"&gt;2000&lt;/span&gt;&lt;o:p style="color: rgb(51, 0, 153);"&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;1) Firewall 1) No Firewall&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;2) Start menu and Start menu Classic 2) Only start menu Classic&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;3) System Restore 3) Not available&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;4) ASR backup 4) Emergency Disk&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;5) Switch user 5) Not available&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;13) What is difference between Windows XP Home and Windows XP Professional?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) HOME:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;1) Does not support NTFS.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;2) Disk quota not available&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;3) Permissions are not available&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;4) Dynamic disk is not available&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;5) No firewall&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;14) What are four flavors of Windows XP operating system?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) 1) Home Edition&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;2) Media Center Edition&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;3) Professional Edition&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;4) 64 bit Edition&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;meta equiv="Content-Type" content="text/html; charset=utf-8"&gt;&lt;meta name="ProgId" content="Word.Document"&gt;&lt;meta name="Generator" content="Microsoft Word 9"&gt;&lt;meta name="Originator" content="Microsoft Word 9"&gt;&lt;link rel="File-List" href="file:///C:/DOCUME%7E1/user/LOCALS%7E1/Temp/msoclip1/01/clip_filelist.xml"&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:worddocument&gt;   &lt;w:view&gt;Normal&lt;/w:View&gt;   &lt;w:zoom&gt;0&lt;/w:Zoom&gt;   &lt;w:donotoptimizeforbrowser/&gt;  &lt;/w:WordDocument&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;style&gt; &lt;!--  /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-parent:""; 	margin:0in; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:12.0pt; 	font-family:"Times New Roman"; 	mso-fareast-font-family:"Times New Roman";} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.25in 1.0in 1.25in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --&gt; &lt;/style&gt;  &lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;15) What are four installation methods of Windows XP?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) 1) Attended Method&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;2) Unattended Method&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;3) Remote installation Server method (RIS)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;4) System Preparation (Sys Prip)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;16) What are minimum requirement for Windows XP installation?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) Processor speed 330 MHz&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;RAM: minimum 128 Mb&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;: Microsoft Recommended 256 Mb&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;Hard Disk Space: minimum 2 GB&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;: Microsoft recommended 3.5 to 4 GB&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;Display: VGA (Video Graphic Array) (640*480)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;CD ROM /W&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;Keyboard&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;Mouse&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;17) What are the three types of BASIC disk partition?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) 1) Primary Partition&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;2) Extended Partition&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;3) Logical Drives&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;18) Explain FAT 16 file system?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) FAT stand for File Allocation Table&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;Cluster Size 16 bits&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;Maximum partition capacity 2.2 GB&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;Volume size 10GB&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;Support for Windows 95 and Windows 98&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;19) Explain FAT 32 File system?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) FAT stands for File Allocation Table&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;Cluster size 32 bits&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;Maximum Partition size 46 GB&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;Volume size 2 TB&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;Support for Windows 98, Millennium, NT, 2000 Server / Professional, XP and&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;2003 Server&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;20) Explain NTFS file system?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) NTFS stand for New Technology File System&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;Cluster size 64 bits&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;Volume size 2 TB&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;Support for Windows NT, 2000 Server, XP, 2003 Server&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;br /&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;meta equiv="Content-Type" content="text/html; charset=utf-8"&gt;&lt;meta name="ProgId" content="Word.Document"&gt;&lt;meta name="Generator" content="Microsoft Word 9"&gt;&lt;meta name="Originator" content="Microsoft Word 9"&gt;&lt;link rel="File-List" href="file:///C:/DOCUME%7E1/user/LOCALS%7E1/Temp/msoclip1/01/clip_filelist.xml"&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:worddocument&gt;   &lt;w:view&gt;Normal&lt;/w:View&gt;   &lt;w:zoom&gt;0&lt;/w:Zoom&gt;   &lt;w:donotoptimizeforbrowser/&gt;  &lt;/w:WordDocument&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;style&gt; &lt;!--  /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-parent:""; 	margin:0in; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:12.0pt; 	font-family:"Times New Roman"; 	mso-fareast-font-family:"Times New Roman";} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.25in 1.0in 1.25in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --&gt; &lt;/style&gt;  &lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;21) What are new features of XP over 2000?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) 1) Support for 32 bit and 64 bit application&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;2) Support for Super VGA (Video Graphic Array)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;3) New concept Plug and Play (PnP)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;22) What is full form of UDP and TCP?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) UDP: User Datagram Protocol&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;TCP: Transmission Control Protocol&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;23) What is Difference between Workgroup and Domain?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) WORKGROUP DOMAIN&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;1) Limited Computers 1) Unlimited number of Computers&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;(20 to 25 Computers)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;2) Decentralize Network 2) Centralize Network&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;3) Configure easily 3) Difficult to configure&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;User A/C and Groups User A/C and Groups&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;4) Low Security 4) High Security&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;24) What is main role of Firewall?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) By using Firewall we restrict the unauthorized network user to access our data or&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;computer.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;2&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;5) Define Network?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) To connect two or more computer for sharing data and resources is called a&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;network&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;26) What are the types of network?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) Two types of network&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;1) Point to Point (also called as Workgroup) network&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;2) Server and Client (also called as Domain) network&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;27) Define Operating system, Types of Operating system and Examples?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) The interface between user and Computer is called Operating System. Or a first&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;installed system software on the computer used to communicate between user and&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;Computer is called Operating System.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;There are two types of Operating System&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;1) Command User Interface. (CUI)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;It is operated on command&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;User can open only one task at a time.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;Example: MS-DOS (Microsoft Disk Operating System)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;2) Graphical User Interface. (GUI)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;It is Multitask operating system.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;Example: Windows 95, 98, XP, Vista.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;28) Shared permission effected on Network path or Local path&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) Shared permission effected on only Network path&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;meta equiv="Content-Type" content="text/html; charset=utf-8"&gt;&lt;meta name="ProgId" content="Word.Document"&gt;&lt;meta name="Generator" content="Microsoft Word 9"&gt;&lt;meta name="Originator" content="Microsoft Word 9"&gt;&lt;link rel="File-List" href="file:///C:/DOCUME%7E1/user/LOCALS%7E1/Temp/msoclip1/01/clip_filelist.xml"&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:worddocument&gt;   &lt;w:view&gt;Normal&lt;/w:View&gt;   &lt;w:zoom&gt;0&lt;/w:Zoom&gt;   &lt;w:donotoptimizeforbrowser/&gt;  &lt;/w:WordDocument&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;style&gt; &lt;!--  /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-parent:""; 	margin:0in; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:12.0pt; 	font-family:"Times New Roman"; 	mso-fareast-font-family:"Times New Roman";} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.25in 1.0in 1.25in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --&gt; &lt;/style&gt;  &lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;29) NTFS permission effected on Network path or Local path?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) NTFS permission effected on both Network path and Local path also&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;30) Explain Defragmentation?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) The process of store discarded (Fragmented) files into sequence.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;31) What is default size of Virtual memory?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) 1.5 times of physical memory&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;32) Which key used to open safe mode login?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) F8&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;33) How do you increase Virtual memory?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) Go to&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;My Computer&gt;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;Right Click&gt;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;Properties&gt;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;Advance&gt;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;Performance&gt;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;Setting&gt;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;Advance&gt;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;Virtual Memory&gt;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;Change&gt;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;34) What is the role of NTDETECT file?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) NTDETECT.COM Check the computer hardware attributes.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;35) Which options are available in windows security logon windows?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) 1) Lock Computer&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;2) Log Off&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;3) Shut Down&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;4) Change Password&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;5) Task Manger&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;6) Cancel&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;36) If the system performance slow how can you speed it?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) 1) Remove temporary files and quarantine files.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;2) Execute disk defragment tool.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;3) Check for Virus and scan the system&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;4) Check the services and delete the unnecessary services.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;5) Check the Virtual memory Size&lt;/span&gt;&lt;span style="font-size: 10pt;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;meta equiv="Content-Type" content="text/html; charset=utf-8"&gt;&lt;meta name="ProgId" content="Word.Document"&gt;&lt;meta name="Generator" content="Microsoft Word 9"&gt;&lt;meta name="Originator" content="Microsoft Word 9"&gt;&lt;link rel="File-List" href="file:///C:/DOCUME%7E1/user/LOCALS%7E1/Temp/msoclip1/01/clip_filelist.xml"&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:worddocument&gt;   &lt;w:view&gt;Normal&lt;/w:View&gt;   &lt;w:zoom&gt;0&lt;/w:Zoom&gt;   &lt;w:donotoptimizeforbrowser/&gt;  &lt;/w:WordDocument&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;style&gt; &lt;!--  /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-parent:""; 	margin:0in; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:12.0pt; 	font-family:"Times New Roman"; 	mso-fareast-font-family:"Times New Roman";} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.25in 1.0in 1.25in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --&gt; &lt;/style&gt;  &lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;37) What are the two types of system restore backup and explain it?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) System Restore available in only XP operating system&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;Two types of system restore&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;1) Check Point:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;Whenever you make any changes, back will be taken as every default setting&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;operating system will take the default changes by itself.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;2) Restore Point:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;It is created manually as administrator will manually restore the setting&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;38) What is the RUN command to open Remote desktop connection?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) MSTSC&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;39) Which users have the permission to access computer remotely?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) Those users belong to Administrator or Remote Desktop user groups.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: red;"&gt;40) Name of seven layers in Open System Interconnection model?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;A) 1) Application Layer&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;2) Presentation Layer&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;3) Session Layer&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;4) Transport Layer&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;5) Network Layer&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;6) Data Link Layer&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;7) Physical Layer&lt;/span&gt;&lt;span style="font-size: 10pt;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt; &lt;br /&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;&lt;/span&gt;&lt;span style="font-size: 10pt;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt; &lt;br /&gt;&lt;span style="font-size: 11.5pt; color: black;"&gt;&lt;/span&gt;&lt;span style="font-size: 10pt;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-8596814119236402215?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/8596814119236402215/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=8596814119236402215' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/8596814119236402215'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/8596814119236402215'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2008/11/dell-desktop-interview-question.html' title='Dell Desktop Interview Question'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-1268817854562128747</id><published>2008-11-04T11:16:00.002+05:30</published><updated>2008-11-04T11:20:31.330+05:30</updated><title type='text'>DELL Interview Question Papers</title><content type='html'>&lt;span style="color: rgb(51, 0, 153);"&gt;1) How to create a user &amp;amp; how many types are there?&lt;/span&gt;&lt;br /&gt;A) There are three types of creating user&lt;br /&gt;1) My computer&lt;br /&gt;&gt; right click&lt;br /&gt;&gt; manage&lt;br /&gt;&gt; Local user &amp;amp; groups&lt;br /&gt;&gt; select user&lt;br /&gt;&gt; right click&lt;br /&gt;&gt;new&lt;br /&gt;&lt;br /&gt;2) Start&lt;br /&gt;&gt; setting&lt;br /&gt;&gt; Control panel&lt;br /&gt;&gt; select user account&lt;br /&gt;&gt; double click&lt;br /&gt;create account&lt;br /&gt;&lt;br /&gt;3) Run&lt;br /&gt;&gt; CMD&lt;br /&gt;&gt;net user &lt;user name=""&gt; &lt;password&gt; &gt;add&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;2) Which is private IP address?&lt;/span&gt;&lt;br /&gt;A) 192.168.0.0 to 192.168.255.255&lt;br /&gt;172.16.0.0 to 172.31.255.255&lt;br /&gt;10.0.0.0 to 10.255.255.255&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;3) What is IP address?&lt;/span&gt;&lt;br /&gt;A) IP is internet Protocol address / 32 bit address (version 4)&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;4) What is OSI?&lt;/span&gt;&lt;br /&gt;A) Open system interconnection&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;5) What is Firewall?&lt;/span&gt;&lt;br /&gt;A) Firewall protecting our network &amp;amp; supporting from unauthorized user&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;6) LAN- WAN difference?&lt;/span&gt;&lt;br /&gt;A) LAN technology is a (Domain) Server &amp;amp; client network. WAN technology is a&lt;br /&gt;forest. (Routers, Switch &amp;amp; internet Connection)&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;7) What is TCP/IP?&lt;/span&gt;&lt;br /&gt;A) It is an oriented connection protocol, every IP in the WAN.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;8) What is Workgroup &amp;amp; Domain?&lt;/span&gt;&lt;br /&gt;A) Workgroup is called as a point to point or pear to pear connection. Domain is&lt;br /&gt;server &amp;amp; Client network.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;9) What is Network?&lt;/span&gt;&lt;br /&gt;A) A connection between two computers is called a network.&lt;br /&gt;Network is divided in two groups&lt;br /&gt;1) Workgroup / point to point / pear to pear&lt;br /&gt;2) Domain / Server &amp;amp; Client&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;10) What is USB?&lt;/span&gt;&lt;br /&gt;A) Universal Serial Bus connection. It can support up to 127 devices like keyboard,&lt;br /&gt;Mouse cellophane.&lt;br /&gt;+/- 5volts DC will be provided to Keyboard.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;11) What is DNS?&lt;/span&gt;&lt;br /&gt;A) DNS is a Domain Name Server, Will call it as a name server, it translate name to&lt;br /&gt;IP address.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;12) What is DHCP?&lt;/span&gt;&lt;br /&gt;A) DHCP is Dynamic Host Configuration Protocol. This belongs to TCP service.&lt;br /&gt;DHCP is divided in to&lt;br /&gt;1) Server 67 port No.&lt;br /&gt;2) Client 68 port No.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;13) How many types of server there?&lt;/span&gt;&lt;br /&gt;A) There are five types of server&lt;br /&gt;1) Application server&lt;br /&gt;2) Data base server&lt;br /&gt;3) File server&lt;br /&gt;4) Web server&lt;br /&gt;5) Print server&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;14) What is IIS?&lt;/span&gt;&lt;br /&gt;A) IIS is Internet Information Service&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;15) What is operating system?&lt;/span&gt;&lt;br /&gt;A) It is set of process (running program) which provides as platform for the user to&lt;br /&gt;run resources (Example= Printer, H.D.D)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;16) What is Stage?&lt;/span&gt;&lt;br /&gt;A) Stage is set of protocol&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;17) Expand the RADIUS?&lt;/span&gt;&lt;br /&gt;A) Remote Authentication Dill In User Service&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;18) What is STP?&lt;/span&gt;&lt;br /&gt;A) Shielded Twisted Pair Insulation will be thicker. It is always used as a back bone&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;19) Expand the FAT?&lt;/span&gt;&lt;br /&gt;A) File Allocation Table (&amp;amp; it is 32 bit Application) Max support for 48 Gb&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;20) What is NTFS? &amp;amp; Expand&lt;/span&gt;&lt;br /&gt;A) NTFS is New Technology File System platform size is 2TB. Windows 95 &amp;amp;&lt;br /&gt;Windows 98 does not support NTFS&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;21) What is SAM?&lt;/span&gt;&lt;br /&gt;A) SAM is Security Account Manager (this folder store the user account information)&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;22) What is SID?&lt;/span&gt;&lt;br /&gt;A) SID is security identification (it is store the password) It is for your local user.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;23) What is Domain?&lt;/span&gt;&lt;br /&gt;A) In server we can able to create an account that particular account we can login on&lt;br /&gt;any system in the network.&lt;br /&gt;Store path will be store in this folder&lt;br /&gt;C:\windows\ntdc\log&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;24) What is NIC?&lt;/span&gt;&lt;br /&gt;A) Network Interface Card (NIC or LAN card) we also called as LAN card&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;25) What is UNC?&lt;/span&gt;&lt;br /&gt;A) Universal Naming Conversation path&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;26) What is MSTSC?&lt;/span&gt;&lt;br /&gt;A) Microsoft Terminal Service Client &amp;amp; Console. This command is used for open the&lt;br /&gt;remote access&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;27) What is Hyperthreding?&lt;/span&gt;&lt;br /&gt;A) We can copy the existing setting and when booting time we can get the same&lt;br /&gt;booting setting.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;28) What is POST?&lt;/span&gt;&lt;br /&gt;A) Power On Self Test. 1st setting (process) of the booting.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;29) What is difference between IDE &amp;amp; SATA with respect to data transfer scheme?&lt;/span&gt;&lt;br /&gt;A)                                          &lt;span style="font-weight: bold; color: rgb(51, 0, 51);"&gt;IDE&lt;/span&gt;                                 &lt;span style="color: rgb(51, 0, 51); font-weight: bold;"&gt;  SATA&lt;/span&gt;&lt;br /&gt;                       1) 40 pins connector (female)           1) 7 cable connector&lt;br /&gt;                       2) Speed 130 mbps                            2) Speed 450 mbps&lt;br /&gt;                       3) 5200 rpm                                        3) 7200 rpm&lt;br /&gt;                       4) We can connect up to 4 devices   4) We can connect up to 6 devices&lt;br /&gt;                        5) Technology parallel                      5) Technology serial&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;30) What is Dual core?&lt;/span&gt;&lt;br /&gt;A) Two core is inters prated on one processor&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;31) Can a system POST without RAM and Why?&lt;/span&gt;&lt;br /&gt;A) No Because&lt;br /&gt;POST&gt; BIOS&gt; HDD&gt; RAM (&gt;PROCESSOR&gt;) RAM&gt; O/P&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;32) Can system POST without HDD &amp;amp; why?&lt;/span&gt;&lt;br /&gt;A) No, Because&lt;br /&gt;POST&gt; BIOS&gt; HDD&gt; RAM&gt; (PROCESSOR) &gt;O/P&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;33) Types of Hard Disks available in market?&lt;/span&gt;&lt;br /&gt;A) 1) PATA&lt;br /&gt;2) SATA&lt;br /&gt;3) SCSI&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;34) What is PCMCIA?&lt;/span&gt;&lt;br /&gt;A) Personal Computer Memory Card International Association&lt;br /&gt;It is memory card used in laptops&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;35) Can DVD combo burn the DVD disk? Explain?&lt;/span&gt;&lt;br /&gt;A) No, DVD combo can burn CD only &amp;amp; read only DVD.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;36) What is Stand by?&lt;/span&gt;&lt;br /&gt;A) Logically the process will be continued but physically computer will be stopped&lt;br /&gt;functional. When we use Keyboard or mouse it will start again.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;37) What is System Restore?&lt;/span&gt;&lt;br /&gt;A) System restore will be stored setting, by using this we can system restore to earlier&lt;br /&gt;time&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;38) Can two operating system stored in single partition?&lt;/span&gt;&lt;br /&gt;A) Yes, we can name as it windows1 &amp;amp; windows2&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;39) How many primary partitions can you create?&lt;/span&gt;&lt;br /&gt;A) We can create 4 primary partitions in the hard disk&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;40) What is the main purpose to creating extended partition?&lt;/span&gt;&lt;br /&gt;A) To increase the partition size.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;41) Are we able to use the shared network resources in safe mode in windows?&lt;/span&gt;&lt;br /&gt;A) No&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;42) What is difference between windows repair and recovery console? Explain?&lt;/span&gt;&lt;br /&gt;A) We can copy all the files in repair but recovery console is used to copy only the&lt;br /&gt;missed files.&lt;br /&gt;&lt;/password&gt;&lt;/user&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-1268817854562128747?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/1268817854562128747/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=1268817854562128747' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/1268817854562128747'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/1268817854562128747'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2008/11/dell-interview-question-papers.html' title='DELL Interview Question Papers'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-7722359292634802440</id><published>2008-11-02T16:33:00.000+05:30</published><updated>2008-11-02T16:34:47.251+05:30</updated><title type='text'>Data Structure Quiz</title><content type='html'>&lt;div style="text-align: center; color: rgb(51, 0, 51);"&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold;"&gt; Data Structure Quiz&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;1. A 3-D row major order array A [1:u1, 1:u2, 1:u3] has the base address α. If every element occupies n words of m/y, find the address of the element A [i, j, k].&lt;br /&gt;&lt;br /&gt;2. Which among the following doesn’t work like a stack&lt;br /&gt;a. Browsing the Internet&lt;br /&gt;b. Opening the multiple windows&lt;br /&gt;c. Playing the multistage game&lt;br /&gt;d. Undo in the text editor&lt;br /&gt;&lt;br /&gt;3. If the expression A + (B * C * (D /E ↑ F)) were converted to postfix equivalent using stacks, No of Push &amp;amp; Pop operations required will be …………….&lt;br /&gt;&lt;br /&gt;4. Use the Ackerman’s function given below to find the value of A(2,2)&lt;br /&gt;A(m,n) = n+1    if m=0&lt;br /&gt;A(m,n) = A(m-1, 1)   if m! = 0, n = 0&lt;br /&gt;Am,n) = A(m-1, A(m, n-1))  if m!= 0, n! = 0&lt;br /&gt;&lt;br /&gt;5. If a double ended queue is Input restricted as well as Output restricted, it becomes&lt;br /&gt;a. Linear queue&lt;br /&gt;b. Priority queue&lt;br /&gt;c. Circular queue&lt;br /&gt;d. It does not behave like a queue&lt;br /&gt;&lt;br /&gt;6. If a circular linked list of size n were broken from the mid to form two different linked list of approximately the same length, effort required for the same will be&lt;br /&gt;a. O(n)&lt;br /&gt;b. O(1)&lt;br /&gt;c. O(nlogn)&lt;br /&gt;d. O(n2)&lt;br /&gt;&lt;br /&gt;7. Dynamic implementation of linked list is preferred than array representation (static) because the former makes the efficient m/y utilization. However there are some situation like ………………, in which static implementation is also preferred.&lt;br /&gt;a. Distributed system&lt;br /&gt;b. Networked system&lt;br /&gt;c. Real time system&lt;br /&gt;d. None of these&lt;br /&gt;&lt;br /&gt;8. Linked implementation of a particular graph occupies …………. m/y than adjacency matrix representation.&lt;br /&gt;a. Equal&lt;br /&gt;b. More&lt;br /&gt;c. Less&lt;br /&gt;d. Less than or equal&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;9. Linked list can not be applicable for&lt;br /&gt;a. Josephus Problem&lt;br /&gt;b. Procedure Call&lt;br /&gt;c. Calculators&lt;br /&gt;d. Air traffic simulation&lt;br /&gt;&lt;br /&gt;10. In the linked representation of polynomials, one header node is also used that contains invalid information. If the structure of a node is as given below, what will be the value of Coef &amp;amp; Exp part?&lt;br /&gt;Coef Exp Next&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;11. Given an ordered circular list of size n. Insertion of x at the appropriate position in the list requires …………. Time&lt;br /&gt;a. O(n)&lt;br /&gt;b. O(log n)&lt;br /&gt;c. O(1)&lt;br /&gt;d. None of these&lt;br /&gt;&lt;br /&gt;12. If two polynomials of degree one &amp;amp; n terms are represented in the form of linked list, the multiply operation of these polynomials requires …………. Time&lt;br /&gt;a. O(n)&lt;br /&gt;b. O(n3)&lt;br /&gt;c. O(nlogn)&lt;br /&gt;d. O(n2)&lt;br /&gt;&lt;br /&gt;13. Which of the following statement is false with respect to almost complete binary tree of depth d&lt;br /&gt;a. Any node at level less that d-1 has two child&lt;br /&gt;b. Any node in the tree with a right descendant at level d, must have its left descendant also.&lt;br /&gt;c. Any node in the tree with a left descendant at level d, must have its right descendant also.&lt;br /&gt;d. It can be used in the construction of Binary heap&lt;br /&gt;&lt;br /&gt;14. A binary tree with 106 nodes has the minimum depth equal to&lt;br /&gt;a. 10&lt;br /&gt;b. 5&lt;br /&gt;c. 7&lt;br /&gt;d. 6&lt;br /&gt;&lt;br /&gt;15. The expression tree for A + (B – C * D / E) ↑ (F * G - H) has depth&lt;br /&gt;a. 4&lt;br /&gt;b. 5&lt;br /&gt;c. 6&lt;br /&gt;d. 7&lt;br /&gt;&lt;br /&gt;16. Which among the following is not true for a mirror similar binary trees&lt;br /&gt;a. If one is empty other one is also empty&lt;br /&gt;b. Their left subtrees are mirror similar and right subtrees are also mirror similar to each other&lt;br /&gt;c. Left subtree of one tree is mirror similar to right subtree of the other&lt;br /&gt;d. Right subtree of one tree is mirror similar to left subtree of the other&lt;br /&gt;&lt;br /&gt;17. Let a binary search tree contains duplicate numbers. The duplicate numbers are kept on the right subtree of the original. What is the time required to insert such a duplicate value in the binary tree with n nodes&lt;br /&gt;a. O(n)&lt;br /&gt;b. O(nlogn)&lt;br /&gt;c. O(1)&lt;br /&gt;d. O(og n)&lt;br /&gt;&lt;br /&gt;18. In the binary tree given below, find which node points to which node using thread&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;19. Given an algorithm to find the inorder traversal of a binary tree. What changes are required to be made for this algorithm to work for finding no of nodes in the tree?&lt;br /&gt;Inordertraverse(tree)&lt;br /&gt;{&lt;br /&gt; if(tree!=NULL)&lt;br /&gt; {&lt;br /&gt;   Inordertraverse(left(tree));&lt;br /&gt;   write(info(tree));&lt;br /&gt;   Inordertraverse(right(tree));&lt;br /&gt;  }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;20. A set of elements are stored as Binary search tree. Write a sequence of instructions to find the nodes in sorted sequence&lt;br /&gt;&lt;br /&gt;21. A binary tree with nodes n (t) is converted to extended binary tree with nodes e (t). What is the relation between n (t) &amp;amp; e (t)?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;22. n distinct 3-digit numbers are sorted using Radix sort method. What is the maximum no of queue operations performed for the same&lt;br /&gt;a. 2n&lt;br /&gt;b. 3n&lt;br /&gt;c. 6n&lt;br /&gt;d. n&lt;br /&gt;&lt;br /&gt;23. If searching is performed on the ordered table of size n where the keys are uniformly distributed between Key(1) – Key(n), which of the following techniques will require least effort&lt;br /&gt;a. Sequential search&lt;br /&gt;b. Index sequential search&lt;br /&gt;c. Binary search&lt;br /&gt;d. Interpolation search&lt;br /&gt;&lt;br /&gt;24. Pick the odd one out&lt;br /&gt;a. Open addressing&lt;br /&gt;b. Separate chaining&lt;br /&gt;c. Linear Hashing&lt;br /&gt;d. Rehashing&lt;br /&gt;&lt;br /&gt;25. Pick the odd one out&lt;br /&gt;a. Dijikstra’s Algorithm&lt;br /&gt;b. Ford – Fulkerson’s Algorithm&lt;br /&gt;c. Bellman Ford algorithm&lt;br /&gt;d. Huffman algorithm&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Answers&lt;br /&gt;&lt;br /&gt;1. α + [(i-1)*u2*u3 + (j-1)*u3 + (k-1)] * n&lt;br /&gt;2. c&lt;br /&gt;3. Push – 7, POP – 7&lt;br /&gt;4. 7&lt;br /&gt;5. c&lt;br /&gt;6. a&lt;br /&gt;7. c&lt;br /&gt;8. b&lt;br /&gt;9. b&lt;br /&gt;10. coef – 0, exp – (-1)&lt;br /&gt;11. a&lt;br /&gt;12. d&lt;br /&gt;13. c&lt;br /&gt;14. c&lt;br /&gt;15. b&lt;br /&gt;16. b&lt;br /&gt;17. d&lt;br /&gt;18. &lt;br /&gt;a. J points to B&lt;br /&gt;b. D points to C&lt;br /&gt;c. I points to A&lt;br /&gt;d. H points to I&lt;br /&gt;e. F points to E&lt;br /&gt;19. &lt;br /&gt;Inordertraverse(tree, static n)&lt;br /&gt;{&lt;br /&gt; if(tree!=NULL)&lt;br /&gt; {&lt;br /&gt;   Inordertraverse(left(tree));&lt;br /&gt;   n=n+1;&lt;br /&gt;   Inordertraverse(right(tree));&lt;br /&gt;  }&lt;br /&gt;}&lt;br /&gt;20.&lt;br /&gt;Procedure sorted_BST&lt;br /&gt;1. Find the minimum of the tree using procedure min (let min node is p), print this node&lt;br /&gt;2. Find the inorder successor of node p and print the node&lt;br /&gt;3. Repeat 2 until no inorder successor can be found.&lt;br /&gt;&lt;br /&gt;21. e (t) = 2* n (t) + 1&lt;br /&gt;22. c&lt;br /&gt;23. d&lt;br /&gt;24. c&lt;br /&gt;25. d&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2924618157381978698-7722359292634802440?l=latestemergingtechnology.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latestemergingtechnology.blogspot.com/feeds/7722359292634802440/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2924618157381978698&amp;postID=7722359292634802440' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/7722359292634802440'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2924618157381978698/posts/default/7722359292634802440'/><link rel='alternate' type='text/html' href='http://latestemergingtechnology.blogspot.com/2008/11/data-structure-quiz.html' title='Data Structure Quiz'/><author><name>ADMIN</name><uri>http://www.blogger.com/profile/12123368830094823078</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='17' src='http://3.bp.blogspot.com/__rFsrl4ZZDo/SNI9PO7eFBI/AAAAAAAAACM/MX267NFvxJs/S220/computer-software.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2924618157381978698.post-6066749212390306871</id><published>2008-11-02T16:31:00.000+05:30</published><updated>2008-11-02T16:33:15.075+05:30</updated><title type='text'>3i Infotech Placemant Paper</title><content type='html'>&lt;meta equiv="Content-Type" content="text/html; charset=utf-8"&gt;&lt;meta name="ProgId" content="Word.Document"&gt;&lt;meta name="Generator" content="Microsoft Word 9"&gt;&lt;meta name="Originator" content="Microsoft Word 9"&gt;&lt;link rel="File-List" href="file:///C:/DOCUME%7E1/user/LOCALS%7E1/Temp/msoclip1/03/clip_filelist.xml"&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:worddocument&gt;   &lt;w:view&gt;Normal&lt;/w:View&gt;   &lt;w:zoom&gt;0&lt;/w:Zoom&gt;   &lt;w:donotoptimizeforbrowser/&gt;  &lt;/w:WordDocument&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;style&gt; &lt;!--  /* Font Definitions */ @font-face 	{font-family:Verdana; 	panose-1:2 11 6 4 3 5 4 4 2 4; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:536871559 0 0 0 415 0;} @font-face 	{font-family:"Arial Unicode MS"; 	mso-font-alt:Tahoma; 	mso-font-charset:128; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1 -369098753 63 0 4129279 0;} @font-face 	{font-family:"\@Arial Unicode MS"; 	mso-font-charset:128; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1 -369098753 63 0 4129279 0;}  /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-parent:""; 	margin:0in; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:12.0pt; 	font-family:"Times New Roman"; 	mso-fareast-font-family:"Times New Roman";} p 	{margin-right:0in; 	mso-margin-top-alt:auto; 	mso-margin-bottom-alt:auto; 	margin-left:0in; 	mso-pagination:widow-orphan; 	font-size:12.0pt; 	font-family:"Times New Roman"; 	mso-fareast-font-family:"Times New Roman";} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.25in 1.0in 1.25in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;}  /* List Definitions */ @list l0 	{mso-list-id:1702240648; 	mso-list-template-ids:1220475360;} @list l0:level1 	{mso-level-tab-stop:.5in; 	mso-level-number-position:left; 	text-indent:-.25in;} ol 	{margin-bottom:0in;} ul 	{margin-bottom:0in;} --&gt; &lt;/style&gt;  &lt;p style="margin: 3.75pt 0in; text-align: center; line-height: 150%;" align="center"&gt;&lt;b&gt;&lt;span style="font-size: 11pt; font-family: Verdana;"&gt;3i Infotech Placemant Paper&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in; line-height: 150%;"&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;&lt;!--[if !supportEmptyParas]--&gt; &lt;!--[endif]--&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; text-indent: 0in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;1.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;                   &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;In a class composed of x girls and y boys what part of the class is composed of girls&lt;br /&gt;&lt;br /&gt;A.y/(x + y)          B.x/xy          C.x/(x + y)    D.y/xy             (Ans.C)&lt;br /&gt;  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; text-indent: 0in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;2.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;                   &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;What is the maximum number of half-pint bottles of cream that can be filled with a 4-gallon can of cream(2 pt.=1 qt. and 4 qt.=1 gal)&lt;br /&gt;&lt;br /&gt;A.16    B.24          C.30          D.64                 (Ans.D)&lt;br /&gt;  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; text-indent: 0in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;3.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;                   &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;.If the operation,^ is defined by the equation x ^ y = 2x + y,what is the value of a in 2 ^ a = a ^ 3&lt;br /&gt;&lt;br /&gt;A.0     B.1          C.-1          D.4                                  (Ans.B)&lt;br /&gt;  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; text-indent: 0in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;4.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;                   &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;A coffee shop blends 2 kinds of coffee,putting in 2 parts of a 33p. a gm. grade to 1 part of a 24p. a gm.If the mixture is changed to 1 part of the 33p. a gm. to 2 parts of the less expensive grade,how much will the shop save in blending 100 gms.&lt;br /&gt;&lt;br /&gt;A.Rs.90          B.Rs.1.00          C.Rs.3.00          D.Rs.8.00                (Ans.C)&lt;br /&gt;  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; text-indent: 0in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;5.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;                   &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;There are 200 questions on a 3 hr examination.Among these questions are 50 mathematics problems.It is suggested that twice as much time be spent on each maths problem as for each other question.How many minutes should be spent on mathematics problems&lt;br /&gt;&lt;br /&gt;A.36    B.72          C.60          D.100            (Ans.B)&lt;br /&gt;  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; text-indent: 0in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;6.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;                   &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;In a group of 15,7 have studied Latin, 8 have studied Greek, and 3 have not studied either.How many of these studied both Latin and Greek&lt;br /&gt;&lt;br /&gt;A.0     B.3          C.4          D.5                        (Ans.B)&lt;br /&gt;  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; text-indent: 0in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;7.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;                   &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;If 13 = 13w/(1-w) ,then (2w)&lt;sup&gt;2 &lt;/sup&gt;=&lt;br /&gt;&lt;br /&gt;A.1/4            B.1/2             C.1               D.2     (Ans.C)&lt;br /&gt;  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; text-indent: 0in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;8.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;                   &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;If a and b are positive integers and (a-b)/3.5 = 4/7, then&lt;br /&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; line-height: 150%;"&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;(A) b &lt;&gt; a        (C) b = a        (D) b &gt;= a                     (Ans. A)&lt;br /&gt;  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; text-indent: 0in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;9.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;                   &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;In june a baseball team that played 60 games had won 30% of its game played. After a phenomenal winning streak this team raised its average to 50% .How many games must the team have won in a row to attain this average?&lt;br /&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; line-height: 150%;"&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;A. 12   B. 20          C. 24          D. 30                              (Ans. C)&lt;br /&gt;  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; text-indent: 0in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;10.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;               &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;M men agree to purchase a gift for Rs. D. If three men drop out how much more will each have to contribute towards the purchase of the gift/ &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; line-height: 150%;"&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;" lang="FR"&gt;A. D/(M-3)          B. MD/3   C. M/(D-3)          D. 3D/(M&lt;sup&gt;2&lt;/sup&gt;-3M)      (Ans. &lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;D)&lt;br /&gt;  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; text-indent: 0in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;11.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;               &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;. A company contracts to paint 3 houses. Mr.Brown can paint a house in 6 days while Mr.Black would take 8 days and Mr.Blue 12 days. After 8 days Mr.Brown goes on vacation and Mr. Black begins to work for a period of 6 days. How many days will it take Mr.Blue to complete the contract? &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; line-height: 150%;"&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;A. 7    B. 8          C. 11          D. 12                                (Ans.C)&lt;br /&gt;  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; text-indent: 0in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;12.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;               &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;2 hours after a freight train leaves Delhi a passenger train leaves the same station travelling in the same direction at an average speed of 16 km/hr. After travelling 4 hrs the passenger train overtakes the freight train. The average speed of the freight train was? &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; line-height: 150%;"&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;A. 30             B. 40             C.58              D. 60                                (Ans. B)&lt;br /&gt;  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; text-indent: 0in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;13.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;               &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;If 9x-3y=12 and 3x-5y=7 then 6x-2y = ? &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; line-height: 150%;"&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;A.-5              B. 4              C. 2              D. 8                                 (Ans. D)&lt;br /&gt;  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; text-indent: 0in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;14.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;               &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;There are 5 red shoes, 4 green shoes. If one draw randomly a shoe what is the probability of getting a red shoe                                     (Ans 5c&lt;sub&gt;1&lt;/sub&gt;/ 9c&lt;sub&gt;1)&lt;br /&gt; &lt;/sub&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; text-indent: 0in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;15.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;               &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;What is the selling price of a car? If the cost of the car is Rs.60 and a  profit of 10% over selling price is earned                              (Ans: Rs 66/-)&lt;br /&gt;  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; text-indent: 0in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;16.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;               &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;1/3 of girls , 1/2 of boys go to canteen .What factor and total number of classmates go to canteen.       &lt;br /&gt; Ans: Cannot be determined.&lt;br /&gt;&lt;br /&gt;  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; text-indent: 0in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;17.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;               &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;The price of a product is reduced by 30% . By what percentage should it be increased to make it 100%                              (Ans: 42.857%)&lt;br /&gt;  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; text-indent: 0in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;18.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;               &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;There is a square of side 6cm . A circle is inscribed inside the square. Find the ratio of the area of circle to square.                   (Ans. 11/14 ) &lt;br /&gt;  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; text-indent: 0in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;19.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;               &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;There are two candles of equal lengths and of different thickness. The thicker one lasts of six hours. The thinner 2 hours less than the thicker one. Ramesh lights the two candles at the same time. When he went to bed he saw the thicker one is twice the length of the thinner one. How long ago did Ramesh light the two candles .&lt;br /&gt;Ans: 3 hours.&lt;br /&gt;  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; text-indent: 0in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;20.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;               &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;If M/N = 6/5,then 3M+2N = ?&lt;br /&gt;  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; text-indent: 0in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;21.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;               &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;If p/q = 5/4 , then 2p+q= ?&lt;br /&gt;  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; text-indent: 0in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;22.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;               &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;If PQRST is a parallelogram what it the ratio of triangle PQS &amp;amp; parallelogram PQRST .         (Ans: 1:2 )&lt;br /&gt;  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; text-indent: 0in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;23.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;               &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;The cost of an item is Rs 12.60. If the profit is 10% over selling price what is the selling price ?    &lt;br /&gt;       &lt;br /&gt;(Ans: Rs 13.86/- )&lt;br /&gt;  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; text-indent: 0in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;24.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;               &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;There are 6 red shoes &amp;amp; 4 green shoes . If two of red shoes are drawn what is the probability of getting red shoes           (Ans: 6c&lt;sub&gt;2&lt;/sub&gt;/10c&lt;sub&gt;2)&lt;br /&gt; &lt;/sub&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; text-indent: 0in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;25.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;               &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;To 15 lts of water containing 20% alcohol, we add 5 lts of pure water. What is % alcohol.      (Ans : 15% )&lt;br /&gt;  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; text-indent: 0in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;26.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;               &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;A worker is paid Rs.20/- for a full days work. He works 1,1/3,2/3,1/8.3/4 days in a week. What is the total amount paid for that worker ?                            (Ans : 57.50 )&lt;br /&gt;  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; text-indent: 0in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;27.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;               &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;If the value of x lies between 0 &amp;amp; 1 which of the following is the largest? &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; line-height: 150%;"&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;" lang="FR"&gt;(a) x             b) x&lt;sup&gt;2                      &lt;/sup&gt;(c) &lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: &amp;quot;Arial Unicode MS&amp;quot;;" lang="FR"&gt;�&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;" lang="FR"&gt;x            (d) 1/x                     (Ans : (d) )&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;" lang="FR"&gt;&lt;br /&gt; &lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; text-indent: 0in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;28.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;               &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;If the total distance of a journey is 120 km .If one goes by 60 kmph and comes back at 40kmph what is the average speed during the journey?             Ans: 48kmph&lt;br /&gt;  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; text-indent: 0in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;29.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;               &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;A school has 30% students from Maharashtra .Out of these 20% are Bombey students. Find the total percentage of Bombay?                            (Ans:  6%)&lt;br /&gt;  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; text-indent: 0in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;30.&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal;"&gt;               &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;!--[endif]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt;An equilateral triangle of sides 3 inch each is given. How many equilateral triangles of side 1 inch can be formed from it?                             (Ans: 9)&lt;br /&gt;  &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin: 3.75pt 0in 3.75pt 0.5in; text-indent: 0in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;b&gt;&lt;span style="font-size: 7.5pt; font-family: Verdana;"&gt
