You are on page 1of 2

ASSIGNMENT

Title: ICP

Batch : SP19-BCS-036

Submitted to: Sir SHAFEEQ

Submitted by:Adnan Arshad

Date:1st-March-2019

Difference between64 bit and 32bit….?


Today only a few a computer operating using 32bits use an operating system that utilize 32bits memory
management architecture. These are commonly referred to asX86 systems. And in 2002,Microsoft
released the first commercial 64bits operating system.64bits used by server administrators…The main
difference between 32bit and 64bit operating system is the way that they manage memory .There is
also a better security in XP-64bit because it is written from server 2003SP 1 code base. Many processor
require 64bits operating system instead of 32bits.Manufactures do not offer 32bit driver version for
hardware.

List number of web browser in C++….?


The list of web browsers written in C++ language are as follow:

. Mozilla Firefox

. Safari

. Google Chrome

. Internet Explorer

. Opera

Q# 4
#include <iostream>
using namespace std;
int main()
{
cout << "Adnan \n Adnan \n Adnan \n Adnan \n Adnan ";
system("pause");
}
Q# 4

#include <iostream>
using namespace std;

int main()
{
char* name = "Adnan" ;

cout<< name << endl << name << endl << name << endl << name << endl << name<<endl
;
system("pause");
}

Q# 5
#include <iostream>
using namespace std;
int main()
{
char a[5];
cout << "Enter Your name";
cin >> a;
cout << a;
cout << endl;
cout << a;
cout << endl;
cout << a;
cout << endl;
cout << a;
cout << endl;
cout << a;
cout << endl;
system("pause");

Q # 6
#include <iostream>
using namespace std;
int main()
{
int total, a = 50, b = 100;
total = a + b;
cout << total<<endl;
system("pause");

You might also like