Dot Net Code (114)
Visual Basic Code (11)
Programming Code AllOther (62) I have multiple datasets and I have to search a particular string in all of them at a single time. Please suggest a full jcl or rexx tool for it.
1016#define a 10 int main() { printf("%d..",a); foo(); printf("%d..",a); return 0; } void foo() { #undef a #define a 50 }
3 3766#define a 10 void foo() { #undef a #define a 50 } int main() { printf("%d..",a); foo(); printf("%d..",a); return 0; } explain the answer
1 3535Write a Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
845Write a Program to find the sum of digits of a given number until the sum becomes a single digit.
871
How to Bind Nested XML to a Repeater Control with Container.DataItem?
How do you verify if the two sentences/phrases input is an anagram using predefined functions in string.h and by using arrays?
Write a script to delete all the files in a folder except one desired file.
Create a program to read two random data set in two files named data1.txt and data2.txt manifold contains integer numbers, whereas data2.txt file contains the float type numbers. Simpanlahmasing each into 2 pieces of data that is an array of type integer array and an array of type float, then calculate the average numbers in the second array.
Write a Program to truncate a given floating point value (e.g.16.25=16).
1.What happens to a session object when the browser associated with it is closed? 2. Explain what happens when a servlet is sent a POST request? 3. Why does only one copy of a servlet get created? 4. Explain what happens when a browser requests a servlet? (for the first time) 5.How is information stored in a session object?
write a program using virtual function to find the transposing of a square matrix?
How we use ajax in asp.net through javaScript. Please givee me an example.
I am trying to pass the string firstName from a Servlet called SampleServet. I am running this on eclipse and it tells me that "the value for annotation attribute must be a constant expression. I don't understand why it is giving me this error. @PersonAnnotation(name = SampleServlet.firstName) public class AnnotationClass{
How to Get File Extension?
Can we run Applet in Web browser with security policy files
How we work on N tire architecture in asp.net Please give me Examle...
For printing a message we use System.out.println in normal programs. We use String msg="text....."; Can't we use String msg=" " in normal programs and System.out.println("........") in applets. Please answer this question?
Write a program that implements a date class containing day, month and year as data members. Implement assignment operator and copy constructor in this class.
Write a code snippet to display an integer in a binary format?