Announcement :

Try our newly launched website www.Technicalbaba.com Token Number - 1techbaba1

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 ! 


Sunday 1 December 2013

INFOSYS PLACEMENT PAPER 2011

Questions : 70

Time limit = 75 minutes

Sectional cut-off in each section its around 60% in Logical Reasoning part and 50% in Verbal Ability. no negative marking Offline (paper & pen) test. Analytical & Logical reasoning:(30 question : 40 minutes) English section: (40 question : 35 minutes)



Tuesday 26 November 2013

HR Interview Questions

Think out of the Box..

6 beautiful HR Questions !!!

Here are some of the typical HR questions asked to find out if the candidates have "out of box" thinking capability.



Thursday 21 November 2013

5 Simple Tips to Ace Your MBA Interview


Master in Business administration is a career in vogue. With expanding number of conglomerates and increasing number of multinationals, proclivity ofaspirants to work with them seems to surge.  MBA degree makes it most obvious. Students studying with premium MBA colleges of the nation as in IIM’s, XLRI, Symbiosis and NarseeMonjeetend to bag better job opportunities due to sound professional education that shape up raw in to refined. But before gaining an entrance in these reputed colleges, aspirants need to undergo common test and ought to encounter face to face interview session.



It has been commonly found that many students having potential show excelling results in the common test (MAT, CAT and GMAT exams) but fail during across the table session. There are many reasons to it.Numerous flunk but few succeed too and ace their interviews. Read on below to have a look on some effective tips :


Wednesday 20 November 2013

Java program to zip any folder

In our previous post we show how can you show your jsp / web application to this world with out any hosting or domain name , In this post we are showing how can you zip or unzip any folder using this java program with out any API.








Wednesday 13 November 2013

Microsoft at GITAM UNIVERSITY, VISAKHAPATNAM


Written pattern for the s/w developers and testing:
Duration: 1hr30 mins
Each section 45 mins.

After 45mins omr sheet will be taken for the section-A. Rough work space given so you
can write over there but don‘t use back pages as it is meant for section-B .


CSC-PAPER HYDERABAD


1. C# is a native language of:
A.Java B. .Net C.Visual Basic

2. What is IMP in Objective C
A.Implementation pointer B.Important Pointer C.Intended Pointer

3. The width in bits of double primitive type in Java is --. Select the one correct answer.
1. The width of double is platform dependent 2. 64 3. 128 4. 8 5. 4

Sunday 10 November 2013

Tcs interview experience 2013 at Imsec





This post is shared by Ayush Nigam from IMS Engineering college Ghaziabad , We wish him great future ahead.



Company -  TCS
Package   -  3.18 l/pa
Date           -  28/10/2013

Monday 28 October 2013

Shortcut Trick to find out rank of word or word of any rank with repeat



Topic -


 Math Trick to find out rank of any word ,Math Trick to find out word of any rank with repeating letter.





Post - 



We know very large number of students facing problem  to find out rank of any word or word of any rank when letters are repeating, so here is the solution very easy to use just learn and deploy. 




Example : 

If you understand our tutorial for nor non-repeating , then its very easy for you.

See -  Rank  of word  INDIA in dictionary ?

So start same as we done previously. just start-

Step1 - do numbering over all letters.

4   3     2    1     0        <==   diraction
I    N    D     I     A


Step 2 :

Move left to right and put n for each letter .

4   3     2    1     0       <==   diraction
I    N    D     I     A
n   n     n     n    n       ==>   diraction

n defines as number of letter smaller than that letter in right hand side. ( refer previous post for better understanding ).

Note- an additional k factor to be added here for repeating letters .
1)  if letter repeat in right side then k= 1/( r! ) where r is number of that letter
2)   otherwise k=1 .

So in this case

1) For I ,  ( A , D )  is smaller in right hand side so n=2 , k=1/(2!) (I is repeating in right side and r=2)

2) For N , (A,D,I) smaller in right hand side so n=3 , k=1 (letter non-repeating in right side)


3) For D ,  (A) is smaller in right hand side so n=1 , k=1  (letter non-repeating in right side)

4) For I ,  (A) is smaller in right hand side so n=1 , k=0  ( no any letter repeating in right)

and so on .....

you can do this very fastly by manual work like


factorial      4      3     2     1     0       <==   diraction
word           I      N     D     I     A
n=>            2     3     1     1     0         ==>   diraction
k=>        1/(2!)   1      1     1     1

