Posts

SE

1) Explain in details the Capability Maturity Model integration (CMMI) = The Capability Maturity Model Integration (CMMI) is a framework that helps organizations improve their processes and achieve higher levels of performance and quality. It provides a structured approach for assessing and enhancing an organization's ability to develop, manage, and maintain products and services. At its core, CMMI is based on the concept of maturity levels. These levels represent a progression of organizational capabilities, with each level building upon the previous one. There are five maturity levels in CMMI, ranging from Level 1 (the lowest) to Level 5 (the highest). Level 1 - Initial: At this level, processes are usually ad hoc and inconsistent. The organization may rely heavily on individual effort, and there is little standardization or documentation of processes. Level 2 - Managed: This level focuses on establishing basic project management practices. Processes are defined and documented, a...

SQL & PLSQL

1. DDL Statements: a) Create the table Invoice with fields inv_no (char, Primary key), mv_no(number), cust_id (char), Issue_date(date), return_date(date). Insert data in the table invoice as follows: Inv_no mv_no cust_id issue_date return_date 101 1 a01 21-Dec-06 25-Dec-06 102 3 a02 19-Oct-06 30-Oct-06 ..... b) Modifying Table Structure by adding the new field price (number) and increasing the size of Inv_no. C) Add and Drop Constraints c 1) Add primary key constraint ii) Drop primary key constraint lil) Add Unique key constraint iv) Drop Unique key constraint v) Add check constraint Answer= >create table Invoice (inv_no char (5) primary key, mv_no number (4), cust_id char (3), issue_date date, return_date date); > select * from Invoice; >insert into Invoice values ('101', 1, 'a01', '21-Dec-06', '25-Dec -06'); >alter table Invoice add (price number (7)); >alter table Invoice modify (inv_no char (7)); 1)alter table Invoice add primary key (...

or

4.//WAP FOR MAXMIN CRITERION #include<iostream.h> #include<conio.h> #include<math.h> #include<iomanip.h> void main() { int a[5] [5]={{750,1125,375,-375,-1125), (0,1500,3000,2250, 1500}, {-750,750,2250,4125}, {-1500,0,1500, 3000,4500}}; int i,j,1,m,mi, r[5], k; clrscr(); cout<<"\n The summery of DALLY Net Profit:-\n"; for ( i = 0; i < 4 ;i++) { for ( j = 0 ;j<5;j++) cout<<setw (6) <<a[i][j];  cout<<endl; } cout<<"\n Rowwise Maximum: \n"; for ( i = 0; i < 4 ;i++) } 1=a[i][0]; for ( j = 0; j < 5 ;j++) { if (l<a[i][j]) 1=a[i][j];  r[i] = 1; } } for (i=0;i<4;i++) cout<<r[i] <<endl; cout<<"\n Minimax value:-"; m = r[0] ; for ( i = 1; i < 4 ;i++) { if (m > r[i]) { m = r [i]; } } cout<<m; getch(); }

Data structure

Image
download pdf Que 1 and que 2 Both are same because edit if needed Download PDF Que 3 - program to create c Code - #include<iostream> #include<string> #include<iomanip> #include<conio.h> #include<dos.h> using namespace std; class Customer private: char name [20]; char telephone [12]; Customer *next; public: void createRecord (Customer**); void delete Record (Customer**); void displayRecord (Customer*); }; void Customer::createRecord (Customer **START) {  *new Node, tempNode; char cName [20]; char telNo[12]; cout<<"Enter customer name (Do not add spaces): "; cin>>cName; cout<<< "Enter customer telephone: "; cin>>telNo; new Node = new Customer; if (new Node == NULL) { cout<< "Insufficient Memory!\n"; } { else strcpy (new Node->name, cName); strcpy (new Node->telephone, telNo); new Node->next = NULL; if (*START == NULL) { *START= new Node; else { tempNode = *START;  (tempNode->next!= NU...

DBMS

Image
Que 2 Que 3

VB

Image
1.Make an application in visual basic, which display a picture when command button with caption "click here "is clicked.                          Download Code:-  Private Sub Command1_Click() If Picture1.Visible = False Then Picture1.Visible = True Else Picture1.Visible = False End If End Sub 2. Design an application to find... Code:- Private Sub Command3_Click() Dim num As Integer num = Text1.Text If num Mod 2 = 0 Then MsgBoxnum& " is even no", vbInformation, "Check for even/odd" Else MsgBoxnum& " is odd no", vbInformation, "Check for even/odd" End If End Sub Private Sub Command1_Click() Dim n, f, i As Integer f = 1 n = Val(Text1.Text) For i = 1 To n f = f * i Next MsgBox "Factorial is " & f, vbInformation, "Factorial" End Sub Private Sub Command4_Click() Text1.Text = Clear End Sub Private Sub Command5_Click() Unload Me End Sub Private Sub Form() Text1.SetFocus End Sub Private Sub Option1_Cli...