A
Latest Answer : “a” will return the address location which the pointer is using, *a the value, &a the address where the address for a is stored. ...
How to pass two arguments to a function prompted to by function pointer
A. g -> (1,2)
B. *g(1,2)
C. (*g)(1,2)
D. g(1,2)
C
Var1 is declared as global variable.proc1( ) and proc( ) have local variables. when a call is made from proc1( ) to proc ( ) which are the variables will be displayed in locals window?
What will happen when Require Variable Declaration option is checked?
A. existing undeclared variables are converted to variant by VB
B. this comes into effect for the new code segment
C. Both A and B
D. None of these
Move a file from windows temp to windows system folder and delete datas stored previously
A. COPY ERASE C:WINDOWSTEMP.EXE C:WINDOWSSYSTEM.EXE
B. COPY DEL C:WINDOWSTEMP.EXE C:WINDOWSSYSTEM.EXE
C. MOVE C:WINDOWSTEMP.EXE C:WINDOWSSYSTEM.EXE
D. MOVE C:SYSTEM
C
ODP.NET - Fundamental ODP.NET Classes to Retrieve Data | |
ODP NET Fundamental ODP NET Classes to Retrieve Data To retrieve data from an Oracle database using ODP NET we need to work with a few of the ODP NET classes At this point we will discuss the most fundamental classes available in ODP NET for retrieving data mosgoogle The following is the list of fun |
|
C++ Void Pointer and Null Pointer | |
C Void Pointer and Null Pointer In this C tutorial you will learn about two interesting types of pointers; void pointers and Null Pointer These pointers will be discussed in conjunction with syntax usage and example mosgoogle center Pointer to Void General Syntax void pointer variable; Void is use |
|
What are the differences between stored procedures and triggers? | |
Stored procedures are compiled collection of programs or SQL statements that live in the database. A stored procedure can access and modify data present in many tables. Also a stored procedure is not associated with any particular database object. But triggers are event-driven special procedures whi |
|
|
What happens when a variable is not declared in function definition? | |
Generally in C program the function definition and calling takes the form as given below:
main()
{
int x,y,z;
z=sample(x,y);
printf(“%d”,z);
}
sample(x1,y1)
int x1,y1;
{
int z1;
z1= x1 - y1;
return(z1);
}
Here what happens is the values x, y gets passed to x1,y1 |
|
Data Warehouses Non Technical Issues | |
Data Warehouses Non Technical Issues When companies get ready to implement a data warehouse few of them pay attention to the political issues that may surround it It must be emphasized that politics can reduce the chances for success with a data warehouse project and I want to warn companies against |
|
Variable, Constants and Data types in C++ | |
Variable Constants and Data types in C In this C tutorial you will learn about variable constants and data types in C rules for defining variable name short int int long int float double long double char bool declaring variables and constants mosgoogle Variables A variable is the storage location in |
|
How Data Is Stored Within a Data Warehouse | |
How Data Is Stored Within a Data Warehouse The data that is stored in the data warehouse is just as important as the data warehouse itself Having a fundamental understanding of how this data is stored can be useful in the successful implementation and utilization of a data warehouse One term that yo |
|
Technical Aspects of CRM | |
Technical Aspects of CRM While it must be emphasized that CRM is not a technology there are a number of technical issues that need to be considered when a company decides to implement a CRM system The first technical issue that needs to be analyzed is scalability In a nutshell the CRM system must be |
|
ASP.NET Technical Practice Test | |
ASP NET Technical Practice Test This article provides details about ASP NET Technical Online Practice Test which is made available at geekinterview com Questions are generated randomly each time you take the test Online Practice Test is made available to everyone you too can take the test and get yo |
|
|