6:18 PM

Oscars, Our Hope and Slum Dog Millionaire!

Posted by yusuf

With 4 Golden Globe under its kitty,11 BAFTA and 10 Oscar nominations, Slumdog has re-written history. Lets see how our TV industry is reacting to the news...

Slumdog Millionaire is the story about an 18 year old orphan from the slum of Mumbai Jamal Malik, who is just one question away from winning Rs 2 crore on the TV game show 'Who wants to be Millionaire' or better known to us as 'Kaun Banega Corepati'. It’s the story of a boy and his journey from Rags to Riches!



Will we get the very coveted Academy awards? The film has made India proud as it is nominated in 10 categories, and now is in the league of movies such as Ben-Hur, Titanic , Gone with the wind and others with most number of nominations. The Film has bagged nominations in categories of Best Picture, Direction, Film Editing, Original Score and Original Songs(A.R .Rahman), Cinematography, Sound Editing, Sound Mixing(Resul Pookutty) and adapted screenplay. Also veteran Lyrists Gulzar gets his first Oscar nominations for the song Jai Ho! All of them are carrying the hopes of people of India who are very anxiously awaiting the moment when A.R.Rehman like in Golden Globes, will again say “Thanks from more than one billion of people of India”.. What a magical moment it will be!



So what is so special about the movie and why is the entire world going ga-ga over it?? Let's asks few of our very talented people of small screen about their thoughts on the movie, which is having the world under its feet at the moment...



Rajan Shahi: One of the most successful producers of TV at the moment,brain behind Bidaai and Yeh Rishta Kya Kehlata hai..



What is so special about the movie Slum dog Millionaire?

I have not watched it yet, but have heard so much about it that I am curious to know what it is.


Why do we always need Richard Attenborough(Gandhi, 1982) and Danny Boyle (Slumdog Millionair,2008) to showcase India and bring glory at International stage? Does it mean that our directors lack the capability?

No I don't think we lack the capability in India. We have very talented directors here, but maybe the marketing standards and production values are lacking somewhere in the final product. We have made some brilliant films, but to get a name internationally, we need to improve on the above said factors.


TZP is out of race from Oscars, but which movie according to you is better between TZP Slumdog Millionaire ?

As I said, I have not yet seen Slumdog, so I will not be able to compare both. But TZP was a brilliant film.


Do you think we are experimental enough on small screen or we are waiting for a renaissance?

We are experimenting a lot in television, no doubts about that. However, we have certain amount of comfort zones in the genre we show, and we highlight that in our stories. I think the only exception that did very well was Jassi Jaisi Koi Nahi. We need to work within the same frame work, and deliver stories which are more identifiable to the masses.



Sunjoy Wadhwa: Producer of shows such as Balika-Vadhu, Mohe Rang De, Sath-Phere and Grihasthi, master of TRP charts!



What is so special about the movie Slum dog Millionaire?

I think the movie apart from doing exceptionally well shows that intelligent minds can be cultivated anywhere. You just need to have the guts to go about it, and given an opportunity, we can tap the huge talent hidden in lower areas where we are not looking at.


Why do we always need Richard Attenborough(Gandhi, 1982) and Danny Boyle (Slumdog Millionair,2008) to showcase India and bring glory at International stage? Does it mean that our directors lack the capability?

It's not that!! We are a very capable nation with brilliant directors and writers. But it is just that we are not looking at ourselves in a macroway. We are happy clinging to the microway. We need to see the bigger picture and tap our resources, and this is where people from outside are able to work on our concepts and get all the success.


TZP is out of race from Oscars, but which movie according to you is better between TZP Slumdog Millionaire ?

Definitely TZP was a better movie, which goes directly to your heart. Slumdog is also good but it has a commercial value too.


Do you think we are experimental enough on small screen or we are waiting for a renaissance?

We have surely started experimenting on the small screen, but we have lot more stuff to come. I think in the next two years, non-fiction will give us something beyond the normal singing and dancing shows. Our approach towards family drama needs to be different and we need to tap into various relationships as we have huge potential.


Neelima Bajpai: Producer of Hit TV Shows such as Banno Main Teri Dulhan and Santaan .

9:47 AM

HCL SYSTEM SOFTWARE PAPER

Posted by yusuf

NOTE : Please check answers once again.

only this much i got , which is available here


section 1.


1.which of the following involves context switch,
a) system call b)preveliged instruction
c)floating point exception
d)all the above
e)none of the above
ans: a

2.In OSI, terminal emulation is done in
a)semion b)appl.. c)presenta... d)transport
ans: b

3....... 25MHz processor , what is the time taken by the instruction which needs 3 clock cycles,
a)120 nano secs b)120 micro secs
c)75 nano secs d)75 micro secs


