Skip to main content

Eng201 Current 2016 Mid Term Paper




or more discuss and ask question join this group
 
Solved  By : Tahir Siddiqui(Mani)


Paper eng201 today
1.Accuracy types
2.Memo,letter definition for true/false
3.Proposal types
4.Letter of recomendation
5.Bias types for true/false
6.Why statment objective is necessary?
7.Letter of inquiry definition
8.Experts read documents for what purpose?
9.Functional word contain?
10.Conventional resume
11.What word use instead of remuneration?





 Eng201 Mid term Paper 18-dec-2016
MCQS 10 MARKS only one from MOAZ
Subjective
Q1. give an appropriate title to the following definition in the given below (2marks)
............... report is an extension of analytical reports. main focus is to sell an idea,a service, or product.
Q2. identify the given statement True or False (5marks)
1 60-90 percent effect of a message comes from non verbal cues.
2 word choice is one of thr factors of stylistic clarity
3 Technical Accurracy depends upon stylistic accuracy
4 The language associated with but not involving the word system is called paralanfuage
Q3. how can you differentiate between consideration and courtesy (5marks)
Q4. give a short familiar word for yhe following unfamiliar word. Ascertain Consummate Outlandish (3marks)




eng201 today papr
1. Importance of coherence(3)
2. Copmlete a line(2)
3.Choose the correct comunication way(2)
4.write acceptance latter responce to the oppointmant latter (5)
5. write a professional resume of yourself. you are pased MBA exam and have some experience (5)
6. write five advantages of writting(5)
objective sara past papr me sy tha

Comments

Popular posts from this blog

cs302 Solved Quiz

estion # 1 of 10 ( Start time: 03:03:55 PM )  Total Marks: 1    Divide-by-32 counter can be acheived by using   Select correct option:   Flip-Flop and DIV 10  Flip-Flop and DIV 16   Flip-Flop and DIV 32  DIV 16 and DIV 32 Question # 2 of 10 ( Start time: 03:05:20 PM )  Total Marks: 1   The counter states or the range of numbers of a counter is determined by the formula. (“n” represents the total number of flip-flops)   Select correct option:   (n raise to power 2)  (n raise to power 2 and then minus 1)  (2 raise to power n) (2 raise to power n and then minus 1) Question # 3 of 10 ( Start time: 03:06:36 PM )  Total Marks: 1   A 4- bit UP/DOWN counter is in DOWN mode and in the 1010 state. on the next clock pulse, to what state does the counter go?   Select correct option:   1001  1011  0011  1100 Question # 4 of 10 ( Start time: 03:07:37 PM )  Tot...

CS401 Assignment#1 Solution Spring 2018

Assignment No. 1 Graded Semester Spring 2018 Computer Architecture and Assembly Language Programming– CS401 Total Marks: 15 Due Date: 10/05/2018 Question: 1                                                                                                                                        [15...

Array Basic

TOPIC : ARRAY Array is used to store collection of variables of same data type. It may be single dimensional type or multidimensional type.Arrays help a lot ,instead of defining variables again and again , use a single array with multiple variables you want to define. It consists of contiguous memory locations, lowest address corresponds to first element in the array. Single dimensional arrays Syntax: type arrayname[ array size] = {}; Type:  type can be any c++ data type Array size:  array size must be integer constant greater than zero Array name:  valid c++ identifier Example :    int x[1]={10};             ==>  Note:   x is an array of one integer with array size one. Example :    int x[10];                     ==>  Note:   here x is an array of 10 integers                 ...