Explain about congestion control

7. Explain about congestion control.   Congestion is an important issue that can arise in packet switched network. Congestion is a situation in Communication Networks in which too many packets are present in a part of the subnet, performance degrades. Congestion in a network may occur when the load on the network (i.e. the number of packets sent to the network) is greater than the capacity of the network (i.e. the number of packets a network can handle.)     SAP Client Copy – Local, Remote & Import / export SAP System Administration Transactions – 1 In other words when too much traffic is offered, congestion sets in and performance degrades sharply.   What is SAP Landscape? What is SAP R3 Architecture ? SAP Architecture
Read more about Explain about congestion control
  • 0

Discuss about Application layer security

8. Discuss about Application layer security.   Application Layer Security :   Application layer security refers to methods of protecting Web applications at the application layer (layer 7 of the seven-layer OSI model) from malicious attacks that may expose private information. Security is applied to the application layer specifically to protect against unauthorized access and attacks. SAP System Administration Transactions – 1   SAP Client Copy – Local, Remote & Import / export Application Security Manager provides proactive application-layer protection by understanding and analyzing a user's interaction with the application firewall. Application Security Manager is automatically configured to allow only authorized application transactions, protecting networks and critical data from application attacks including hacking, cross-site scripting, and parameter tampering. Capabilities such as packet inspection and behavior analysis protect against mal…
Read more about Discuss about Application layer security
  • 0

SOFTWARE ENGINEERING

MCA 203 – SOFTWARE ENGINEERING   PART – A   1. Describe the generic view of process.   The physical layer, the lowest layer of the OSI model, is concerned with the transmission and reception of the unstructured raw bit stream over a physical medium. It describes the electrical / 2. Describe the importance of customer communication.   3. Explain the system engineering hierarchy.   4. Explain about product engineering.   5. What is meant by data modeling?   6. Describe the design hierarchy of software engineering.   7. Describe the fundamentals of software engineering.   8. Discuss about component level testing.   9. Explain the concepts of quality management.   10. List the advantages of re-engineering. PART – B   11. Describe the spinal model and list its merits and limitations.   12. Discuss about agile process model.  Also list its merits over other process models.   SAP Client Copy – Local, Remote &…
Read more about SOFTWARE ENGINEERING
  • 0

Explain about TDM

Explain about TDM.     Time Division Multiplexing processes information of different transmitters successively in defined time segments for transmission over one channel. Time Division Multiplexing is differentiated in synchronous and asynchronous multiplexing.   Asynchronous Time Division Multiplexing   Single data streams are classified in variable time segments and subsequently transmitted using the asynchronous time division multiplexing procedure. Thereby transmission occurs in no definite order. Each time segment receives a channel information number to separate them again in the demultiplexer procedure.   Synchronous Time Division Multiplexing   Using the synchronous method, single data streams are classified in defined time segments for subsequent transmission in predetermined order.     Using this TDM procedure for example 8 x Gigabit Ethernet applications can be multiplexed to one 10 Gigabit signal. In the following this independent 10 Gigabi…
Read more about Explain about TDM
  • 0

Explain about TDM

Explain about TDM.     Time Division Multiplexing processes information of different transmitters successively in defined time segments for transmission over one channel. Time Division Multiplexing is differentiated in synchronous and asynchronous multiplexing.     Asynchronous Time Division Multiplexing   Single data streams are classified in variable time segments and subsequently transmitted using the asynchronous time division multiplexing procedure. Thereby transmission occurs in no definite order. Each time segment receives a channel information number to separate them again in the demultiplexer procedure.   Synchronous Time Division Multiplexing   Using the synchronous method, single data streams are classified in defined time segments for subsequent transmission in predetermined order.     Using this TDM procedure for example 8 x Gigabit Ethernet applications can be multiplexed to one 10 Gigabit signal. In the following this independent 10 Gigabit s…
Read more about Explain about TDM
  • 0

Discuss about SONET

Discuss about SONET   Synchronous optical networking (SONET) is a standardized digital communication protocol that is used to transmit a large volume of data over relatively long distances using a fiber optic medium. With SONET, multiple digital data streams are transferred at the same time over optical fiber using LEDs and laser beams.   SONET is a product of the American National Standards Institute (ANSI).   SONET is not that different from other technologies, but hardware was manufactured to provide better configuration and reliable services to its users. SONET may use a re-generator for long haul distances. This device boosts signals that have already traveled for a long distance. Signals are transmitted into electrical signals and then re-generated into high-power signals. Add drop multiplexers (ADMs) are also common parts of SONET. ADMs are designed to fully support the network architecture of SONET. SONET supports multiple data streams at the same time. It was de…
Read more about Discuss about SONET
  • 0