4. For 1 MBmemory no of address lines required,
a)11 b)16 c)22 d) 24
ans: 16

5. Semafore is used for
a) synchronization b0 dead-lock avoidence
c)box d) none
ans : a


6. class c: public A, public B

a) 2 member in class A,B should not have same name
b) 2 member in class A,C " '' '' ''
c) both
d) none

ans : a


7. question related to java


8. OLE is used in

a)inter connection in unix
b)interconnection in WINDOWS
c)interconnection in WINDOWS NT

9.No given in HEX ---- write it in OCTAL

10.macros and function are related in what aspect?
a)recursion b)varying no of arguments
c)hypochecking d)type declaration

11.preproconia.. does not do one of the following
a)macro ...... b)conditional compliclation
c)in type checking d)including load file

ans: c

SECTION B
__________

1.enum day = { jan = 1 ,feb=4, april, may}
what is the value of may?
a)4 b)5 c)6 d)11
e)none of the above


2.main
{
int x,j,k;
j=k=6;x=2;
x=j*k;
printf("%d", x);
ans x=1


3. fn f(x)

{ if(x<=0)
return;

else f(x-1)+x;
}
ans fn(5) ....?


4. i=20,k=0;
for(j=1;j{
k+=j<10?4:3;
}

printf("%d", k);
ans k=4



5. int i =10
main()
{
int i =20,n;
for(n=0;n<=i;)
{
int i=10
i++;
}
printf("%d", i);
ans i=20

6. int x=5;
y= x&y
( MULTIPLE CHOICE QS)
ans : c


7. Y=10;
if( Y++>9 && Y++!=10 && Y++>10)
printf("........ Y);
else printf("".... )


ans : 13


8. f=(x>y)?x:y
a) f points to max of x and y
b) f points to min of x and y
c)error
d) ........

ans : a


9. if x is even, then

(x%2)=0
x &1 !=1
x! ( some stuff is there)

a)only two are correct
b) three are correct
c), d) ....


ans : all are correct

10. which of the function operator cannot be over loaded

a) <=
b)?:
c)==
d)*

ans: b and d

9:36 AM

NOKIA MOBILE SECRET CODES

Posted by yusuf

NOKIA

* Use at Own Risk
CODE FUNCTION PERFORMED
*3370# This Nokia code activates Enhanced Full Rate Codec (EFR) - Your Nokia cell phone uses the best sound quality but talk time is reduced my approx. 5%

#3370# Deactivate Enhanced Full Rate Codec (EFR)

*4720# Activate Half Rate Codec - Your phone uses a lower quality sound but you should gain approx 30% more Talk Time

#4720# With this Nokia code you can deactivate the Half Rate Codec

*#0000# Displays your phones software version, 1st Line : Software Version, 2nd Line : Software Release Date, 3rd Line :
Compression Type

*#9999# Phones software version if *#0000# does not work

*#06# For checking the International Mobile Equipment Identity (IMEI Number)

#pw+1234567890+1# Provider Lock Status. (use the "*" button to obtain the "p,w" and "+" symbols)

#pw+1234567890+2# Network Lock Status. (use the "*" button to obtain the "p,w" and "+" symbols)

#pw+1234567890+3# Country Lock Status. (use the "*" button to obtain the "p,w" and "+" symbols)

#pw+1234567890+4# SIM Card Lock Status. (use the "*" button to obtain the "p,w" and "+" symbols)

*#147# This lets you know who called you last (Only vodofone)

*#1471# Last call (Only vodofone)

*#21# This phone code allows you to check the number that "All Calls" are diverted to

*#2640# Displays phone security code in use

*#30# Lets you see the private number

*#43# Allows you to check the "Call Waiting" status of your cell phone.

*#61# Allows you to check the number that "On No Reply" calls are diverted to

*#62# Allows you to check the number that "Divert If Unreachable (no service)" calls are diverted to

*#67# Allows you to check the number that "On Busy Calls" are diverted to

*#67705646# Phone code that removes operator logo on 3310 & 3330

*#73# Reset phone timers and game scores

*#746025625# Displays the SIM Clock status, if your phone supports this power saving feature "SIM Clock Stop Allowed", it means you will get the best standby time possible

*#7760# Manufactures code

*#7780# Restore factory settings

*#8110# Software version for the nokia 8110

*#92702689# Displays - 1.Serial Number, 2.Date Made, 3.Purchase Date, 4.Date of last repair (0000 for no repairs), 5.Transfer User Data. To exit this mode you need to switch your phone off then on again

*#94870345123456789# Deactivate the PWM-Mem

**21*number# Turn on "All Calls" diverting to the phone number entered

**61*number# Turn on "No Reply" diverting to the phone number entered

**67*number# Turn on "On Busy" diverting to the phone number entered

