viernes, 28 de enero de 2011

Software Subcontracting Management Processes

Defining and Implementing Software Subcontracting Management Processes in Small Enterprises.

Software subcontracting using the services of an external supplier could be the best option in reducing the implementation and maintenance costs of software and service solutions, and allows a company to improve the efficient use of its resources.
The software subcontracting process for small enterprises is a complicated task around the world because no guidelines exist and, generally, the cost of the product/service is more than companies can afford and software quality is poor. The focus of this paper is to outline a model structure for software subcontracting management in small enterprises.
The model proposed in this paper is the result of the study and convergence of the strengths and weaknesses of some other models (CMMI-DEV, SA-CMM, CMMIAM, ISO/IEC TR 15504, COBIT, and ITIL) that include the software subcontracting process.

http://www.springerlink.com/content/t77285464368t5q1/

lunes, 24 de enero de 2011

IF-ELSE

//ejemplo 1//

       if (x < 100) printf("%f",x);


// ejemplo 2//

 if (estado=='A')
    printf("OK");
 else
    y=0;
 printf("Esto siempre se ejecuta! ");


// Ejemplo 3//

 if ((estado=='A') || (x < 100))
   printf("\n OK");
 else
    y=1;

/* */

// Ejemplo 4   //

 if (x >= 100)
  if (x < 150)   y=1;
 else
   y=0;


  // Ejemplo 5//

  if (x >= 100) {
     if (x < 150)
       y=1;
 }
 else
     y=0;
 printf ("Esto siempre se ejecuta! ");

// Ejemplo 6://
 if (i) {
    if (j==0) y=1;
    if (k==3) y=2;
    else
      y=3;
 }
 else
      y=4;
 printf ("Esto siempre se ejecuta! ");

domingo, 9 de enero de 2011

Programación I

UNIDAD / TEMAS / SUBTEMAS
I.- FUNDAMENTOS DEL LENGUAJE
1.1 Introducción al lenguaje
1.2 Tipos de datos elementales
1.3 Palabras reservadas
1.4 identificadores
1.5 Tipos de datos estructurados
1.6 Operadores elementales
1.7 Expresiones y evaluación de operaciones
1.8 Estructura de un programa

II.-DECLARACIONES
2.1 Tipos de datos simples
2.2 Constantes
2.3 Variables
2.4 Etiquetas

III.- INSTRUCCIONES FUNDAMENTALES
3.1 Instrucciones de asignación
3.2 Instrucciones de I/O
3.3 Instrucciones de condición simple -multiple
3.4 Instrucciones de repetición fija condicional
3.5 Aplicación con anidamiento de instrucciones.

IV.- ARREGLOS
4.1 Unidimensional
4.2 Bidimensional
4.3 Multidimensional.

V.- MÓDULOS
5.1 Funciones internas definidas por el usuario
5.2 procedimientos
5.3 parámetros
5.4 recursión

VI.- DEFINICIÓN DE TIPOS
6.1 Registros
6.2 Conjuntos
6.3 Tipos definidos por el usuario

VII.- INTRODUCCIÓN AL CONCEPTO DE ARCHIVOS
7.1 Fundamentos de archivos
7.2 Archivos secuenciales
7.3 Archivos directos