Describe the importance of the physical layer

Describe the importance of the physical layer.   The physical layer, the lowest layer of the OSI model, is concerned with the transmission and reception of the unstructured raw bit stream over a physical medium. It describes the electrical / optical, mechanical, and functional interfaces to the physical medium, and carries the signals for all of the higher layers. It provides:   Data encoding: modifies the simple digital signal pattern (1s and 0s) used by the PC to better accommodate the characteristics of the physical medium, and to aid in bit and frame synchronization. It determines:   What signal state represents a binary 1   How the receiving station knows when a "bit-time" starts How the receiving station delimits a frame Physical medium attachment, accommodating various possibilities in the medium.   Transmission technique: determines whether the encoded bits will be transmitted by baseband (digital) or broadband (analog) signaling.     Physical medium…
Read more about Describe the importance of the physical layer
  • 0

Discuss about SONET

Discuss about SONET   Synchronous optical networking (SONET) is a standardized digital communication protocol that is used to transmit a large volume of data over relatively long distances using a fiber optic medium. With SONET, multiple digital data streams are transferred at the same time over optical fiber using LEDs and laser beams. SONET is a product of the American National Standards Institute (ANSI).   SONET is not that different from other technologies, but hardware was manufactured to provide better configuration and reliable services to its users. SONET may use a re-generator for long haul distances. This device boosts signals that have already traveled for a long distance. Signals are transmitted into electrical signals and then re-generated into high-power signals. Add drop multiplexers (ADMs) are also common parts of SONET. ADMs are designed to fully support the network architecture of SONET. SONET supports multiple data streams at the same time. It…
Read more about Discuss about SONET
  • 0

Explain embedded SQL

Explain embedded SQL.   Embedded SQL is a method of inserting inline SQL statements or queries into the code of a programming language, which is known as a host language.    Because the host language cannot parse SQL, the inserted SQL is parsed by an embedded SQL preprocessor.   Embedded SQL is a robust and convenient method of combining the computing power of a programming language with SQL's specialized data management and manipulation capabilities.  
Read more about Explain embedded SQL
  • 0

Explain any three aggregate functions with examples

Explain any three aggregate functions with examples.   Aggregate Functions are keywords in SQL used to manipulate values within columns for output purposes. A function is a command always used in conjunction with a column name or expression. There are several types of functions in SQL.  An aggregate function is used to provide summarization information for an SQL statement, such as counts, totals, and averages.   MIN      - returns the smallest value in a given column   MAX     - returns the largest value in a given column   SUM    - returns the sum of the numeric values in a given column   AVG     - returns the average value of a given column   COUNT- returns the total number of values in a given column   COUNT(*) - returns the number of rows in a table   SQL Aggregate Functions: SQL Aggregate Functions operate on complete sets of data and return a single result. PointBase supports five Aggregate Functions: AVG, COUNT, MAX, MIN, and SUM.   AVG The AVG Funct…
Read more about Explain any three aggregate functions with examples
  • 0

Explain Database architecture

Explain Database architecture   There are following three levels or layers of DBMS architecture:   • External Level   •Conceptual Level   • Internal Level   Objective of the Three Level Architecture   The objective of the three level architecture is to separate each user's view of the database from the Way the database is physically represented. There are several reasons why this separation is desirable:     • Each user should be able to access the same data, but have a different customized view of the data. Each user should be able to change the way he or she views the data, and this change should not affect other users.   • Users should not have to deal directly with physical database storage details, such as indexing or hashing. In other words a user's interaction with the database should be independent of storage considerations.   • The Database Administrator (DBA) should be able to change the database storage structures without affecting the user's views…
Read more about Explain Database architecture
  • 0

Mistakes to avoid during a job interview

