Entries by Hannah Wangui

Question Question Based on the relational schema below: class=”ql-cursor”> Emp(eid: integer, ename: string, age: integer, salary: real) Works(eid: integer, did: integer, pcttime: integer) Dept(did: integer, dname: string, budget: real, managerid: integer) Express the following queries in Relational Algebra. 1.Find the names and salary of each employee who works in both the Sales Department and the Engineering department (assume that Sales Dept ID =101 and Engineering Dept ID = 201). : class=”ql-cursor”> Emp(eid: integer, ename: string, age: integer, salary: real) Works(eid: integer, did: integer, pcttime: integer) Dept(did: integer, dname: string, budget: real, managerid: integer) Express the following queries in Relational Algebra. 1.Find the names and salary of each employee who works in both the Sales Department and the Engineering department (assume that Sales Dept ID =101 and Engineering Dept ID = 201).

Question Based on the relational schema below: class=”ql-cursor”> Emp(eid: integer, ename: string, age: integer, salary: real) Works(eid: integer, did: integer, pcttime: integer) Dept(did: integer, dname: string, budget: real, managerid: integer) Express the following queries in Relational Algebra. 1.Find the names and salary of each employee who works in both the Sales Department and the Engineering department […]

 

Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code "Newclient"

Question In Python, it is possible to bind a name to objects of different types during the execution of the program. This is possible because Python is a:

Question In Python, it is possible to bind a name to objects of different types during the execution of the program. This is possible because Python is a:   Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code “Newclient”

 

Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code "Newclient"

Question Question What I have so far: (HAS TO BE DONE WITH WHILE LOOPS) #include #include using namespace std; int main(){ int rows; int cols; char c1; char c2; cout <> rows; cout << rows << endl; cout <> cols; cout << cols << endl; cout <> c1; cout << c1 << endl; cout <> c2; cout << c2 << endl; return 0; }#include #include using namespace std; int main(){ int rows; int cols; char c1; char c2; cout <> rows; cout << rows << endl; cout <> cols; cout << cols << endl; cout <> c1; cout << c1 << endl; cout <> c2; cout << c2 << endl; return 0; }

Question What I have so far:(HAS TO BE DONE WITH WHILE LOOPS) #include <iostream> #include <string> using namespace std; int main(){ int rows; int cols; char c1; char c2;  cout << “Enter the number of rows (max 99): “; cin >> rows; cout << rows << endl; cout << “Enter the number of cols (max […]

 

Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code "Newclient"

Question Using C++ How would you write this without using the FOR statements? #include using namespace std; int main() { int a[20], n, i=0; cout<<"Enter a weight (0 to stop): "<> n; while(n!=0) { a[i] = n; i++; cout<<"Enter a weight (0 to stop): "<> n; } int total =0; for(int j=0;j<i;j++) { total+=a[j]; } double average = total/(double)i; cout<<"The total was "<<total<<endl; cout<<"The average is "<<average<<endl; cout<<"Here are all the numbers less than the average: "; for(int j=0;j<i;j++) { if(a[j]<average) cout<<a[j]<<" "; } cout<<endl; return 0; } Output: Enter a weight (0 to stop): 1 Enter a weight (0 to stop): 2 Enter a weight (0 to stop): 3 Enter a weight (0 to stop): 4 Enter a weight (0 to stop): 5 Enter a weight (0 to stop): 6 Enter a weight (0 to stop): 7 Enter a weight (0 to stop): 8 Enter a weight (0 to stop): 9 Enter a weight (0 to stop): 10 Enter a weight (0 to stop): 0 The total was 55 The average is 5.5 Here are all the numbers less than the average: 1 2 3 4 5

Question Using C++ How would you write this without using the FOR statements?#include <iostream> using namespace std; int main() { int a[20], n, i=0; cout<<“Enter a weight (0 to stop): “<<endl; cin >> n; while(n!=0) { a[i] = n; i++; cout<<“Enter a weight (0 to stop): “<<endl; cin >> n; } int total =0; for(int […]

 

Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code "Newclient"