Now calculate ==>[ sum ( ( factorial ! )  x n x k)] + 1 (INDIA itself) ( ie. multiply column's but 1st row used as factorial)

So

Rank =  [( 4!) x 2 x 1/2! + ( 3!) x 3 x 1 + ( 2!) x 1 x 1  ( 1!) x 1 x 1] + 1 = 24 + 18 + 2 +1+ 1 = 46



Rank of word "INDIA" = 46



Hope you enjoyed this post , comment for any problem.

 







Sunday 27 October 2013

Trick to find out rank of word or word of any rank




Topic -


 Math Trick to find out rank of any word ,Math Trick to find out word of any rank.





Post - 



We know very large number of students facing problem  to find out rank of any word or word of any rank , so here is the solution very easy to use just learn and deploy. 




Example : 



55th word of SHUVANK in dictionary ?




(1)  AHNKSUV 

(2)  AHSNKUV
(3)  AHNKUSV
(4)  AHNKUVS 




Sunday 20 October 2013

Text to speech converter in java



So are you really want to talk with your computer ? 
Need java code to do it for you ?

You are at correct place so start with very start ...


A Java Program which can speak :)

Tcs verbal ability question answer link





For ease of our users we put all links of verbal test here , as we added more link will also added here , these are sample question answer's of this year question you may expect some of these in your exam , you can refer these and prepare well.



These are tcs verbal ability questions with sample answers.


Friday 18 October 2013

Tcs verbal question answer sample set 10





Set 10 :
Using the following phrases, write an email with a minimum of 70 words and a maximum of 100 words. 

thank you - keep it up - client - week-end - night - appreciating the work done , hard work - Customer billing project - beyond call of duty - extra working hours


  By - Varsha

Dear All, 

I thank you all for all your efforts for making this Customer billing project successful.All the clients are appreciating the work done, hard work as well as the extra working hours you have toiled in the week-ends and the night shifts to complete this project on time.This effort is beyond call of duty.Keep it up guys.I would like to congratulate each and everyone.I declare bonuses for all as well as a cocktail party to celebrate this success on 14th. 

Regards, 
(Mr.guhbikjl) 
CEO,ABC





Thursday 17 October 2013

Tcs verbal question answer sample set 9





Set 9 :
Using the following phrases, write an email with a minimum of 70 words to your final year project guide explaining the delay in the project submission. submission date - foreign edition books - Schedule - 10th June - laptop crash - delay in printing - overall status - 9 days - approve the extension - shortage of money .


  By - Adarsh

Dear Mr.Kashyap, 

I would like to inform you i that the overall status of my project "App lock" is running behind the submission date i.e. 10th June.This morning laptop crash occured which led to the delay in printing.Due to shortage of money i can't repair it now.I have to manually refer foreign edition books which is time consuming.So it would be a big relief if you can extend my project for 9 days.Hope you approve the extension. 

Regards, 
Adarsh Singh




Tcs verbal question answer sample set 8





Set 8 :
Using the following phrases, write an email with a minimum of 70 words to a company requesting them to sponsor your college cultural festival. pdf file - reputed institute - 10 days - 200 college - sparkling performance - extravaganza - sponsor the event - request appointment - brochure attached .



  By - Venkatesh

Dear Sir, 

I am the student chairman of K.K engineering college. Our college is a reputed institute which was started in 1995.We have planned for the extravaganza13 in 10 days.We are the number one college among the 200 colleges in our region.We have more than 50 sparkling performance.we request appointment from you to discuss about this cultural event.We will feel pride if you sponsor the event.We have planned to invite Dr.kamalahasan ,actor to this event.i have attached the brochure of my college with this mail.We are looking forward for a positive reply from your company. 
Thank You, 

Regards, 
Obuli.




Tcs verbal question answer sample set 7





Set 7 :
Using the following phrases, write an email with a minimum of 70 words and a maximum of 100 words to your parents describing the experience related to your first campus interview. 80 minutes - tensed - formal shirt - negative marking - polish - write a program - early in the morning - written test - four member panel - explain - offer - very happy. 



  By - Nitesh

Dear Dad

We just now had campus Interview. The written test was of 80 minutes and we all were tensed about it. We wore formal shirt and there were negative marking in exam. We polished our shoes in morning and were ready to write a program early in the morning. The written test was cleared and for Interview we had four member panel. They explain the offer to TCS very clearly and we all were very happy after coming out of the Interview. 

Regards, 
Raja 


Wednesday 16 October 2013

Tcs verbal question answer sample set 6





Set 6 :
As your company is doing good business and expanding, your company is relocating it's office to a new address. Using the following phrases, write an email with a minimum of 70 words and a maximum of 100 words to your customer informing the change in address. near outer ring road - shifting to - bigger office space - November 10 - change in telephone number - new address is provided below - fourth floor - Cesina Business .


  By - Prasanna

Dear Mr.Mishra, 