Mistakes to avoid during a job interview - Job interview tips    Mistakes to avoid during a job interview - Job interview tips 6 Mistakes to Avoid While Conducting an Interview Taking over. Rhetorical questions about the job description. Probing too deep into how they spend their personal time. Stress interviewing. Sparing newbies the difficult questions. Falling for the well-presented candidate.   (adsbygoogle = window.adsbygoogle || []).push({}); Common job interview mistakes to avoid Dressing inappropriately. Neglecting hygiene. Getting to the interview late. Arriving too early. Eating or drinking during the interview. Checking your phone. Knowing nothing about the job or company. Lying on your resume. Mistakes to avoid during a job interview - Job interview tips. (adsbygoogle = window.adsbygoogle || []).push({}); Anchor Suma Interview With KTR, KTR Interview On G…
Read more about Mistakes to avoid during a job interview
  • 0

Talking About Types of Shops – English Vocabulary

Talking About Types of Shops – English Vocabulary   Types of Shops Vocabulary 1. bakery – a place where bread and cakes are baked, or a shop where they are sold 2. barber – a shop where men can have their hair cut 3. café – a small restaurant where you can buy drinks and simple meals 4. market – a time when people buy and sell goods, food, … or the place, usually outside or in a large building, where this happens 5. bookshop – a shop that sells books 6. candy shop – a happy place where innocent little children go to buy candy 7. clothes shop – a shop selling clothes 8. pawn shop – a pawnbroker’s shop 9 (adsbygoogle = window.adsbygoogle || []).push({}); . boutique – a small shop that sells fashionable clothes or other objects 10. computer shop – a store that sells computers to the small businessperson or personal user 11. butcher’s – a shop where you can buy meat 12. DVD rental – a physical retail business that rents home videos such…
Read more about Talking About Types of Shops – English Vocabulary
  • 0

Sri Hanuman, ఆంజనేయస్వామి అవతారాలెన్ని?

ఆంజనేయస్వామి అవతారాలెన్ని?     ఆంజనేయస్వామి కూడా శ్రీ విష్ణుమూర్తిలా అవతారాలెత్తారు. మహావిష్ణువు దశావతారం ధరిస్తే.. ఆంజనేయస్వామివారు తొమ్మిది అవతారాలు ధరించారు.    (adsbygoogle = window.adsbygoogle || []).push({}); ... అవేంటంటే..   1. ప్రసన్నాంజనేయస్వామి 2. వీరాంజనేయస్వామి 3. వింశతి భుజ ఆంజనేయస్వామి 4. పంచముఖ ఆంజనేయస్వామి 5. అష్టదశ భుజ ఆంజనేయస్వామి 6. సువర్చలాంజనేయస్వామి 7. చతుర్బుజ ఆంజనేయస్వామి 8. ద్వాత్రింశద్భుజ ఆంజనేయస్వామి 9. వానరాకార ఆంజనేయస్వామి. ఆంజనేయస్వామి రుద్రాంశ సంభూతుడు. నవ అవతార ఆంజనేయస్వామి ఆలయం ఒంగోలులో ఉంది. ఇక్కడ పంచముఖ ఆంజనేయస్వామి ప్రధాన దైవం. ఆలయాన్ని పంచముఖ ఆంజనేయస్వామి ఆలయం అని పిలుస్తారు. ఆంజనేయస్వామి గురించి కొన్ని ... ఆంజనేయ స్వామికి పూజచేయవలసిన ప్రత్యేక రోజులు - శనివారం, మంగళవారం మరియు గురువారం. పురాణకథ ప్రకారం, ఒక సారి శని ఆంజనేయస్వామిని తన ప్రభావంతో వశపరచుకోవాలని ప్రయత్నించగా, స్వామి అతడిని తలక్రిందలుగా పట్టి, ఎగురవేయసాగాడు. శని తన అపరాధాన్ని మన్నించమని వేడగా, స్వామి తనను, తన భక్తులను యెప్పుడూ పీడించనని …
Read more about Sri Hanuman, ఆంజనేయస్వామి అవతారాలెన్ని?
  • 0

Lord Venkateswara Rupam, iiQ8, TTD వేంకటేశ్వర స్వామి అవతారానికి 3 ప్రధాన కారణాలు

