Do I have to pay duty/taxes on a mobile phone which I have been using in Pakistan after returning from abroad?
Latest posts made by Wajahat Ali
-
RE: Steps to Pay PTA Mobile Tax Calculation
-
CS401 Assignment 2 Solution and Discussion Spring 2020
Re: CS401 Assignment 2 Solution and Discussion
CS401 Computer Architecture and Assembly Language Programming Assignment 2 Solution & Discussion Spring 2020
Computer Architecture and Assembly Language Programming (CS401)
Assignment # 02
Total marks = 20 Deadline Date June 12th, 2020
Please carefully read the following instructions before attempting assignment.
RULES FOR MARKING:
It should be clear that your assignment would not get any credit if:
The assignment is submitted after the due date.
The submitted assignment does not open or file is corrupt.
Strict action will be taken if submitted solution is copied from any other student or from the internet.
You should concern the recommended books to clarify your concepts as handouts are not sufficient.
You are supposed to submit your assignment in .doc or docx format.
Any other formats like scan images, PDF, zip, rar, ppt and bmp etc. will not be accepted.Topic Covered:
Addressing Modes
Branching
Subroutines
NOTE:
No assignment will be accepted after the due date via email in any case (whether it is the case of load shedding or internet malfunctioning etc.). Hence refrain from uploading assignment in the last hour of deadline. It is recommended to upload solution file at least two days before its closing date.
If you people find any mistake or confusion in assignment (Question statement), please consult with your instructor before the deadline. After the deadline no queries will be entertained in this regard.
For any query, feel free to email at: [email protected]
Q1. Write a subroutine that will take two arrays Array1 & Array2. Array1 will contain uppercase alphabets from A-M and the Array2 will contain lower case alphabets from n-z. Your subroutine should work in such a way that it will convert array1 elements to lower case and array2 elements to uppercase and populate them in a 3rd array. (Marks 20)
For example:
Array1 = A,B,C,D,E,F,G,H,I,J,K,L,M
Array2= n,o,p,q,r,s,t,u,v,w,x,y,z
Output should be:
Array3= a,b,c,d,e,f,g,h,I,j,k,l,m,N,O,P,Q,R,S,T,U,V,W,X,Y,Z
Note: You can consult to alphabet’s ASCII values through this link:
-
CS625 Assignment 2 Solution and Discussion
Re: CS625 Assignment 2 Solution and Discussion
Assignment No. 02
Semester: Spring 2020
CS625 – Professional Practices
Total Marks: 15Due Date: 12/06/2020
Assignment no. 1 covers Lectures of Week# 5 to 7.
Objectives of Assignment:
• To understand the idea of the Human Resources Management
• To understand the idea of Intellectual Property Rights
• To understand the Organization Financial PracticesUploading instructions:
• Your assignment must be in .doc or docx format.(Any other formats like scan images, PDF, Zip, rar, bmp, etc will not be accepted).
• No assignment will be accepted through email.Rules for Marking:
It should be clear that your assignment will not get any credit if:
• The assignment is submitted after due date.
• The submitted assignment does not open or file is corrupted.
• Your assignment is copied from internet, handouts or from any other student
(Strict disciplinary action will be taken in this case).Question 1 (5 Marks)
Suppose you are a manager of an organization and you want to develop a model of Human resource management in such a way that:
- Employee shows commitment to work earnestly for the organization and to manage himself/herself in achieving the organization goals
- All managers are responsible for the Human resource management.
- How the maximum utilization of Human resource can be available to the enterprise.
What will be the salient features of this model of Human resource management through which all of the above can be achieved?
Question 2 (5 Marks)
Suppose two students, (Zubair and Ali) are doing a research project together. Between the two Zubair is the most punctual, hardworking student and does all the project work on time and completes it. Upon completion of the project he prepares a document containing all the information related to that project. Now on submitting the document he finds out that Ali has already submitted the same document before him with a different name and claims that he himself has made it. Which type of fraud does Zubair has to face from Ali in this regard? Justify your answer with solid reason.
Question 3 (5 Marks)
Suppose a group of fellow’s student graduated from an XYZ university as software engineers decides to set up a company which will provide software services to the clients. For that purpose they have invested a huge amount of money (capital) for starting up their business. Now in the starting period of a company in which area does the capital will be required? List at least five.
NOTE: Submit “.doc” file only. Every student should provide his/her own work, exact copying of the assignment (or some portion of the assignment) from the internet or other students will lead to copy case and zero marks will be awarded. Do not put any query on MDB about this assignment, if you have any query, then email us at [email protected]
Deadline:
Your assignment must be uploaded/submitted on or before 12/06/2020. -
RE: CS602 Assignment 1 Solution and Discussion
Solution.cpp
#include <graphics.h> // driver code int main() { // gm is Graphics mode which is a computer display // mode that generates image using pixels. // DETECT is a macro defined in "graphics.h" header file int gd = DETECT, gm; int left = 200, top = 20; int right = 430, bottom = 460; // initgraph initializes the graphics system // by loading a graphics driver from disk initgraph(&gd, &gm, ""); setcolor(WHITE); settextstyle(DEFAULT_FONT, HORIZ_DIR, 2); outtextxy(10, 20, (char*)"BC123456789"); setcolor(WHITE); setfillstyle(SOLID_FILL,WHITE); rectangle(left, top, right, bottom); bar(200,20,430,460); setcolor(LIGHTRED); setfillstyle(SOLID_FILL,LIGHTRED); circle(left+100,top+280,50); floodfill(left+100,top+280,LIGHTRED); setcolor(LIGHTGREEN); setfillstyle(SOLID_FILL,LIGHTGREEN); circle(left+160,top+340,30); floodfill(left+160,top+340,LIGHTGREEN); setcolor(LIGHTBLUE); line(left,top+280,right,bottom-20); setcolor(LIGHTGREEN); line(left,top+300,right,bottom); setcolor(LIGHTRED); line(left,top+320,right-30,bottom); getch(); // closegraph function closes the graphics // mode and deallocates all memory allocated // by graphics system . closegraph(); }
-
RE: CS101 Lecture 1 Discussion
Sir, what are the steps, in sequence, involved in processing the data into an output?
-
RE: BT301 Lesson-1-14 Discussion
What is difference b/w purine and pyrimidine??