Index: S. No. Topics Signature
Index: S. No. Topics Signature
Features.
2.Laptop or Notebook – A PC that can be moved around is called a laptop. It gets its
name from the fact that you can keep it on your lap and use it. It is also called a
notebook because you can carry the battery-operated device to classes or meetings
conveniently and store any notes or information in it. It integrates the monitor,
keyboard, pointing device, CPU, memory and hard drive in one system.
4.Server – The server’s main purpose is to provide certain services to other computers
or a whole network of computers. It is much larger than any average computer and
generally a whole room is necessary to fit the whole server. It has powerful processors,
additional amount of memory and bigger hard drives.
6.Supercomputer – This type of computer processes data much faster than a regular
system. It is the leader in processing capacity and costs millions of dollars. A
supercomputer is used for sensitive and calculation-intensive work such as scientific
research, physical simulation, climate studies, oil and natural gas exploration, weather
forecasting, quantum physics, to name a few.
CISC processor:
2.It is prominent on hardware, that is depends more on hardware from its proper
functioning.
4.More memory space and time is required due to many instruction cycles to perform
complex operations.
5.It has multi clock and fan required with the circuitry.
RISC processor:
EPIC processor:
Multicore processor:
1.On a single chip, there are many core processor chips present. Each processor chip is
more efficient.
3.Multicore processors consume less power and generate less heat than single core
single core processor chip.
QUES.:- Explain various symbols used in flow charts. Draw the flow chart to
compute the factorial of a number using iterative method.
ANS:-
1. When you have a step in your process that has only one possible next step, you
use a process symbol.
2. Arrows connect up the symbols in your flowchart, guiding the reader through
the sequence of process steps. Flow moves in the direction in which the arrows
point.
3. A rectangle with rounded cap ends — called a terminator — gets used to start
and end each flowchart process path.
4. The decision symbol marks a branching point in your process, such as one that
requires a choice. At least two arrows should emerge from a decision symbol. If
your choice isn’t binary, add more than two arrows neatly.
Any time you have more than one arrow emerging from a symbol those arrows
need to be labeled for clarity.
5. The catchall input / output symbol stands in for input and output from your
process, regardless of the form it takes. If you want to be more specific about the
form, use one of the other I/O symbols.
6. The catchall input / output symbol stands in for input and output from your
process, regardless of the form it takes. If you want to be more specific about the
form, use one of the other I/O symbols.
FACTORIAL OF A GIVEN NUMBER:-
QUES.:-Define Algorithm. Write an algorithm (i) to sort 10 names of a class and (ii)
roots of a quadratic equation.
For any algorithm to be correct, it should halt and satisfy the relation.
Properties of Algorithm are:
1. Efficiency
2. Finiteness
3. Generality
4. Non-ambiguity
#include<iostream>
#include<conio.h>
#include<string.h>
using namespace std;
int main()
{ char str[10][20], t[20];
int i, j;
cout<<"Enter any 10 string (name) : ";
for(i=0; i<10; i++)
cin>>str[i];
for(i=1; i<10; i++)
{ for(j=1; j<10; j++)
{ if(strcmp(str[j-1], str[j])>0)
{ strcpy(t, str[j-1]);
strcpy(str[j-1], str[j]);
strcpy(str[j], t);
}
}
}
cout<<"Strings (Names) in alphabetical order : \n";
for(i=0; i<10; i++)
cout<<str[i]<<"\n";
getch();
return 0;
}
ANS.:-
Quick access toolbar:- The Quick Access Toolbar is a customizable toolbar that
contains a set of commands that are independent of the tab on the ribbon that is
currently displayed. You can move the Quick Access Toolbar from one of the two
possible locations, and you can add buttons that represent commands to the Quick
Access Toolbar.
Format painter:- Use the Format Painter on the Home tab to quickly apply the
same formatting, such as color, font style and size, and border style, to multiple pieces
of text or graphics. The format painter lets you copy all of the formatting from one
object and apply it to another one – think of it as copying and pasting for formatting.
Mail Merge:- Mail merge is used to create multiple documents at once. These
documents have identical layout, formatting, text, and graphics. Only specific sections
of each document varies and is personalized. The documents Word can create with mail
merge include bulk labels, letters, envelopes, and emails. There are three documents
involved in the mail merge process:
1.your main document.
2.your data source.
3.your merge document.
QUES.:-Assume there are four subjects in a class- English, Mathematics, Science, and
Social. Create a table for 20 students and mention the marks secured by each student
in each of the four subjects. The maximum mark of each subject 100 and the pass
mark is 50. Using excel, find the percentage of each student. If the student marks in
all subjects is more than 50 indicate PROMOTED else indicate “NOT PROMOTED”.
Calculate the aggregate pass and fail percentage of the class. Draw the respective bar
chart for each student and pie chart for the entire class.
Answer:
QUES.:-Using access, create an employee database for 10 employees in a company.
The employee records are : name,age,gender,designation,date of joining,
Basic pay,allowances,previous experience,address,phone number.
ANS:-
Ques: Design a Power Point Presentation on the topic of your interest.
Ans:
Ques: Program to draw sine wave
Ans:
#include <conio.h>
#include <math.h>
#include <graphics.h>
#include <dos.h>
int main() {
int gd = DETECT, gm;
int angle = 0;
double x, y;
/* increment angle */
angle+=5;
}
getch();
return 0;
}