VU HELP
All types of new date Assignments ,quiz,and past papers are available..if you dont found your book Assignment then simply send an email and we send you as soon as possible afzaal394@gmail.com
Friday, 28 August 2015
Thursday, 20 August 2015
Saturday, 8 August 2015
CS615 Software project manager
Question
# 1 of 10 ( Start time: 09:29:50 AM )
Total Marks: 1
The
British Standards Institution (1986) has stated the quality as
·
The ability of a software product to satisfy its
specified requirements
·
"An inherent or distinguishing characteristic or a
property"
·
“Quality is in the eye
of the beholder, a matter, of the client's judgment.”
·
All of the given
Question # 2 of 10 ( Start time: 09:30:33 AM ) Total Marks: 1
The
check-in and checkout facilities provide___________
·
Best control
·
Best control
·
SCI control
·
Synchronization
control
Question # 3 of 10 ( Start time: 09:30:59 AM ) Total Marks: 1
A
baseline version __________
·
Have a short life
·
Can be assigned version numbers 3.2
·
Tested and certified
version of a system
·
Survive only during bug fixing
Question # 4 of 10 ( Start time: 09:31:47 AM ) Total Marks: 1
You
can use the Item Traceability Matrix to identify _______ at the end of each
phase
·
SCIs
·
SCM
·
Design
·
Construction
Question # 5 of 10 ( Start time: 09:32:18 AM ) Total Marks: 1
Defined
scope is a
·
Technology-related problems
·
Product-related
problems
·
Process-related problems
·
People-related problems
Question # 6 of 10 ( Start time: 09:33:13 AM ) Total Marks: 1
Software
requirements engineering is a process of all except
·
Discovery
·
Refinement
·
Design
·
Specification
Question # 7 of 10 ( Start time: 09:33:56 AM ) Total Marks: 1
The
model serves as the basis for the creation of ________ for the Software.
·
Design
·
Maintenance
·
Testing
·
Specifications
Question # 8 of 10 ( Start time: 09:34:34 AM ) Total Marks: 1
Most
software project manager’s practice a lot of management techniques that are of
doubtful authenticity are called
·
Project management tools
·
Project management
myths
·
Project management thumb rules
·
Project management fundamentals
Question # 9 of 10 ( Start time: 09:35:20 AM ) Total Marks: 1
The
Introduction of the software requirements specification states the
·
Goals
·
Objective
·
Design
·
Goals and objectives
of the software
Question # 10 of 10 ( Start time: 09:35:53 AM ) Total Marks: 1
The
quality of software is said to be high if it meets the
·
Standards, defined for the product
·
Procedures, defined for the product
·
Standards and
procedures, defined for the product
·
Design defined for product
MC090409429 : Sharqa
Question # 2 of 10 ( Start time: 06:01:17 PM ) Total Marks: 1
Question # 2 of 10 ( Start time: 06:01:17 PM ) Total Marks: 1
The
distinguishing characteristics of a software product are _________
Question # 3 of 10 ( Start time: 06:02:15 PM ) Total Marks: 1
Insufficient
identification is a
Question # 4 of 10 ( Start time: 06:03:38 PM ) Total Marks: 1
________of
the system is an effort to better understand data and control flow, functional
processing, operational behavior, and information content
Question # 5 of 10 ( Start time: 06:04:56 PM ) Total Marks: 1
These
all are Product Transition Factors except
Question # 6 of 10 ( Start time: 06:06:07 PM ) Total Marks: 1
Inefficient
project management style is a
Question # 7 of 10 ( Start time: 06:07:18 PM ) Total Marks: 1
Finally,
the specification includes a ________
Question # 8 of 10 ( Start time: 06:07:39 PM ) Total Marks: 1
Software
design is actually a multi step process that focuses on distinct attributes of
a program, these are
Question # 9 of 10 ( Start time: 06:08:23 PM ) Total Marks: 1
Software
requirements analysis may be divided into______ areas of effort
Question # 10 of 10 ( Start time: 06:09:16 PM ) Total Marks: 1
McCall
(MCC77) and his colleagues proposed some software quality factors based on
_________ most important aspects of a software product:
CS615 – Software
Project Management
Online Quiz # 2
Total Questions: 8
Question #
1 of 8 ( Start time: 07:32:00 PM ) Total
Marks: 1
………….
theory when the deliverables of a project are more important than its phases.
This normally happens when the deliverables are decided before the project
begins.
Select
correct option:
Project life-cycle-based
Scheduled
None of given
Deliverable-based (handouts pdf file, page
277)
Question #
2 of 8 ( Start time: 07:32:54 PM ) Total
Marks: 1
Predecessor
activities need to ------------ before the next can begin. After a predecessor
activity is completed, the successor activity becomes the predecessor for
another activity.
Select
correct option:
Both start and end
End (handouts, page 297)
Start
None of given
Question #
3 of 8 ( Start time: 07:33:30 PM ) Total
Marks: 1
MCQ,S
Each ………….
can be subdivided into sub tasks.
Select
correct option:
None of given
Program
Task (handouts, page 275)
Project
Question # 4
of 8 ( Start time: 07:34:01 PM ) Total
Marks: 1
Using PERT
and CPM, -----------------------, helps you complete a project on time. By
using these techniques, you can determine the latest time by when an activity
should start to be completed on time.
Select
correct option:
Individually
Combination
Individual and Combine (handouts, page 296)
None of given
Thursday, 6 August 2015
Wednesday, 5 August 2015
CS201 4th ASSIGNMENT.
CS201 4th ASSIGNMENT.
#include <iostream>
#include <stdlib.h>
using namespace std;
class StaffRegistration
{
private:
char cnic[18];
char name[30];
char fname[50];
char dob[11];
char degree[10];
char desig[15];
char sal[10];
char joinDate[11];
char cell[13];
char address[40];
public:
void InputStaffData()
{
//enter
your full name//
cout<<"Program developed By: "<<endl;
//enter
your vu id
cout<<"My VU ID : "<<endl;
cout<<"\nPlease enter National Identity Card
Number(CNIC)"<<endl;
cin.getline(cnic,18);
cout<<"Please enter name"<<endl;
cin.getline(name,30);
cout<<"Please enter father
name"<<endl;
cin.getline(fname,50);
cout<<"Please enter date of birth
(dd/mm/yyyy)"<<endl;
cin.getline(dob,11);
cout<<"Please enter
qualification"<<endl;
cin.getline(degree,10);
cout << "Please enter designation:" <<
endl;
cin.getline(desig,15);
cout<<"Please enter salary"<<endl;
cin.getline(sal,10);
cout<<"Please enter joining date
(dd/mm/yyyy)"<<endl;
cin.getline(joinDate,11);
cout<<"Please enter contact
number"<<endl;
cin.getline(cell,13);
cout<<"Please enter address
information"<<endl;
cin.getline(address,40);
cout<<"\nRecord added successfully
!!!"<<endl;
}
void DisplayStaffData()
{
cout<<"CNIC:
\t\t\t"<<cnic<<endl;
cout<<"Name:
\t\t\t"<<name<<endl;
cout<<"Father Name: \t\t"<<fname<<endl;
cout<<"DoB: \t\t\t"<<dob<< endl;
cout<<"Qualification:
\t\t"<<degree<<endl;
cout<<"Designation:
\t\t"<<desig<<endl;
cout<<"Salary: \t\t"<<sal<<endl;
cout<<"Joining Date:
\t\t"<<joinDate<<endl;
cout<<"Contact Number:
\t"<<cell<<endl;
cout<<"Address:
\t\t"<<address<<endl;
}
};
main()
{
system("cls");
StaffRegistration emp;
emp.InputStaffData();
cout<<"---------------------------------------------------------------------------"<<endl;
cout<<"\t \t \t DISPALAY STAFF
INFORMATION"<<endl;
cout<<"---------------------------------------------------------------------------"<<endl;
emp.DisplayStaffData();
cout<<"---------------------------------------------------------------------------"<<endl;
system("pause");
}
CS201 INTRODUCTION TO PROGRAMMING COMPLETE SOLVED PAPER
CS201- Introduction to Programming Complete Solved Paper
|
MIDTERM EXAMINATION
|
|
Spring 2009
|
|
CS201- Introduction to Programming
(Session - 1)
|
|
Question No:
1 ( Marks: 1 ) - Please choose one
|
|
In C/C++ the #include is called,
|
|
Header file
|
|
Preprocessor Directive
|
|
Statement
|
|
Function
|
|
Question No:
2 ( Marks: 1 ) - Please choose one
|
|
To access the element of two dimensional
array we use,
|
|
Single referencing
|
|
Single dereferencing
|
|
Double dereferencing
|
|
Double referencing
|
|
Question No:
3 ( Marks: 1 ) - Please choose one
|
|
Data Size of the file is always _________
the actual size of the file.
|
|
Greater than
|
|
Equal to
|
|
Less than or equal to
|
|
None of the above
|
|
Question No:
4 ( Marks: 1 ) - Please choose one
|
|
When an identifier is declared with
keyword const then,
|
|
Its value can be changed during execution.
|
|
Its value can not be changed
|
|
Its value can be changed with arithmetic
operator
|
|
Its value can be overwritten
|
|
Question No:
5 ( Marks: 1 ) - Please choose one
|
|
In C/C++ if we define an array of size
eight (8) i.e. int Arr [8]; then the last
|
|
element of this array will be stored at,
|
|
Arr[0]
|
|
Arr[8]
|
|
Arr[7]
|
|
Arr[-1]
|
|
Question No:
6 ( Marks: 1 ) - Please choose one
|
|
If it is required to copy an array to
another array then,
|
|
Both arrays must be of the same size and
data type
|
|
Both arrays may be of different size
|
|
Both arrays may be of different data type
|
|
Both arrays may be of different size and
type
|
|
Question No:
7 ( Marks: 1 ) - Please choose one
|
|
In C/C++ all character strings are
terminated with,
|
|
Null character
|
|
String
|
|
Zero
|
|
Full stop
|
|
Question No:
8 ( Marks: 1 ) - Please choose one
|
|
Let suppose
|
|
struct intorDouble{
|
|
Int ival;
|
|
Double charvar;
|
|
};
|
|
main(){
|
|
intorDouble VAZ;
|
|
int size ;
|
|
size = sizeof(VAZ);
|
|
}
|
|
What will be the value of variable size,
if int occupies 4 bytes and double occupies 8
|
|
bytes?
|
|
2
|
|
4
|
|
8
|
|
12
|
|
Question No:
9 ( Marks: 1 ) - Please choose one
|
|
When a pointer is incremented, it actually
jumps the number of memory
|
|
addresses
|
|
According to data type
|
|
1 byte exactly
|
|
1 bit exactly
|
|
A pointer variable can not be incremented
|
|
Question No:
10 ( Marks: 1 ) - Please choose one
|
|
Do-while loop executes at least,
|
|
Zero Time
|
|
One Time
|
|
Two Times
|
|
N Times
|
|
Question No: 11
( Marks: 1 ) - Please choose one
|
|
+= , *= , /= , etc are
called,
|
|
Assignment operators
|
|
Logical operator
|
|
Compound assignment operator
|
|
Unary operator
|
|
Question No:
12 ( Marks: 1 ) - Please choose one
|
|
Computer can understand only machine language
code.
|
|
True
|
|
False
|
|
Question No:
13 ( Marks: 1 ) - Please choose one
|
|
Which of the following is the correct
syntax to print multiple values or variables in
|
|
a single command using cout?
|
|
cout << "Hello" + x +
"\n";
|
|
cout << "H" << x
<< "\n";
|
|
cout << "H", x,
"\n";
|
|
cout << ("H" & x &
"\n");
|
|
Question No:
14 ( Marks: 1 ) - Please choose one
|
|
The compilers and interpreters also belong
to the System Software category.
|
|
True
|
|
False
|
|
Question No:
15 ( Marks: 1 ) - Please choose one
|
|
Editors are used to compile the code.
|
|
True
|
|
False
|
|
Question No:
16 ( Marks: 1 ) - Please choose one
|
|
The variables having a name, type and size
are just like empty boxes.
|
|
True
|
|
False
|
|
Question No:
17 ( Marks: 1 )
|
|
For Exclusive Projects, Reports &
Latest Papers
|
|
What will be the result of the statement?
|
|
rand ( ) % 50
|
|
Question No:
18 ( Marks: 1 )
|
|
What is the ASCII code of null character
and how is it represented?
|
CS201 INTRODUCTION TO PROGRAMMING COMPLETE SOLVED PAPER....
Question No:
19 ( Marks: 2 )
|
|
What is a truth Table?
|
|
Question No:
20 ( Marks: 3 )
|
|
How learning to design programs is like
learning to play soccer?
|
|
Question No:
21 ( Marks: 5 )
|
|
What is the purpose of the default
statement in the switch statement?
|
|
Question No:
22 ( Marks: 10 )
|
|
Write a program which contains a user
defined function named
|
|
ConvertInSeconds
|
|
that
|
|
takes 3 integer arguments hours, minutes
and seconds, this function converts the time into
|
|
seconds and returns the number of seconds.
|
|
Input variables hours , minutes and
seconds in main program and call the function
|
|
ConvertInSeconds
|
|
and display the number of seconds returned
by function.
|
|
Hint:
|
|
1 hour =60 minutes
|
1 minute =60 seconds
Subscribe to:
Comments (Atom)