12345 This is the default security code

press and hold # Lets you switch between lines



[Secret Codes for 3330] Imei Information :-
To view the imei number on this model simply type *#06#
Software version type *#0000#
*#170602112302# shows the SW version.

Service Provider Lock Information :-
Service Provider Lock Service Provider lock is the lock to your phone which is implement by your service provider e.g. Orange onto your sim card. The phone is usually locked to a certain SP but it can be unlocked allowing you access to other service providers that provide a better deal. The same effect can also be used by using a Dual sim, you could have two sim cards in one phone allowing you to switch between sims and SP 1. First sim = Orange 2. Second sim = One2One
Short Message Serivce Centre Numbers ( FREE SMS ):-
SMSC (Short Message Serivce Centre Numbers) SMS Centre number allow you to send free sms, by changing your message centre number like this:
1. Go to messages
2. Message Settings
3. Set 1
4. Message Centre Number
5. Then change the number to one from SMSC Number section (from SMSC #'s given below)

What does this do?

Instead of paying for your messages, you can alter a number in your phone to send to a different centre. This cannot charge you, and consequently you have free SMS!

How does it work?

When you send a text message, it is first transmitted to your network's routing centre, called the Short Message Service Centre, or SMSC. This SMSC is generally a telephone number, normally a memorable one- i.e. Orange's is 0973 100973. Here, it is sent to the recipient's network's SMSC, where it is then forwarded to their phone. The whole process takes only seconds, but the vital part is when it reaches your SMSC, because then it is forwarded, and you are charged according to your tariff. If you, however, change your SMSC number to one below, the network who forward the message will not know who you are, and consequently cannot charge you. Clever huh?

Does it always work?

No! It can take hours to find a number that hasn't been blocked by your network- they usually carry out checks monthly and bar any numbers known to be forwarding SMS. Also, I understand that Orange and all networks in Denmark have barred all numbers aside from their own- so it won't work with Orange or Danish networks.

ISDN Number :-
ISDN number For checking ISDN number enter *#92772689#
Warranty Menu To view the warranty menu enter *#92702689# [*#war0anty#]
1) shows the serial nr.
2) shows when the cel phone was made mmyy
3) shows when the cel. phone was purchased mmyy
4) shows how many times the cel. phone has been repaired.
5) makes you capebel of transferring user data if you have the gear for it
6) shows how many houres the phone has been on Warranty

Menu To view Warranty menu enter *#92702689# [*#war0anty#] Phone asks 'warranty code:'
Press the following warranty code: 6232 (OK) : Displays the Month and Year of Manufacture (MMYY)
7332 (OK) : Displays the date of the last repairment - if found ('DATE NOT SAVED'...) 7832 (OK) : Displays (if found) the date where the phone was purchased ('DATE NOT SAVED'...)
9268 (OK) : Displays Serial Number
37832 (OK) : Set the Purchasing Date MMYY (Warning: You can only do this once - So be careful ...)
87267 (OK) : Transfers ALL phone numbers, pictures, sounds from one phone to another eg. if broken (via IRport.)

Sim Clock Stop :-
To view if sim clock can be stoped enter *#746025625# [*#sim0clock#] (Sim-clock-stop is a kind of standby mode which will save battery time) May not work with all firmware versions.

Enhanced Full Rate/Half Rate Enhanced Full Rate Codec :-
(EFR) For activation enter *#3370#
For deactivation enter *#3370*
Enhanced Full Rate Will give you much better sound quality when you enable it. The new Enhanced Full Rate CODEC adopted by GSM uses the ASELP (Algebraic Code Excitation Linear Prediction) compression technology. This technology allows for much great voice quality in the same number of bits as the older Full Rate CODEC. The older technology was called LPC-RPE (Linear Prediction Coding with Regular Pulse Excitation). Both operate at 13 kilobits.(but you take up more space on the network, so they can charge you more) - Talk-time is reduced with about 5%

Half Rate Codec
For activation enter *#4720#
For deactivation enter *#4720* In all cases the phone will automatically restart.
Half Rate will give you bad sound quality, which gives the service provider the opportunity to have more calls on the network, and you might get a lower charge from them. - Will give you 30% longer talk-time.

Imei Code :-
To View IMEI (International Mobile Equipment Identity) enter *#06# Firmware Versions
Check To view the Firmware version enter *#170602112302#

Restore Factory Settings :-
To restore factory settings (Memory, language, counters not included) enter *#7780#
Manufacturer Information To view Week and Year of manufacture enter *#3283# [*# D A T E #] The last two digits are the year. If the year is 95, the first two digits are the month. For 96 the first two digits are the week of the year.

Firmware Version :-
To view the firmware version enter *#170602112302# or *#9999# On newer phones, the code has been changed to *#682371158412125#