Latest Updates
Sunday 12 October 2014
Tcs interview experience 2014-15
By - Solanki (2014-15)
Well here goes my TCS experience...and it was awesome..right from aptitude to interview...:)
I was very nervous while entering the computer lab...
but they give you enough time to get comfortable with the hall...
the email writing was the easiest part I found...my topic was very simple i.e "complaint to the travel agent about bad management" and then i was proceeded to the next round the aptitude part...
Sunday 2 February 2014
Full form of programming languages
Question comes in our mind -
- Full form of COBOL ?
- Full form of BASIC ?
- Full form of FORTRAN ?
- Full form of ALGOL ?
- Full form of PROLOG ?
- Full form of PHP ?
- Full form of VBS ?
- Full form of PERL ?
- Full form of LISP ?
- Full form of XSL ?
Know more ?? then why not post in comments we will add them here. :)
Wednesday 29 January 2014
Tcs experience for ece
I am very glad to share my TCS Interview with you all. There were 2 rounds totally. First one Online Aptitude and the second round was a combination of Technical + Managerial + HR.
First round was very easy with general aptitude questions. If you practice enough, you can clear it.
Sites -
Second round was totally hectic. There were three HRs sitting before me. One HR was going through my resume and he started asking questions from the area of interest. My area of interest which I mentioned was combinational circuits. He asked questions like what is meant by cc, an eg pgm, pin diagram for gates, diff bw mux and demux. The second one asked questions from C and C++. The questions were diff bw c and c++, inheritance, pointers usage, structures and arrays etc, division algorithm etc. He asked me about the projects done, workshops attended and about final year project.
Then the third interviewer asked questions from the ppt they presented. He was very jovial and his questions were would you like to relocate, night shifts, why should i hire an ECE student, how long you will be working in our company. I answered all the questions and finally got selected. TCS became an another reason to love my birthday as I got selected on one of my birthdays.
Hope these hints will help you at least a little. Good Luck !!!
Regards,
Abhinaya.
Tuesday 7 January 2014
Full Form of daily use technical word Interesting one
Here are all daily use technical words full form , really interesting to know , it will give you power to speak as well as better understanding of each and every short form , enjoy the post.
Here all goes just start now -
Here all goes just start now -
* VIRUS - Vital Information Resource UnderSeized.
* 3G -3rd Generation.
* GSM - Global System for Mobile Communication.
* CDMA - Code Divison Multiple Access.
* UMTS - Universal MobileTelecommunication System.
* SIM - Subscriber Identity Module .
* AVI = Audio Video Interleave
* RTS = Real Time Streaming
* SIS = Symbian OS Installer File
* AMR = Adaptive Multi-Rate Codec
* JAD = Java Application Descriptor
* JAR = Java Archive
* JAD = Java Application Descriptor
* 3GPP = 3rd Generation Partnership Project
* 3GP = 3rd Generation Project
* MP3 = MPEG player lll
* MP4 = MPEG-4 video file
* AAC = Advanced Audio Coding
* GIF= Graphic Interchangeable Format
* JPEG = Joint Photographic Expert Group
* BMP = Bitmap
* SWF = Shock Wave Flash
* WMV = Windows Media Video
* WMA = Windows Media Audio
* WAV = Waveform Audio
* PNG = Portable Network Graphics
* DOC = Document (MicrosoftCorporation)
* PDF = Portable Document Format
* M3G = Mobile 3D Graphics
* M4A = MPEG-4 Audio File
* NTH = Nokia Theme (series 40)
* THM = Themes (Sony Ericsson)
* MMF = Synthetic Music Mobile Application File
* NRT = Nokia Ringtone
* XMF = Extensible Music File
* WBMP = Wireless Bitmap Image
* DVX = DivX Video
* HTML = Hyper Text Markup Language
* WML = Wireless Markup Language
* CD -Compact Disk.
* DVD - Digital Versatile Disk.
*CRT - Cathode Ray Tube.
* DAT - Digital Audio Tape.
* DOS - Disk Operating System.
* GUI -Graphical User Interface.
* HTTP - Hyper Text Transfer Protocol.
* IP - Internet Protocol.
* ISP - Internet Service Provider.
* TCP - Transmission Control Protocol.
* UPS - Uninterruptible Power Supply.
* HSDPA - High Speed Downlink PacketAccess.
* EDGE - Enhanced Data Rate for GSM[GlobalSystem for Mobile Communication] Evolution.
* VHF - Very High Frequency.
* UHF - Ultra High Frequency.
* GPRS - General PacketRadio Service.
* WAP - Wireless ApplicationProtocol.
* TCP - Transmission ControlProtocol .
* ARPANET - Advanced ResearchProject Agency Network.
* IBM - International Business Machines.
* HP - Hewlett Packard.
*AM/FM - Amplitude/ Frequency Modulation.
* WLAN - Wireless Local Area Network
Any else ??? comment here we will add :)
Friday 20 December 2013
Print Hello world with out using semi colon in c programming language
Print hello world without using semicolon in c. See how can you do this in c language. in last post we show how to develop a Text To Speech Converter in Java , but we know most of our users much comfortable with c programming language. So lets start exploring c , in this post you will learn very deeply , i bet you will get very useful information regarding c , so enjoy our step by step approach :
Step 1 -
Do You Know -
do you know about printf function properly. NO , actually you dont know , that when you write printf("Hello")
it return an integer value (number of letters) but mostly we don't store it.
Correct syntax : int printf(String str,---)
it returns length of String inside printf function
So for Example - when you write
printf("Hello"); // it return 5
you can store it as -
num = printf("Hello")
and value of num will be 5
Step 2 -
Do You Know -
for if(n) , value of n any thing other than 0 considered as true in c so if there is written as if(11) then it is true in case of c.
Example :
if(11)
printf(" I am in if block");
else
printf(" I am in else block");
Output - I am in if block
Surprised , don‘t worry see next step.
Step 3 - (Final)
Now by using above two steps we can write code now. Code with out semicolon
void main() {
if(printf("Hello World")){ }
if(getch()){ }
}
Output - Hello World
Do You Know -
getch() function waits for users inputs and returns ascii so again if function got true condition.
Like our facebook page for regular updates , Comment for any query !
Subscribe to:
Posts (Atom)