Hi dears, i work with E// switches since a bit time,i faces a problem with AFFILE output,when i get the out put (with Hex code) and i try to convert it to ASCII code it gives me the correct values but the data is not arrange correctly,there is some tabs,spaces and by result the data is shifted is there any advice for this case thanks & regards
1944can u explain call flow for roaming mobile to roaming mobile?(both users are belongs to same state but staying on roaming in different states)
4 41447Telecom BSS related ques: For cascaded 1800 BTS with master 900 BTS,if 900 master BTS is down for its own equipment fault,cascaded slave 1800 BTS gets down/stop carrying traffic without any fault as BCCH and other controllong channels are in master 900 BTS.Is there any technology/system to turn the slave 1800 BTS to a single 1800 BTS autometcally when 900 master BTS is down for its own equipment fault???It is possible to make the slave 1800 BTS single live BTS manually.But I want to know the autometic system/process.if there is any....if not available, how can we generate the system??
3 16238Post New Ericsson Interview Questions
What is difference between magento function getsingleton() and getmodel()
What's the difference between WindowsDefaultLocation and WindowsDefaultBounds?
What is the J2EE module?
Dealer management in the automoblie company?explain?
Can we create a Integration service without a Repository service and vice versa?
advantage and disadvantage of team work?
What is updatedb?
What are the issues that hamper the efficiency in sorting a file?
Is python better than c++?
How to achieve inheritance in javascript?
How to calculate woden area in sft and Cft
How can you overcome any type of sudden server failure?
What is Date object in JavaScript?
Performance reporting tools and techniques include all of the following except: A. Earned value analysis B. Statistical sampling C. Variance analysis D. Performance reviews
write a program that reads in a file and counts the number of lines, words, and characters. Your program should ask the user to input a filename. Open the file and report an error if the file does not exist or cannot be opened for some other reason. Then read in the contents of the file and count the number of lines, words, and characters in the file. Also print additional information about the file, such as the longest and shortest words, and longest and shortest lines. For simplicity, we define a word to be one or more characters ending with white space (a space, tab, carriage return, etc.). Functions for checking the types of characters can be found in the ctype.h header file, so you want to include this header file in your program. For example, the sentence below could be all that is in a file. This sentence IT 104 is taught in C++. has 32 characters, one line, and six words. The shortest line is 32 characters. The longest line is 32 characters. The shortest word is 2 characters. The longest word is 6 characters