వేంకటేశ్వర స్వామి అవతారానికి 3 ప్రధాన కారణాలు... There are 3 main reasons for the incarnation of Lord Venkateswara Swamy ...  1. ఒక నాడు నారద ముని శ్రీ మహావిష్ణువు దగ్గరకు వెళ్లి అడిగారుట. కలియుగంలో మానవులు తక్కువ కాలం జీవిస్తున్నారు, భగ...వంతుడి మీద అస్సలు మనస్సు లేదని. అప్పుడు శ్రీ మహావిష్ణువు అన్నారుట, నేను వారి పాపాలని కడగడానికి, వారిని ఉద్ధరించడానికి శ్రీ వేంకటేశ్వరునిగా అవతరిస్తాను. వారు ఒక్కసారి నా కొండకి వచ్చి,  devotional, islam, quran, hindu, ramayan, bhagavad gita, telugu bhagavad gita, bhagavad geetha, telugu bhagavad geetha, bible, christian, muslim, yoga, meditation, health, knowledge base 2 u , telugu quran, telugu bible , slokam, telugu bhakti, prayer, devudu, temple, church, masjeed తల నీలాలు సమర్పించి, నా దర్శనం చేసుకుని, ఒక్క ఆర్జిత సేవ చేసినా (కలియుగంలో అశ్వమేథయాగం చేసినంత పుణ్యం. అసలు కలియుగంలో చెయ్యడం చాలా కష్టం మరియు నిషిద్ధం కూడా) వారి పాపాలని నేను తీసేస్తాను. వారి డబ్బు వెయ్యకపోయినా సరే, తల నీలాలు సమర్పిస్తే చాలు. (adsb…
Read more about Lord Venkateswara Rupam, iiQ8, TTD వేంకటేశ్వర స్వామి అవతారానికి 3 ప్రధాన కారణాలు
  • 0

About Yoga 1 – యోగా 1 – Yoga in Telugu Pdf , What is YOGA ?

యోగా - Yoga -  योगः   అంటే వ్యాయామ సాధనల సమాహారాల ఆధ్యాత్మిక రూపం. ఇది హిందూత్వ అధ్యాత్మిక సాధనలలో ఒక భాగం. మోక్షసాధనలో భాగమైన ధ్యానం అంతఃదృష్టి, పరమానంద ప్రాప్తి లాంటి అధ్యాత్మిక పరమైన సాధనలకు పునాది. దీనిని సాధన చేసే వాళ్ళను యోగులు అంటారు. వీరు సాధారణ సంఘ జీవితానికి దూరంగా మునులు సన్యాసులవలె అడవులలో ఆశ్రమ జీవితం. 20 Signs of High Blood Sugar, iiQ8 health, Symptoms of Blood Sugar hyperglycemia   గడుపుతూ సాధన శిక్షణ లాంటివి నిర్వహిస్తుంటారు. ధ్యానయోగం ఆధ్యాత్మిక సాధనకు మానసిక ఆరోగ్యానికి చక్కగా తోడ్పడుతుంది. హఠయోగములో భాగమైన శారీరకమైన ఆసనాలు శరీరారోగ్యానికి తోడ్పడి ఔషధాల వాడకాన్ని తగ్గించి దేహధారుడ్యాన్ని, ముఖ వర్చస్సుని ఇనుమడింప చేస్తుంది. బుద్ధమతం, జైనమతం, సిక్కుమతం మొదలైన ధార్మిక మతాలలోనూ, ఇతర ఆధ్యాత్మిక సాధనలలోను దీని ప్రాధాన్యత కనిపిస్తుంది. (adsbygoogle = window.adsbygoogle || []).push({}); యోగా యోగాసనాలు - :  యోగా విధానములో శరీర వ్యాయామ విధానాలనే యోగాసనాలు అని వ్యవహరిస్తాము. యోగాసనాలు అంటే శారీరక వ్యాయామ విధాన క్రియలు. ఈ ఆసనాల ద్వార…
Read more about About Yoga 1 – యోగా 1 – Yoga in Telugu Pdf , What is YOGA ?
  • 0

Easter … Christian, పునరుత్థాన పండుగ . . ఈస్టర్, Festival Christianity

Easter ... పునరుత్థాన పండుగ . . ఈస్టర్ ఈస్టరు పండుగ క్రీస్తు జీవితాన్ని,శిలువపై ఆయన మరణాన్ని సమాధి నుంచి పునరుత్థానం చెందడాన్ని జ్ఞాపకం చేసుకునే పవిత్ర దినం . మార్చి 30 తరువాత వచ్చే పౌర్ణమి వెళ్ళాక మొదటి ఆదివారం నాడు ఈస్టరు పండుగ చేస్తారు . క్రైస్తవులకు అతి ముఖ్యమైన పండుగ ఈస్టరు . క్రైస్తవ గ్రంధాలను బట్టి క్రీస్తు శిలువ వేయబడిన తరువాత,మూడవ రోజు పునరుత్థానం చెందాడు . అంటే . . . సమాధి నుండి తిరిగి లేచాడు . ఆ రోజునే ఈస్టర్ దినంగా జరుపుకొంటారు . ప్రపంచ వ్యాప్తంగా ఈస్టర్ సంప్రదాయాలు. దాదాపుగా ఇంగ్లీష్ మాట్లాడే దేశాలన్నీ ఈస్టర్ పండుగను ఒకే విధంగా జరుపుకొంటాయి . గుడ్ ఫ్రైడే ను ఆచరించిన తరువాతి రోజైన శనివారం ఇంటిని ఈస్టర్ గుడ్లతో అలంకరిస్తూ ఉత్సాహంగా గడుపుతారు . ఆదివారం ఉదయం నిద్ర లేవగానే అలంకరించిన గుడ్లు , చాక్లెట్ ఆకారపు గుడ్లు ,చాక్లెట్ కుందేళ్ళు మొదలైన వాటిని అందరికీ పంచుతారు . పరిశుభ్రంగా తయారై చర్చి కి వెళ్లి ప్రార్ధనలో పాల్గొంటారు . మధ్యానం పూట విందు ఆరగిస్తారు . దాదాపుగా అన్ని చోట్లా వేడుక ఒకేలా ఉన్నా . . కొన్నిచోట్ల కొద్దిపాటి మార్పులు కనిపిస్తూ…
Read more about Easter … Christian, పునరుత్థాన పండుగ . . ఈస్టర్, Festival Christianity
  • 0

Sri Rama Feet Shape in the Water, నీటిలో శ్రీ రామ అడుగుల ఆకారం

నీటిలో పాదం ఆకారం.. పెద్ద సంఖ్యలో భక్తుల చేరిక The shape of the foot in the water .. The gathering of a large number of devotees..   నిజామాబాద్ రూరల్ నియోజక వర్గం లోని ధర్పల్లి మండలం రామడుగు గ్రామానికి శ్రీరాముడు నడయాడిన నేలగా విశిష్ట చరిత్ర ఉంది. అలా ఆ గ్రామం పేరు రామడుగు గా వాడుకలోకి వచ్చింది. The village of Ramadugu in the Dharpalli Zone of the Nizamabad Rural Constituency has a unique history as the place where Lord Rama walked. Thus the name of the village came into use as Ramadugu. కాశీకి వెళ్ళినా రామా హరీ, ఇంటి మోహాలు పోలేదు రామ హరీ!, దేహ సౌఖ్యాలు పోలేదు రామా హరీ (adsbygoogle = window.adsbygoogle || []).push({}); Magha pornani   మాఘ పౌర్ణమి విశేషం ఏంటి ?  http://knowledgebase2u.blogspot.com/2015/05/madha-pornani.html   Magha snanam మాఘస్నానం ప్రాశ్చత్యాన్ని తెలియజేసే కథ :- http://knowledgebase2u.blogspot.com/2015/05/magha-snanam.html Lakshmi sthothram లక్ష్మీ స్తోత్రం http://knowledgebase2u.blogspot.com/2015/05/la…
Read more about Sri Rama Feet Shape in the Water, నీటిలో శ్రీ రామ అడుగుల ఆకారం
  • 0

Excel Cannot Complete this Task with Available Resources

 SOLVED - Excel Cannot Complete this Task with Available Resources...  SOLVED - Excel Cannot Complete this Task with Available Resources... So, you have a massive 45MB Excel spreadsheet open with multiple pages and you're about to update a few thousand cells when this error box pops up: "Excel cannot continue this task with available resources. Choose less data or close other applications. Continue without Undo?" What to do?! This can be a frustrating experience, especially if you're certain the computer is powerful enough and has 4GB or more RAM installed. The issue is indeed resources related, but adding more memory will not fix things. If for example you have Chrome or Firefox open with a couple dozen tabs at the same time, closing that browser while working in Excel can help alleviate the resource limitation... but not always. http://how-to-install-it.blogspot.com A http://how-to-install-it.blogspot.com reader who uses Microsoft Office Home and B…
Read more about Excel Cannot Complete this Task with Available Resources
  • 0