Friday, 13 January 2017

Navajjudin Siddaki Charge 1 rupie for Haramkhor


Nawazuddin Siddiqui upcoming movie Haramkhor , is ready to release . The most important  is Actor Nawazuddin Siddiqui who charge only one (1) rupee for this movie . Doing this , actor Nawazuddin Siddiqui is prove that his acting is not dependent on Money , and for this have a great heart and Mr. Nawazuddin Siddiqui have.



The story of Haramkhor is based on A teacher (Nawazuddin Siddiqui) and his 15 year student (Sweta Tripathi) .
The main thing is that , this film is awaited for  Certification from Central Board of Film to long time , and now this movie got U/A certificate .
And after that the producer Gunit Monga is ready to release in cinema . Gunit Monga is already going in safe zone for selling the rights of this movie . 



After releasing , the movie's earning will be profit .
Mr Gunit said that I will give share to Nawazuddin Siddiqui of this movie .
Many member of this movie either not charged or doing very low charge for this movie .
 In this time this movie is complete only 1 cr. For this , Gunit Monga is says thanks to all team and Actor Nawazuddin Siddiqui .







Wednesday, 11 January 2017

Most important and commonly question asked in Interview and its suitable answer .

In Interview , some question is common and ask in approx every interview . So some common question is here and its corresponding answer .



Interviewer :- Why should I hire you ?
You :- If you hire me , it will be a great platform to showcase my skills. Whatever goals I set , I ensure to complete them within stipulated         time .

Interviewer :- Reason behind leaving your last job ?
You :- In order to enhance my skill set , I am looking for better opportunities .

Interviewer :-     Why have you been unemployed for such a long time ?
You                 :-      I enrolled myself for some advanced personality development course with some   freelance work .

Interviewer :-     Tell me your ability to work under pressure ?
You                 :-      I keep myself calm and focus on multi tasking while being patient .

Interviewer :-     What are your expectation form job ?
You                 :-     Professionally advancement and good future .   

Interviewer :-   Describe your management style ?
You                 :-    I will be constantly keeping tab of assigned work with my subordinates and seniors , finishing the assigned job before                            deadlines .

Interviewer :-   Are you a team player ?
You                 :-   Yes , The team which I was a part of have successfully completed the projects within deadlines .

Interviewer :-   What irritates you about co-workers ?
You                 :-   I believes in team work . Even if I find anything irritating , I try to avoid it unless it personally affect me .  

Interviewer :-    How long would you expect to work for us if hired ?
You                 :-    As long as I feel challenged professionally .

Interviewer    :-    How do you see yourself 5 year from now ?
You                 :-    I see myself in a senior position managing important portfolio of company .

Interviewer    :-    Do you consider yourself successful ?
You                 :-    Yes , apart form appraisals I thing I have earned a bunch of good colleagues in my life .

Interviewer :-   What is your weakness ?
You                 :-    I concentrate on one thing at a time .

Interviewer :-  What is your strength ?
You                 :-   I am a quick learner and a great team player .

Interviewer :-   What position do you prefer on a team working on a project ?
You                 :-    It doesn't matter till I learn something new in every project .

Interviewer :-    Do you have any question for us ?
You                 :-    When con I join .













Saturday, 25 June 2016

Modulus Operator not work with float in C/C++

float / double has 3 component .
1 - sign  -       This component in telling to the compiler that value is positive or negative (-/+).
                      0 for positive, 1 for negative
2 - exponent - This is the order of (power of ) magnitude .
3 - mantisa    - This is specifing the actual digit of number .

            raaaaaaaakkkkkkkkkkkkkkkkkkkkkkk
            31                                                       0
           r  --> sign
           a --> exponent
           k --> mantisa

Means-
            00000000000000000000000000000000

        31's digit specifying that value is negative or positive .
        after 8 digit specifying the exponent of value
       and after decimal place value is remain 23.

    If we try to use % operator with float point ,like

     5.23  % 3.5
compiler generate error, like


because % operator return the remainder  of operand . In these case compiler so confuse , which value is operate with operator .

If you want solution of it , then you can use fmod function of math.h in c/c++ .
then you can see no error .

 fmod function working :
     first fmod() function round of the float value , in corresponding integer and the operate with operator .. And return remainder in integer type and after that change the corresponding float value .

Reason for float error :-
 I hope so may be . 
--> With float value compiler will be confused that which value is compile .
--> % operator return remainder value in integer type .
--> Compiler not support the operator with float because bit level change in 3 step .


Note :  This issue  is solved all modern language . like (Java ,  C# , .Net etc ) .





Thursday, 16 June 2016

Welcome Message ,

    Hi friends , welcome to my blogg .