harish reddy


{ City } mysore
< Country > india
* Profession * employee
User No # 5584
Total Questions Posted # 1
Total Answers Posted # 11

Total Answers Posted for My Questions # 5
Total Views for My Questions # 8733

Users Marked my Answers as Correct # 228
Users Marked my Answers as Wrong # 76
Questions / { harish reddy }
Questions Answers Category Views Company eMail

Wat is d diff b/w API fns & Norm fns

TATA,

5 Visual Basic 8733




Answers / { harish reddy }

Question { CybAge, 15352 }

what is the DIFF between Image and Picture box controls


Answer

we can access only bitmap files in the Image box but in
picture box we can access both bitmap & JPEG files.
another difference is image box is having the property of
Stretch where picture box is not having this property.
so that we can fit the any picture to the reqired size in
image box.

Is This Answer Correct ?    18 Yes 7 No

Question { ABC, 22401 }

What are the different types of errors in visual Basic?


Answer

Syntax Error,Logic Error,Compile Error and Run time Error
are different Errors in Visual Basic

Is This Answer Correct ?    43 Yes 8 No


Question { Wipro, 75871 }

What is the Maximum Size that an Array can hold?


Answer

it depends on User Application

Is This Answer Correct ?    2 Yes 24 No

Question { TCS, 7133 }

what is the Difference between listbox and combo box?


Answer

combo box is having the features of listbox and textbox and
in combo box we can see one item at a time but in list box
more than one we can see depends on size.In listbox if
number of items are increased then its size then one
vertical scroll bar will be added to listbox intererly.

Is This Answer Correct ?    2 Yes 1 No

Question { 8958 }

How to get Cursor position using API?


Answer

GetCursorPos()function is the API function that is used to
get the cursor position.

Is This Answer Correct ?    11 Yes 0 No

Question { CTS, 11798 }

palindrome for strings and numbers----Can anybody do the
prog?


Answer

#include
#include
#include
void main()
{
char a[20],b[20];
int i;
clrscr();
printf("\n Enter the Number or String to find Palindrome");
scanf("%s",a);
strcpy(b,a);
strrev(a);
if(strcmp(a,b)==0)
{
printf("\n Entered data is Palindrome\n");
}
else
{
printf("\n Entered data is not a Palindrome\n");
}
getch();
}

Is This Answer Correct ?    9 Yes 2 No

Question { ADP, 20571 }

O,T,T,F,F,S,S,E,N,?,?,?,T,F,F,S,S,E,N


Answer

o-1
t-2
t-3
f-4
f-5
s-6
s-7
e-8
n-9
T-10
E-11
T-12
t-13
f-14
f-15
s-16
s-17
e-18
n-19
it is Just numarical order in alpha betical manner

Is This Answer Correct ?    18 Yes 1 No

Question { TCS, 14054 }

how to print "hai" in c?


Answer

#include
void main()
{
printf("\"HAI""\"");
getch();
}

Is This Answer Correct ?    1 Yes 4 No

Question { Mphasis, 10701 }

why has call centers come to india,why dont they be in
foreign cuntries?


Answer

in india so many unemployees are there so all countries
will come to take .
lastly don't ask me unemployement in abroad.

Is This Answer Correct ?    3 Yes 11 No

Question { 11071 }

WHY DO WE USE A TERMINATOR IN C LANGUAGE?


Answer

terminator is used to tell that line is finished or
terminated and can execute next line to the Compiler.

Is This Answer Correct ?    14 Yes 0 No

Question { Torrent Power, 67589 }

what is the differnce between SCR and diode rectifier?


Answer

Rectifier using scr is a controlled rectifier .
but
rectifier using diode is an uncontrolled Rectifier.

Is This Answer Correct ?    107 Yes 18 No