This is an approach to selling goods and services in which a prospect explicitly agrees in advance to receive marketing information. A. customer managed relationship B. data mining C. permission marketing D. one-to-one marketing E. batch processing
Category: C Tips
Decision making is one of the most important concepts of computer programming. As the name suggests “Decision Making” , we means to state that we will be making certain decisions to carry out different operations. These decisions making strategies are same as we come across in our daily life. But here we will be using […]
C programming tricky objective type operators questions and answers with explanation for written test and interview. (1)What will be output of the following program?
Note : All the programs are tested under Turbo C/C++ compilers. It is assumed that, Programs run under DOS environment. Program is compiled using Turbo C/C++ compiler. The program output may depend on the information based on this assumptions (for example sizeof(int) == 2 may be assumed).
Looping questions and answers with explanation for written test exam and interview in c programming language. Following are the some basic tricky questions in C language. What will be output of following c code? #include<stdio.h> extern int x;
Switch statement is a substitute for long if statements that compare a variable to several “integral” values (“integral” values are simply values that can be expressed as an integer, such as the value of a char). The value of the variable given into switch is compared to the value following each of the cases, and […]