We would like to thank you for the co-operation that your have rendered all these years. Our company is doing good business and we are happy to inform you about the expansion of the company. We are shifting to a bigger office space near outer ring road connecting the bazzar. We are relocating by November 10. This mail is to notify you about the relocation and change in telephone number. The new address and telephone number is provided below. 

No:17,fourth floor, 
Cesina Business, 




Tcs verbal question answer sample set 5






Set 5 :
You are a part of corporate communication team in your company. The working time period is revised as 8:30 am to 5:00pm. Using the following phrases, write an email with a minimum of 70 words and a maximum of 100 words to the employees in your company informing the same. by 30 minutes to avoid traffic - effect from next week - lunch duration - revised working time - reduced by 10 minutes - free breakfast - office will start earlier - till the end of rainy season - will be in effect .


  By - Manasa

Dear All 
You are hereby informed that the working time period of the office has been pushed by 30 minutes to avoid traffic. It has been revised as 8:30am to 5:00pm and will be effective from next week. Due to the revised working time, the lunch duration has been reduced by 10 minutes. Free breakfast will be provided to all employees as the office will start earlier. This revised timing will be in effect till the end of the rainy season.

Regards 
Manasa V



Tcs verbal question answer sample set 4






Set 4 :
You are the project leader for a team of 20 members. As the team members are  not submitting the weekly time sheets regularly, you need to email them stressing  the need to submit without fail. Using the following phrases, write an email with a  minimum of 70 words to your team members informing the same. can be accessed  online – lead to loss of pay – every week – do not default – used to bill client –  actual working hours – by friday – failure to adhere – time sheet filling application .


  By - Prasanna

Dear all, 

This mail is to notify that the weekly time sheets are not being submitted regularly. The time sheet filling application and date of submission can be accessed online. The time sheets are to be submitted every week without fail as they are used to bill the client. The pending sheets are to be submitted by friday. Failure to adhere, will lead to loss of pay and extension in the actual working hours. 

Regards, 
Prasanna Ravichandran




Monday 14 October 2013

Tcs verbal question answer sample set 3





Set 3 :
 Using the following phrases, write an email with minimum of 70 words to your colleague and congratulate  him on the success of his grand project. congratulations - good job well done , nice work very problem ,  working hard , very easy , keep it up.



  By - Adarsh

Dear Amar, 

Heard today of your success on the grand project.Congratulations you did a very good job!You have been working hard for a very long time on this project and finally you did a nice work.I know it was not very easy for you to keep on the project after the accident you met but you stood against all odds,Well done.Keep it up my friend.Hope to hear many such news in the recent future. 

Regards, 
Adarsh Singh



Friday 11 October 2013

How stop images from dragging


How to avoid any image from dragging effect ? very easy just use these methods as given bellow -


Method  1 -

Suppose your image code is :


<img  src="11.png" alt="11.png" title="11.png">

Add 
draggable attribue and your code will be - 


<img draggable="false"  src="11.png" alt="11.png" title="11.png">


( Not working use 2nd method )


Thursday 10 October 2013

Tcs verbal question answer sample set 2





Set 2 :
 Using the following phrases, write an email with minimum of 70 words to the customer Mr. Gill Roy  explain.Explain delay to the project. Payment processing system - Schedule - 10th May (Friday) -  Unexpected power outage - 3 days - Overall delay - 7 days - includes recovery of lost work - will not recur.








  By - Manasa

Dear Gill
we're very sorry to inform you that our project 'Payment Processing System' was scheduled on 10th May (Friday) but due to unexpected power outage of 3 days we've been delayed. Overall delay will be 7 days which includes the duration required for the recovery of lost work for which we don't even have back-up. We're extremely sorry for the delay and inconvenience caused and assure you that this will not recur in the future.
Thanks and Regards
Manasa V


Wednesday 9 October 2013

Tcs verbal question answer sample set 1






Set 1 :
 Using the following phrases, write an email with minimum of 70 words to the customer Mr. Gill Roy  explain.unable to deliver product on time , issues , benefits , 7 days , late time , extra money , reasons.









  By - Akash

Dear Mr. Roy, 

This is to inform you about the technical issues raised in our Payment Processing System due to which we were unable to deliver your product on time. To explain the reasons behind launching a new product and its benefits our company has organized a workshop of 7 days that will not cost you any extra money . Sincere apologies for the late time occured . We promise it will not recur in future. 



Regards, 

XYZ














1. HTC offers bloggers to write a post for us , you can use your links too.


2. HTC offers ad networks to publish their ads in very low cost.


Copyright @ 2013 Ability 2 Crack. Designed by Templateism | Re-designed By Shashank MIshra