Programming Code (840)
Scripts_Markup Code (257) how many processes will gate created execution of -------- fork(); fork(); fork(); -------- Please Explain... Thanks in advance..!
GATE,
8 24805how to print 1 2 3 4 5 6 7 8 9 10 9 8 7 6 5 4 3 2 1 using any loop(for or while) only once(only 1 loop) and maximum 2 variables using C.
19 46296Assume in University Every student in university as entity, prepare a class for student that store the roll no, name, dob of student, and make funtion of deletion, manipulation, addition of student record.
2726why do you use macros? Explain a situation where you had to incorporate macros in your proc report? use a simple instream data example with code ?
2727What is the difference between proc means and proc tabulate ? explain with a simple example when you have to use means or tabulate?
1 4451What is the match merge ? compare data step match merge with proc sql merge - how many types are there ? data step vs proc sql
2866can you use proc sql to manpulate a data set or would u prefer to use proc report ? if so why ? make up an example and explain in detail
TCS,
2910#include
What is a valid XML document?
What is SAX in XML?
can you please write a program for deadlock that can detect deadlock and to prevent deadlock.
1+1/2!+1/3!+...+1/n!
What output does this program generate as shown? Why? class A { A() { cout << "A::A()" << endl; } ~A() { cout << "A::~A()" << endl; throw "A::exception"; } }; class B { B() { cout << "B::B()" << endl; throw "B::exception"; } ~B() { cout << "B::~B()"; } }; int main(int, char**) { try { cout << "Entering try...catch block" << endl; A objectA; B objectB; cout << "Exiting try...catch block" << endl; } catch (char* ex) { cout << ex << endl; } return 0; }
how to Scroll a DIV content
how to test pierrot divisor
How to find the list of users who have two codes su01 and pfcg? thank in advance all.
Give me some tips in c#?
Please give me the vb.net codes for deadlock(like detecting,& avoiding) in any version of vb.net.
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.
Write a program to reverse a number in python?
How to Split Strings with Regex in Managed C++ Applications?
Common UI for Multiple web applications. Suppose there are 35 websites using same third party controls.These 3rd party controls are made together that all 35 websites can use these controls.If we put all 3rd party controls and use its dll in 35 websites,only class files will be accessable. But I want to use CSS,images also in all 35 websites. how I can design the N-tier solution for this project.
Coding for Synchronizing Cache Access in ASP.NET?