Earn upto Rs. 9,000 pm checking Emails. Join now!

Enter your email address:

Delivered by FeedBurner

Tuesday, October 15, 2013

Oxford English Grammar, Multi Choice Questions For Information Technology Officer,Panjab and Haryana High Court Clerk Job And IBPS Job Or Bank Clerk Post



Computer Multi Choice Questions Information Technology Officer Post and  For Panjab and Haryana High Court Clerk Job And IBPS Job Or Bank Clerk Post


Computer Multi Choice Questions Information Technology Officer Post and  For Panjab and Haryana High Court Clerk Job And IBPS Job Or Bank Clerk Post

Basic English Grammar For Panjab and Haryana High Court Clerk Job And IBPS Job Or Bank Clerk Post Part-II

Computer Multi Choice Questions Information Technology Officer Post and  For Panjab and Haryana High Court Clerk Job And IBPS Job Or Bank Clerk Post


Basic English Grammar For Panjab and Haryana High Court Clerk Job And IBPS Job Or Bank Clerk Post Part-III

Computer Multi Choice Questions Information Technology Officer Post and  For Panjab and Haryana High Court Clerk Job And IBPS Job Or Bank Clerk Post


Multi Choice Questions Information Technology Officer Post and  For Panjab and Haryana High Court Clerk Job And IBPS Job Or Bank Clerk Post

Networking Questions with Multi Choice Questions for Information Technology Officer Post and  For Panjab and Haryana High Court Clerk Job And IBPS Job Or Bank Clerk Post


Oxford English Grammar For Panjab and Haryana High Court Clerk Job And IBPS Job Or Bank Clerk Post Part-III

Wednesday, February 13, 2013

BBC World TV Quiz Game



BBC World TV Quiz Game 
1.       Which gate of Delhi was renamed Victoria after the recapture of the city by the British in 1857?
Ans---Lahori Gate
2.       Who is the only individual to have won a gold medal at both the summer and winter Olympics?
Eddie Eagan
3.       Who led the Russian army, when it finally gave battle to Napolean Bonaparte at Borodine in September 1812?
Ans---General Kutusov
4.       Which psychological probe for personality traits based on the interpretation of ink blots is named after its Swiss creator?
Ans---Rorschach test
5.       What name did the Roman Emperor Gaius Caesar adopt from the Latin for ‘little boot’?
Ans---Caligula
6.       Who had presented the gem to Sita which she sent back with Hanuman as a token for Rama?
Ans---Janaka
7.       Before Zinedine Zidane, who was the last player to score two goals in a world cup final match?
Ans---Mario Kempes of Argentina in 1978
8.       Inspired by the ancient Shilpashastras, which Indian city was designed and constructed by Vidyadhar Chakarborty?
Ans--Jaipur
9.       Of which political group of the French Revolution did Tipu Sultan become a member, even while at Seringaptam?
Ans---The Jacobin Club
10.   In 1932 from which city did JRD Tata fly to Bombay in the first ever commercial mail flight in the subcontinent?
Ans---Karachi
11.   Which stretch of water, by its shape is also known as La Manche, French for ‘the sleeve’?
Ans---English Channel
12.   What wasthe name of the Portuguese taxation system by which every Indian ship sailing for trade had to buy passes from the viceroy of Goa?
Ans---Cartaze
13.   What was the name given to the Tsarist parliament instituted by Nicholas II in 1905?
Ans---duma
14.   What was Nazi Germany air force called ?
Ans---Luftwaffe
15.   Which social practice was abolished by lord William Bentinck by ‘Regulation 17’ of 1829?
Ans---Sati
16.   On which Bengali novelist’s story did Mrinal Sen case his 1969 Hindi film Buvan Shome’?
Ans—Bonophool by bolai chandra
17.   What political movement was started in 1870 by Isaac Butt in Ireland and later influenced a similar movement in india?
Ans---home Rule Association
18.   Which greek mythological figure was endowed by the gift of prophecy but was fated never to be belived?
Ans---Cassandra
19.   How many colours are there on the squares of Rubik cube?
Ans---Six
20.   The name of which US public opinion statistician has now become a generic term for sample surveys of public opinion?
Ans--- George Gallup

Monday, February 4, 2013

ANALYSIS AND DESIGN OF ALGORITHMS


What do you mean by algorithm analyze

Algorithm analysis is important in practice because the accidental or unintentional use of an inefficient algorithm can significantly impact system performance. In time-sensitive applications, an algorithm taking too long to run can render its results outdated or useless. An inefficient algorithm can also end up requiring an uneconomical amount of computing power or storage in order to run, again rendering it practically useless.
In computer science, the analysis of algorithms is the determination of the number of resources (such as time and storage) necessary to execute them. Most algorithms are designed to work with inputs of arbitrary length. Usually the efficiency or running time of an algorithm is stated as a function relating the input length to the number of steps (time complexity) or storage locations (space complexity).
Algorithm analysis is an important part of a broader computational complexity theory, which provides theoretical estimates for the resources needed by any algorithm which solves a given computational problem. These estimates provide an insight into reasonable directions of search for efficient algorithms.
In theoretical analysis of algorithms it is common to estimate their complexity in the asymptotic sense, i.e., to estimate the complexity function for arbitrarily large input. Big O notation, Big-omega notation and Big-theta notation are used to this end. For instance, binary search is said to run in a number of steps proportional to the logarithm of the length of the list being searched, or in O(log(n)), colloquially "in logarithmic time". Usually asymptotic estimates are used because different implementations of the same algorithm may differ in efficiency. However the efficiencies of any two "reasonable" implementations of a given algorithm are related by a constant multiplicative factor called a hidden constant.
Exact (not asymptotic) measures of efficiency can sometimes be computed but they usually require certain assumptions concerning the particular implementation of the algorithm, called model of computation. A model of computation may be defined in terms of an abstract computer, e.g., Turing machine, and/or by postulating that certain operations are executed in unit time. For example, if the sorted list to which we apply binary search has n elements, and we can guarantee that each lookup of an element in the list can be done in unit time, then at most log2 n + 1 time units are needed to return an answer.



Distinguish between quick and heap sort
Heapsort:
Heapsort is a much more efficient version of selection sort. It also works by determining the largest (or smallest) element of the list, placing that at the end (or beginning) of the list, then continuing with the rest of the list, but accomplishes this task efficiently by using a data structure called a heap, a special type of binary tree. Once the data list has been made into a heap, the root node is guaranteed to be the largest element. When it is removed and placed at the end of the list, the heap is rearranged so the largest element remaining moves to the root. Using the heap, finding the next largest element takes O(log n) time, instead of O(n) for a linear scan as in simple selection sort. This allows Heapsort to run in O(n log n) time.

Quicksort, or partition-exchange sort, is a sorting algorithm that, on average, makes O(n log n) comparisons to sort n items. In the worst case, it makes O(n2) comparisons, though this behavior is rare. Quicksort is often faster in practice than other O(n log n) algorithms.[1] Additionally, quicksort's sequential and localized memory references work well with a cache. Quicksort can be implemented with an in-place partitioning algorithm, so the entire sort can be done with only O(log n) additional space.
Quicksort is a comparison sort and, in efficient implementations, is not a stable sort. It was developed by Tony Hoare.
Quicksort is a divide and conquer algorithm. Quicksort first divides a large list into two smaller sub-lists: the low elements and the high elements. Quicksort can then recursively sort the sub-lists.
The steps are:
Pick an element, called a pivot, from the list.
Reorder the list so that all elements with values less than the pivot come before the pivot, while all elements with values greater than the pivot come after it (equal values can go either way). After this partitioning, the pivot is in its final position. This is called the partition operation.
Recursively sort the sub-list of lesser elements and the sub-list of greater elements.
The base case of the recursion are lists of size zero or one, which never need to be sorted.


What is sorting? Explain insertion sorting in details.
Sorting is typically done in-place, by iterating up the array, growing the sorted list behind it. At each array-position, it checks the value there against the largest value in the sorted list (which happens to be next to it, in the previous array-position checked). If larger, it leaves the element in place and moves to the next. If smaller, it finds the correct position within the sorted list, shifts all the larger values up to make a space, and inserts into that correct position.
The resulting array after k iterations has the property where the first k + 1 entries are sorted ("+1" because the first entry is skipped). In each iteration the first remaining entry of the input is removed, and inserted into the result at the correct position.

The most common variant of insertion sort, which operates on arrays, can be described as follows:
Suppose there exists a function called Insert designed to insert a value into a sorted sequence at the beginning of an array. It operates by beginning at the end of the sequence and shifting each element one place to the right until a suitable position is found for the new element. The function has the side effect of overwriting the value stored immediately after the sorted sequence in the array.
To perform an insertion sort, begin at the left-most element of the array and invoke Insert to insert each element encountered into its correct position. The ordered sequence into which the element is inserted is stored at the beginning of the array in the set of indices already examined. Each insertion overwrites a single value: the value being inserted.




Distinguish between linear and binary search.
| Binary search | Linear search |
-------------------------------------------------------------------------------------------------------------------------
1).Data must be in a sorted order | 1).Data any order
2).Time complexity is O(log n) | 2).Time complexity is O(n).
3).Only 1 "When" condition used | 3).Any no. of "When" condition used
4).Only "=" relation operator is used | 4).any relation operator is used
5).Access is faster | 5).Access is slow
6).Only single dimensional array used | 6).single/multi dimensional array used


A linear search works by looking at each element in a list of data until it either finds the target or reaches the end. This results in O(n) performance on a given list.
A binary search comes with the prerequisite that the data must be sorted. We can leverage this information to decrease the number of items we need to look at to find our target. We know that if we look at a random item in the data (let's say the middle item) and that item is greater than our target, then all items to the right of that item will also be greater than our target. This means that we only need to look at the left part of the data. Basically, each time we search for the target and miss, we can eliminate half of the remaining items. This gives us a nice O(log n) time complexity.
Just remember that sorting data, even with the most efficient algorithm, will always be slower than a linear search (the fastest sorting algorithms are O(n * log n)). So you should never sort data just to perform a single binary search later on. But if you will be performing many searches (say at least O(log n) searches), it may be worthwhile to sort the data so that you can perform binary searches. You might also consider other data structures such as a hash table in such situations.
binary search runs in O(logn) time whereas linear search runs in O(n) times thus binary search has better performance.



Describe the efficiency of linear search
In computer science, linear search or sequential search is a method for finding a particular value in a list, that consists of checking every one of its elements, one at a time and in sequence, until the desired one is found.
Linear search is the simplest search algorithm; it is a special case of brute-force search. Its worst case cost is proportional to the number of elements in the list; and so is its expected cost, if all list elements are equally likely to be searched for. Therefore, if the list has more than a few elements, other methods (such as binary search or hashing) will be faster, but they also impose additional requirements.
Efficiency of Linear Search
Having implemented the linear search algorithm, how would you measure its efficiency? A useful measure (or metric) would be general, applicable to any (search) algorithm. Since a more efficient algorithm would take less time to execute, one approach would be to write a program for each of the algorithms to be compared, and execute them, measuring the time each takes to finish. However, a better metric would allow algorithms to be evaluated before implementing them.
One such metric is the number of main steps the algorithm will require to finish. Of course, the exact number of steps depends on the input data. For the linear search algorithm, the number of steps depends on whether the target is in the list, and if so, where in the list, as well as on the length of the list.
For search algorithms, the main steps are the comparisons of list values with the target value. Counting these for data models representing the best case, the worst case, and the average case produces the following table. For each case, the number of steps is expressed in terms of n, the number of items in the list.




What do you mean by minimum spanning tree?
Given a connected, undirected graph, a spanning tree of that graph is a subgraph that is a tree and connects all the vertices together. A single graph can have many different spanning trees. We can also assign a weight to each edge, which is a number representing how unfavorable it is, and use this to assign a weight to a spanning tree by computing the sum of the weights of the edges in that spanning tree. A minimum spanning tree (MST) or minimum weight spanning tree is then a spanning tree with weight less than or equal to the weight of every other spanning tree. More generally, any undirected graph (not necessarily connected) has a minimum spanning forest, which is a union of minimum spanning trees for its connected components.
One example would be a telecommunications company laying cable to a new neighborhood. If it is constrained to bury the cable only along certain paths, then there would be a graph representing which points are connected by those paths. Some of those paths might be more expensive, because they are longer, or require the cable to be buried deeper; these paths would be represented by edges with larger weights. A spanning tree for that graph would be a subset of those paths that has no cycles but still connects to every house. There might be several spanning trees possible. A minimum spanning tree would be one with the lowest total cost.

Monday, January 21, 2013

Best Computer And Programming Books


Best Computer And Programming Books

Visual_C_Optimization_With_Assembly_Code_chm

Windows_Assembly_Programming_Tutorial_pdf

iPad_and_iPhone_Tips_and_Tricks_pdf

Windows_Phone_7_Developer_Guide_Building_connected_mobile_applications_with_Microsoft_pdf

Sams_Teach_Yourself_Windows_Phone_7_Game_Programming_in_24_Hours_pdf

theForgers_Win32_Tutorial_pdf

Wiley-Windows_Phone_7_Secrets_2010_di-0384_pdf

Programming_Applications_for_Windows_4ed_chm

Microsoft_Press_ebook_Introducing_Windows_8_PDF_pdf

Introducing_Windows_7_for_Developers_pdf

Embedded_Systems_Design_-_May_2011_True_PDF_pdf

iPhone_Secrets_pdf

Working_w_MS_Office_365_-_Running_Your_Sm_Bus_in_the_Cloud_-_B_Hill_MS_Press_2012_BBS_pdf

Programming_Windows_-_Charles_Petzold_5th_ed_chm

Effective_amp_More_Effective_C_chm

Microsoft_SQL_Server_2008_Administration_with_Windows_PowerShell_tqw_darksiderg_pdf

Windows_8_for_Dummies_pdf

O_Reilly_-_Programming_The_Mobile_Web_1st_Ed_-_Aug_2010_pdf

COM_Programming_-_A_Practical_Guide_Using_Visual_C_and_ATL_chm

Pro_ASP_NET_3_5_in_VB_2008_Includes_Silverlight_2_tqw_darksiderg_pdf

Microsoft_Press_ebook_Programming_Windows_Phone_7_PDF_pdf

WPF_Unleashed_pdf

Programming_Windows_with_MFC_by_Jeff_Prosise_2nd_Edition_chm

Professional_Mobile_Application_Development_V413HAV_pdf

Search_Engine_Optimization_SEO_Secrets_pdf

Windows_Phone_7_For_Dummies_pdf

Embedded_Systems_Design_with_8051_Microcontrollers_Hardware_and_Software_pdf

Pro_SQL_Server_2012_Integration_Services_2012_pdf

Pro_WPF_in_C_2010_pdf

OReilly_Programming_WPF_2nd_Edition_pdf

Sunday, January 20, 2013

Top New Abbreviations



Top New Abbreviations

BRICS                                   
Brazil, Russia, China and South Africa along with India


TPP
Trans Pacific Partnership

IMF
International Monetary Fund


UPA
United Progressive Alliance

IRSTC
India Russia Science and Technology centre

CERN
European Organization for Nuclear Research, known as CERN 


LHC
Large Hadron Collider

RDIF
Russian Direct Investment Fund

ASEAN
India and the Association of South East Asian Nations (Summit in New Delhi on December 20, 2012 finalized their FTA on services and investment.
 

FTA
Free Trade Agreement


RCEP
Regional Comprehensive economic partnership

NDC
The National Development Council approved the 12th Five year Plan document on December 27, 2012

CDSCO
The Central Drugs Standard Control Oranisation
CCI
Cabinet Committee on investment


AERB
The Atomic Energy Regulatory Board


FDI
Foreign direct Investment


FEMA
Foreign Exchange Management Act

AQIM
Al.Qaeda’s North African Wing


ITU
UN telecommunications Union

IAEA
International Atomic Energy Agency

NPT
Nuclear Non-proliferation Treaty



ICDS
Integrated Child Development Services


DST
Department of Science and Technology

CORE
Centre of Relevance and Excellence

FIPB
Foreign investment promotion board


NCHER
National commission for higher education and research

UNDOF
UN Disengagement observer Force


ITBP
IndoTibetan Border Police Force


NSG
National Security Guard

ICSI
Institute of company secretaries of India


CII
Confederation of Indian industry


UNFCCC
United Nation Framework convention on climate change


DRDO
The Defense research and development Organization

ITR
Integrated test range

CCEA
The Cabinet committee on economic affairs

CEBR
Centre for economics and business research


SERIIUS
Solar Energy Research initiative of India and united states

DAVP
Directorate of advertising and visual publicity

IRINN
Indian registry for internet names and numbers

GTI
Global terrorism index

NPOL
Naval physical and oceanographic laboratory

CPI
Corruption perception index

MCTS
Mother and child tracking system

CRGFT
Credit risk guarantee fund trust

CAD
India current account deficit

GFI
Global financial integrity


WPI
Wholesale price index


CAT
Creative ability test

Tuesday, January 15, 2013

Lots of questions answers,CELL BIOLOGY and GENETICS,ANATOMY, PHSIOLOGY, MICROBIOLOGY, HEALTH and HYGIENE,Diploma HISTORY AND PRINCIPLE OF PHYSICAL EDUCATION,INFORMATION, COMMUNICATION AND SOCIETY,FUNDAMENTALS OF GENERAL MATHEMATICS,FUNDAMENTALS OF INORGANIC CHEMISTRY, Bio statistics and Computer application,LIFE & DIVERSITY FROM PROTOZOA TO PORIFERA and CELL BIOLOGY,PRINCIPLES OF MOLECULAR BIOLOGY AND BIOTECHNOLOGY,MANAGEMENT FUNCTIONS AND BEHAVIOR


FUNDAMENTALS_OF_HOSPITALITY_INDUSTRY_doc
CERTIFICATE_IN_MULTIPORPUSE_HEALTH_WORK_1ST_YEAR_doc
DIVERSITY_OF_MICROBES_doc
BASICS_OF_COMPUTER_doc
ECONOMICS_THEORY_doc
HISTORY_AND_PRINCIPLE_OF_PHYSICAL_EDUCATION_doc
INFORMATION_COMMUNICATION_AND_SOCIETY_doc
ADVANCED_REPORTING_doc
FUNDAMENTALS_OF_GENERAL_MATHEMATICS_doc
ANATOMY_PHSIOLOGY_MICROBIOLOGY_HEALTH_amp_HYGIENE_Diploma_doc
BEHAVIOUR_IN_ORGANIZATION_doc
ELEMENTS_OF_DRAWING_AND_PAINTING_doc
Adhunik_Kavya_pdf
CELL_BIOLOGY_AND_PHYSIOLOGY_doc
FOOD_PRODUCTION_PRINCIPLES-III_doc
ANATOMY_doc
Fundamentals_of_Basic_Fashion_doc
Biostatistics_and_Computer_application_doc
BPP_Year-I_doc
COMMUNICATION_amp_PRESENTATION_SKILLS_doc
CLASSICAL_MECHANICS_doc
History_of_India_from_earliest_time_to_1206_AD_doc
INDUSTRIAL_SAFETY_doc
ENGLISH_POETRY_AND_DRAMA-1_doc
BASIC_OF_HUMAN_ANATOMY_doc
CLASSICAL_QUANTUM_amp_STATISTICAL_PHYSICS_doc
BASICS_OF_HUMAN_ANATOMY_doc
B_A_H_M_1_Sem_one_paper_balance_doc
INDIAN_SOCIETY_doc
EFFECTIVE_COMMUNICATION_SKILLS_doc
FUNDAMENTALS_OF_INORGANIC_CHEMISTRY_doc
INDIA_IN_THE_ANCIENT_AGE_doc
CELL_BIOLOGY_amp_GENETICS_doc
FOOD_AND_BEVERAGE_MANAGEMENT_doc
Diploma_in_Yoga_amp_Health_SEMESTER_1_doc
DRAWING_TECHNIQUES_AND_APPROACHES_doc
ENVIRONMENTAL_BIOLOGY_doc
ALGAE_FUNGI_amp_BRYOPHYTES_doc
CLASSICAL_MECHANICS_M_Sc_Physics_doc
ART_amp_GRAPHICS_Dip_Inter_Design_doc
CELL_BIOLOGY_doc
BACHELOR_OF_ARTS_GENERAL_YEAR-_3_doc
CLASSICAL_MECHANICS_AND_THEORY_OF_RELATIVITY_doc
HISTOLOGY_ROUTINE_AND_SPECIAL_STAINING_doc
GRAMMAR_AND_LINGUISTICS_pdf
FOUNDATION_COURSE_IN_ENGLISH_PART_I_doc
ART_amp_GRAPHICS_doc
INDIAN_PHILOSOPHY_doc
BACHELOR_OF_ARTS_GENERAL_YEAR-_1_doc
MASTER_OF_ARTS_SOCIOLOGY_YEAR_1_doc LIFE_amp_DIVERSITY_FROM_PROTOZOA_TO_PORIFERA_amp_CELL_BIOLOGY-1_doc LIBRARY_CLASSIFICATION_THEORY_doc Media_Evolution_and_Trends_doc MANAGEMENT_FUNCTIONS_AND_BEHAVIOR_doc INORGANIC_CHEMISTRY-I_doc Media_Evolution_and_Trends_PGD_in_PJ_doc INTRODUCTION_TO_TRADE_THEORY_Fiter_Mech_doc MANAGEMENT_FUNCTIONS_amp_BEHAVIOUR_doc PRINCIPLES_OF_SOCIOLOGY_doc PRINCIPLES_OF_ANATOMY_doc INTRODUCTION_TO_TRADE_THEORY_Ref_doc PRINCIPLES_OF_ENVIRONMENTAL_SCIENCES_doc Library_and_Society_doc PRINCIPLES_OF_MOLECULAR_BIOLOGY_AND_BIOTECHNOLOGY_doc MASTERS_OF_ARTS_ENGLISH_YEAR-_1_doc Prachin_Kavya_doc RASA_SHASTRA_AND_BHAISHJYA_KALPANA-I_doc MASTER_OF_ARTS_YHE_YEAR_1_doc INTRODUCTION_TO_BIOINFORMATICS_amp_IT_doc PHYSIOLOGICAL_PSYCHOLOGY_doc MECHANICS_AND_RELATIVITY_doc PHILOSOPHICAL_FOUNDATION_OF_EDUCATION_doc INTRODUCTION_TO_PHARMACY_doc PGDPJ_SEMESTER_1_doc INTRODUCTION_TO_TRADE_THEORY_Elecrician_doc MASTER_OF_ARTS_POLITICAL_SCIENCE_YEAR-_1_amp_2_doc YOG_KI_MUKHYA_PARAMPARAYEN_doc STATISTICAL_METHOD_doc MASTERS_OF_ARTS_ECONOMICS_YEAR-_1_amp_2_doc PLANT_PHYSIOLOGY_doc INTRODUCTION_TO_TRADE_THEORY_Desial_Mech_doc STUDY_OF_BRITISH_POETRY_doc TOPOLOGY_doc

CLASSICAL MECHANICS and STATISTICAL MECHANICS,B. SC. MICROBIOLOGY,B. Sc. in Radio Imaging Technology,B. SC. GRAPHICS & MULTIMEDIA,M.Sc Journalism, Advertising & Mass Communication


B. SC. GRAPHICS & MULTIMEDIA, SEMESTER – 1

ART & GRAPHICS

Time: 3 hours M.Marks:60
Attempt any 5 questions. All questions carry equal marks.

Q.1  Explain Digital differential analyzer Algorithm with its derivation.

Q.2 What is Breshenham line generation? Explain its derivation

Q.3 Write Midpoint circle algorithm. Draw a circle at origin with radius=10 using midpoint circle algorithm.

Q.4 What is Rotation in 2D Plane? Explain Rotation with respect to a fixed point. Represent the equation in homogeneous plane

Q.5 What is reflection? Explain reflection with respect to different axis in 2D homogeneous system.

Q.6 What is line clipping? Explain Cohen-Sutherland line clipping algorithm in detail.

Q.7 Explain Sutherland Hodgeman Polygon Clipping using appropriate diagram.

Q. 8 What is Projection? Explain Perspective and Parallel projections in 3D plane.


B. SC. GRAPHICS & MULTIMEDIA, SEMESTER – 3

WEB DESIGNING & JAVA SCRIPT


Time: 3 hours M.Marks:60
Attempt any 5 questions. All questions carry equal marks.


Q.1 Why JAVA is so popular as an Internet Language?

Q.2 What contribution has IAVA made to World Wide Web?
Q.3 what is exception handling? Give an example of exception handling with multiple catch
      Statements & a final method.
Q.4 what are the disadvantages of Multimedia Web Sites?

Q.5 How do we publish web sites?  Explain in details.

Q.6 what are steps to be followed for designing a web site.

Q.7 How CGI is implemented in web designing explains by taking an example?

Q.8 what is Search Engine?  How to search the information in Internet?

B. Sc. in Radio Imaging Technology, YEAR –3

Doppler & Echo Cardiograph


Time: 3 hours M.Marks:60
Attempt any 5 questions. All questions carry equal marks.
1. Explain electrode Theory, bipolar & uni-polar electrode.

2. Describe phonocardiography & vector cardiograph.

3. Explain the working, uses & precautions of colour Doppler system.

4. Explain in details physiology of respiratory system and respiratory rate measurement.

5. Describe system approach to biological system.

6. Write short notes on –
(1) Pacemaker
(2) Echo cardiograph
(3) Ox meter
(4) Defibrillators  


     7. Write the ECG Features of:

(i) LVH (ii) RVH
(iii) RBBB (iv) Mahim’s by Pass (v) LBBB (Complete & Incomplete)


8. Discuss the preparation, procedures and precaution taken while recording an ECG.




B. SC. MATHEMATICS, YEAR – 1

ALGEBRA


Time: 3 hours M.Marks:60
Attempt any 5 questions. All questions carry equal marks.

Q1. If H is a non-empty finite sub set of a group G and if H is closed under multiplication, prove that H is a subgroup of G.

Q2. If G is a finite group and H is a subgroup of G, prove that O(H) is a divisor of O(G).

Q3. Prove that every permutation is the product of its cycles.

Q4. Define conjugate elements in a group G. Prove that conjugacy is an equivalence relation on G.

Q5. Prove that a finite integral domain is a field.

Q6. State and prove the division algorithm for a polynomial ring.

Q7. Define linear span? If S is a non-empty subset of a vector space V, prove that the linear span of S is a sub space of V.

Q8. Let V be an inner product space. If u, v ÃŽ V, prove that | (u, v)| £ || u || || v ||

B. SC. MICROBIOLOGY, YEAR – 1

HISTORY & SCOPE OF MICROBIOLOGY


Time: 3 hours M.Marks:60
Attempt any 5 questions. All questions carry equal marks.

1. Write Short Notes On (any four)

a)  Antibiotics b) Microscope.
c) Soil microbiology d) Robert koch
e) Staining techniques.

2. Define the microbes influencing our lives?
3. Describe the experiment and contribution of Louis Pasture?
4. Describe the germ theory of disease?
5. Describe pure culture concept.
6. Define the microbial fermentation and its applications?.
7. Describe the agriculture and environment sanitation?
8. Explain applications of microbiology in human lives.
B. SC. PCB, YEAR – 1

MECHANICS AND RELATIVITY


Time: 3 hours M.Marks:60
Attempt any 5 questions. All questions carry equal marks.

Q.1. Write the Parallelogram law of forces.

Q.2. Define coplanar force with figure.

Q.3. Write the principal of equilibrium.

Q.4. Write the advantage of friction.

Q.5. Define Laml’s theorem.

Q.6. A force of 15 N is applied perpendicular to the edge of the door 0.8-meter wide find the moment of force about hinge.

Q.7. Define acceleration.

Q.8. Write difference between Internal and external gear.




B.SC (PCB), YEAR –III

CLASSICAL MECHANICS & STATISTICAL MECHANICS

Time: 3 hours  M.Marks:60

Note: - Attempt any 5 questions.
All questions carry equal marks.

Q1. State D’Alemberts principle. Obtain the equation of motion of a simple pendulum Using D’Alemberts principle.
Q2. What are generalized coordinates. Using Lagrange’s equation find theacceleration of masses in an Atwood’s machine.
Q3. State and explain Hamilton’s variational Principle. Use it to derive the Euler Lagrange equation.
Q4. a) How do you covert a two body problem into one body problem? Obtain expression for              position and time through equation of motion and first integral.
    b) State and prove Virial theorem.
Q.5 a) Derive the canonical transformation equation.
        b) Explain the canonical invariance of Lagrange bracket.
Q.6 Explain in detail the Brownian motion.
Q.7 a) Explain the theory of small oscillations. Apply it to solve the linear molecule problem.
      b) Write an account on normal coordinates.
Q.8 Discuss the types of statistics in detail. Derive the Sackur-tetrode equation for a mono atomic ideal gas.
M. Sc. Journalism, Advertising & Mass Communication, SEMESTER – III

Media Production

Time: 3 hours M.Marks:60
Attempt any 5 questions. All questions carry equal marks.

1. Describe the various parts of video Camera with diagram & write their functions with illustration.
2. Write short note on :
a) Computer Animation
b) Stages of Video Production
3. Define UPLINKING in Satellite Transmission. Compare Satellite Transmission with Terrestrial Transmission.
4. Define “Layout”. Write the advantages of layout in designing the cover page of Women’s magazine.
5. Write the principle & procedure that followed in offset printing. Discuss the advantages of offset press over letterpress.
6. Describe the Desk Top Publishing process with appropriate diagrams &write the significance of DTP in the age of IT.
7. What is Modulation?Describe Amplitude Modulation & compare it with Frequency Modulation.
8. Describe the importance of sound in Video Production. Describe how various sounds are produced & recorded for Video Production.

Management Questions Answers


BACHELOR OF BUSINESS ADMINISTRATION, SEMESTER – V
COMPENSATION MANAGEMENT
Duration -3 Hours                                             Max Marks: 60
Note:   1. Attempt any FIVE questions.
         2. All questions carry equal marks.
1. Explain Taylor’s and Merrick’s Differential Piece rate Plan System?
2. Through light on Subsistence theory of wages?
3. What is VRS? Discuss the procedure of VRS along with merits and demerits of VRS?
4. Why do strong firms Lay Off workers in a boom, but not in a recession?
5. Write short notes on:
(a) Knowledge Workers
(b) International Remuneration
(c) Downsizing
6. What would be the appropriate basis for rewarding a person? Discuss
7. Many Problems arise when benefit programs are adopted state these problems. Also explain the Administration of benefits and services

Diploma in Financial Management, SEMESTER –1
Organizational Behavior
Time: 3 hours M.Marks:60
Attempt any 5 questions. All questions carry equal marks.
1. Define OB. Describe the various models of OB.
2. Define personality. Bring out the impact of it on OB while discussing about the structure of personality.
3. Define communication. Narrate its process and barriers.
4. Define leadership. Discuss various styles of it.
5. Define organizational effectiveness. Discuss various approaches to achieve it.
6. What is organizational climate? Discuss various components of it.
7. Define organizational change. What are various forces of change? Why employees resist it?
8. What is organizational culture? Bring out its significance?

PG DIPLOMA IN MANAGEMENT, SEMESTER –I
FIANANCIAL AND MANAGEMENT ACCOUNTING
Time: 3 hours  M.Marks:60
Note: - Attempt any 5 questions.
All questions carry equal marks.
1. Explain the main functions of financial management.
2. What is debt capital (Kd)? What are the objectives of using debt capital?
3. What are the advantages of working capital?
4. What are the characteristics of balanced capital structure?
5. Explain the significance of cost of capital (Ko).
6. Explain the motives  for  holding inventories.
7. Compare the net present value (NPV) and internal rate of return (IRR) methods.
8. Analyze the economics of leasing.

DIPLOMA IN SUPPLY CHAIN MANAGEMENT, SEMESTER –I
FINANCIAL & MANAGEMENT ACCOUNTING
Time: 3 hours  M.Marks:60
Note: - Attempt any 5 questions.
All questions carry equal marks.
1. Explain the main functions of financial management.
2. What is debt capital (Kd)? What are the objectives of using debt capital?
3. What are the advantages of working capital?
4. What are the characteristics of balanced capital structure?
5. Explain the significance of cost of capital (Ko).
6. Explain the motives  for  holding inventories.
7. Compare the net present value (NPV) and internal rate of return (IRR) methods.
8. Analyze the economics of leasing.


DIPLOMA IN OPERATIONS MANAGEMENT, SEMESTER –I
FINANCIAL & MANAGEMENT ACCOUNTING
Time: 3 hours  M.Marks:60
Note: - Attempt any 5 questions.
All questions carry equal marks.
1. Explain the main functions of financial management.
2. What is debt capital (Kd)? What are the objectives of using debt capital?
3. What are the advantages of working capital?
4. What are the characteristics of balanced capital structure?
5. Explain the significance of cost of capital (Ko).
6. Explain the motives  for  holding inventories.
7. Compare the net present value (NPV) and internal rate of return (IRR) methods.
8. Analyze the economics of leasing.



MASTER OF BUSINESS ADMINISTATION, SEMESTER – I
FINANCIAL AND MANAGEMENT ACCOUNTING
Duration -3 Hours                                             Max Marks: 60
Note:   1. Attempt any FIVE questions.
            2. All questions carry equal marks.
1. Define Accounting. What is the difference between Book-Keeping and Accounting?
2. What are the three golden rules of accounting? Explain them in detail.
3. Journalize the following transaction, post them to ledger.
March 2009               Rs.
Santosh started his business with cash 10,000
Purchased furniture from Yadav on credit                     500
Bought goods for cash from Manish              7,000
Sold goods on credit Amer    3,700
Sold goods for cash to Joshi               2,900
Paid cash to Yadav            500
Goods purchased on credit from Nahar     9,800
Sold goods on credit to Naidu     5,480
Received from cash due from him       3,700
Joshi returned goods sold on 7th in cash       2,900
Received cash from Naidu       4,480
Paid Office Salaries                                                              500
Rent                                                                                                              250
Received Commission                                                                                  100

4. Prepare Trading, Profit & Loss A/c and Balance Sheet from the following Trial Balance of Mr. Kumar.
Stock at Commencement
Kumar’s Drawings
Trade Expenses
Salaries
Advertising
Discount
Bad Debts
Business Premises
Furniture & Fixtures
Cash in hand
Kumar’s Capital
Purchase Returns
Purchases
Sales Returns
Wages
Conveyance Charges
Rent, rates taxes & Insurance
Interest
Plant and Machinery
Sundry Debtors
Sales
Sundry Creditors
Bank Overdraft
Total Debit
(Rs.) Credit
(Rs.)  
60,000
22,000
1,350
11,200
840
600
800
12,000
10,000
2,060
-
-
1,50,000
5,400
7,000
1,320
5,600
430
20,000
92,000
-
-
- -
-
-
-
-
-
-
-
-
-
70,000
2,600
-
-
-
-
-
-
-
-
2,50,000
60,000
20,000  
4,02,600 4,02,600

Adjustments:

(1) Stock at end was Rs. 90,000.
(2) Outstanding rent was Rs. 500.
(3) Outstanding wages Rs. 400.
(4) Prepaid insurance Rs. 300 and prepaid salaries Rs. 700.
(5) Write off Rs. 800 as further bad debts.
(6) Provide for doubtful debts at 5% on Sundry Debtors.
(7) Provide depreciation on Premises at 2½%; Plant and Machinery at 7½% and Furniture at 10%.

4. What is Management Accounting? What are the advantages and limitations of Management Accounting?
5. A manufacturing firm supplies you the following information:

Product P Product Q  
(Rs.) (Rs.)  
Direct Material per unit 16 14  
Direct wages paid 5 4  
Variable Expenses (100% of Wages) 5 4  
Fixed Expense Rs. 1,300 Sales price per unit 32 26

Sales-Mixtures
1. 400 units of Product P and 400 units of Product Q
2. 500 units of Product P and 300 units of Product Q
3. 600 units of Product P and 200 units of Product Q.

You are required to prepare the marginal cost statement to show contribution per unit and suggest the sales-mix which optimizes profits.

6. What do you mean by the term Budget? What are the various types of Budgets?
7. What is Activity Based Costing? What are the Benefits of' ABC?
8. Write Short Note on:
a. Responsibility Accounting
b. Just In Time
c. Value Added Accounting

9.        

Product SQ
(Units) SR
(Rs.) AQ
(Units) AP
(Rs.)  
A 1050 2.00 1100 2.25  
B 1500 3.25 1400 3.50  
C 2100 3.50 2000 3.75

Calculate:
1) Material Cost Variance
2) Material Price Variance
3) Material Usage Variance


DIPLOMA IN SUPPLY CHAIN MANAGEMENT, SEMESTER –I
FUNDAMENTALS OF SUPPLY CHAIN MANAGEMENT
Time: 3 hours  M.Marks:60
Note: - Attempt any 5 questions.
All questions carry equal marks.

1. What is the importance of Expanding Strategic Scope?
2. Explain about the Framework For Structuring Drivers
3. Explain the Competitive and Supply Chain Strategies
4. What are the Drivers of Supply Chain Performance?
5. What are the Facilities required in Supply Chain?
6. What are the Obstacles To Achieve Fit supply chains?
7. What Is a Supply Chain and the Importance of Supply Chain Flows
8. What are the Decision Phases in a Supply Chain?

BACHELOR OF BUSINESS ADMINISTRATION, SEMESTER – III
INTRODUCTION TO RESEARCH METHODOLOGY
Duration -3 Hours                                             Max Marks: 60
Note:   1. Attempt any FIVE questions.
            2. All questions carry equal marks.
Q1. Define the term “Research” and discuss the importance of conducting research in various fields of business in the contemporary business world?
Q2. Discuss the main aspects of a questionnaire and list the essentials of a good questionnaire.
Q3. Why do decision makers measure samples rather than entire population? Briefly explain various probability sampling methods.
Q4. What are the objectives of research in Human Research Management? Explain the various techniques of data collection in HRM research.
Q5. (a) Discuss the important concepts related to research design.
       (b) State the difference between qualitative research and quantitative research.
Q6. Why is measurement important in research? Discuss briefly the various types of measurement scales used in research.
Q7. Write short notes on:
a) Conjoint analysis
b) Ethnography
c) Depth interviewing
d) Experience Survey
Q8. (a) The memory capacity of a group of 9 students was tested before and after training. State at 5% level of significance whether the training was effective from the following scores:


Student 1 2 3 4 5 6 7 8 9  
Before
After 10
12 15
17 9
8 3
5 7
6 12
11 16
18 17
20 4
3
Use paired t-test for your answer.

(b) In an experiment on the immunization of goats from Anthrax, the following results were obtained. Derive your inference on the efficacy of the vaccine.

Died of Anthrax Survived Total  
Inoculated with vaccine 2 10 12  
Not inoculated 6 6 12  
Total 8 16 24

Q9. (a) A sample of 400 male students is found to have a mean height of 67.47 inches. Can it be reasonably regarded as a sample from a large population with mean height 67.39 inches and standard deviation 1.30 inches? Test at 5% level of significance.
(b) Find the probability that the value of an item drawn at random from a normal population with mean 20 and standard deviation 10 will be between;
(i) 10 and 15
(ii) -5 and 10



DIPLOMA IN MANAGEMENT, SEMESTER –I
MANAGEMENT FINANCIAL ACCOUNTING
Time: 3 hours  M.Marks:60
Note: - Attempt any 5 questions.
All questions carry equal marks.
1. Discuss the ‘internal’ and ‘external’ users of accounting information.
2. Explain: (a) Legal Entity concept (b) Cost concept (c) Accrual concept (d) Matching concept (e) Accounting period concept.
3. Describe the errors which are not disclosed by Trial Balance.
4. Explain the meaning and objectives of providing depreciation.
5. Write short notes on (i) Capital fund (ii) subscription (iii) Legacy (iv) Life membership fees (v) Entrance fees.
6. Distinguish between (i) Accounting and book-keeping (ii) Trial balance and balance sheet (iii) Trading A/c and profit & loss a/c.
7. Journalize and prepare the ledger accounts for the following transactions:

Mar 1 2006 Vasu started business 60,000  
2 Purchased goods from Maya 10,000  
5 Cash paid to Maya 5,000  
7 Goods sold to Sheela 15,000  
10 Returned goods to Mala 1,000  
15 Cash sales 8,000  
17 Sheela paid cash
Discount allowed 14,750
250  
20 Sheeba sold goods to us 3,000  
22 Returned goods to Sheeba 100  
25 Settled Sheeba’s account  
30 Paid rent
Paid salary 1,000
5,000

8. On 1.7.200, Raja purchased a second handcar for rs.18000 and spent Rs.2000 on its repairs. On 30.6.2002 the car was disposed off for a sum of Rs.13,600. Assuming the books are closed on Dec31 each year and depreciation is 10% on diminishing balances, calculate the amount chargeable profit & loss account for 2002.




MASTER OF BUSINESS ADMINISTRATION, SEMESTER - III
MANAGEMENT INFORMATION SYSTEM
Duration -3 Hours                                             Max Marks: 60

Note:   1. Attempt any FIVE questions.
            2. All questions carry equal marks.


1.   What is information system? Explain the types of systems.
2.   Explain Data Base Management System (DBMS) with examples.
3.   Explain the role of information technology in organization.
4.   Explain Office Information System (OIS) with examples.
5.  Write short notes (Any Two) -
1. Electronic Conference
2. Electronic Meeting System
3. LAN.

6.  Explain the role of business communication system in organization.
7. Explain the strategic marketing information system in organization.
8. Explain the use of information system in various business processes.
9. Explain the role of information system in decision making in organization.


BACHELOR OF BUSINESS ADMINISTRATION, SEMESTER – V
MARKETING RESEARCH
Duration -3 Hours                                             Max Marks: 60
Note:   1. Attempt any FIVE questions.
            2. All questions carry equal marks.
1. What is the meaning of Marketing Research? Explain the importance of Survey method in MR?
2. Describe the different types of MR and discuss their merits and demerits?
3. What is the meaning of market segmentation?? Explain the various criteria of market Segmentation.
4. What are the methods of Data collection? Explain their advantages and disadvantages?
5. Explain the need & objectives of Advertising research? Also discuss the nature of researcher going for research?
6. Discuss in detail the marketing research process. What are the different phases of research process?
7. What is export marketing? Explain the various classifications of International marketing Research?





BACHELOR OF BUSINESS ADMINISTRATION, SEMESTER – I
 
ORGANIZATIONAL BEHAVIOR


Duration -3 Hours                                             Max Marks: 60

Note:   1. Attempt any FIVE questions.
            2. All questions carry equal marks.


1. Summarize various approaches to Management.
2. Give arguments for and against Social Involvement of Business.
3. Explain the Principles of Management according to Fayol.
4. What do you understand by Planning? Explain the need, types and the steps involved in planning.
5. What are the 6 key elements of organizational design? Explain the advantages and disadvantages of different types of organizational design.
6. Explain the four C’s Model for evaluating Human Resource.
7. Explain various ways to enhance communication in an organization using computer aided technologies.
8. Explain Classical as well as Operant Conditioning theories used to understand Human Behavior.
9. What is perception? Explain different factors affecting perception.




DIPLOMA IN MATERIAL MANAGEMENT,SEMESTER –I
ORGANIZATIONAL BEHAVIOR
Time: 3 hours  M.Marks:60
Note: - Attempt any 5 questions.
All questions carry equal marks.
Q1.   Define organizational behavior; explain its features, importance and how it is different from other disciplines
Q2.   Describe historical developments of organizational behavior
Q3. Define learning and explain different theories of learning
Q4. Write short notes on the following
Psychology
Anthropology
Q5. Write short notes on the following
· Perception
· Motivation

Q6. Define personality. Explain different theories in personality development

Q7. What is group decision making? Explain its merits, demerits, and techniques with the help of relevant examples.

Q8. Define organizational culture. Explain nature and forces of organizational change and why people resist change.


PGDMM, SEMESTER –I
ORGANIZATIONAL BEHAVIOUR AND MANAGEMENT PROCESS
Time: 3 hours  M.Marks:60
Note: - Attempt any 5 questions.
All questions carry equal marks.
1. Explain the term Management. What is its process?
2. Describe financial and non-financial techniques of motivation.
3. Describe that management is Art or Science?
4. Discuss Herzberg's theory of job satisfaction.
5. Discuss the various group forms.
6. Explain the nature of attitude and interest.
7. Explain the principles of management.
8. What are the characteristics of learning?

DIPLOMA IN HUMAN RESOURCE MANAGEMENT, SEMESTER –I
ORGANIZATIONAL BEHAVIOUR
Time: 3 hours  M.Marks:60
Note: - Attempt any 5 questions.
All questions carry equal marks.
1. Explain perception & give its process.
2. Define personality. What are the Freudian stages of personality?
3. Define Attitude, its types & sources.
4. What is Transactional Analysis with examples?
5. Explain Classical conditioning theory with example.
6. Define Leadership & its styles.
7. Define Motivation & its theories.
8. What is Stress, its types & strategies to overcome it?




DIPLOMA IN INSURANCE & RISK MGMT, YEAR –1
PRINCIPLES OF MANAGEMENT
Time: 3 hours  M.Marks:60
Note: - Attempt any 5 questions.
All questions carry equal marks.
1. Discuss the relationship between plan and the budget?
2.        Write short notes on
a) Break - even analysis
b) Theory 'X' and Theory 'Y'
3. Define Management. What are its elements? What is the essence of 'scientific  
             management'?
4. What is a decision tree ? Indicate its construction and application in business
decesion making.
5. Write an essay on Management by objectives. What are the steps involved in launching on MBO System?
6. What are the functions of a Manager of a Five Star Hotel?
7. Indicate the steps involved in constructing an organisation chart. Illustrate the principles by drawing a organisation chart of a five star hotel of 200 rooms.
8. "In the staffing function, one of the most important areas is the selection process" Discuss.



DIPLOMA IN HOTEL ADMINISTRATION, YEAR –1
PRINCIPLES OF MANAGEMENT
Time: 3 hours  M.Marks:60
Note: - Attempt any 5 questions.
All questions carry equal marks.
1. Discuss the relationship between plan and the budget?
2.         Write short notes on
a) Break - even analysis
b) Theory 'X' and Theory 'Y'
2. Define Management. What are its elements? What is the essence of 'scientific management'?
3. What is a decision tree ? Indicate its construction and application in business decesion making.
4. Write an essay on Management by objectives. What are the steps involved in launching on MBO System?
5. What are the functions of a Manager of a Five Star Hotel?
6. Indicate the steps involved in constructing an organisation chart. Illustrate the principles by drawing a organisation chart of a five star hotel of 200 rooms.
7. "In the staffing function, one of the most important areas is the selection process" Discuss.




BACHELOR OF BUSINESS ADMINISTRATION, SEMESTER – V
SECURITY ANALYSIS & PORTFOLIO MANAGEMENT
Duration -3 Hours                                                     Max Marks: 60
Note:   1. Attempt any FIVE questions.
            2. All questions carry equal marks.

Q1. Define investment. What is Security Analysis and portfolio management?

Q2. Describe the overview of Indian Financial system.

Q3.What is Clearing and Settlement cycle for equities at NSE?

Q4.What are corporate debts? What are the benefits of investing in bond market?

Q5. (a)What is the meaning of risk and return?
       (b) A share is currently selling at Rs.50.It is expected that a dividend of Rs 2 per share would be paid during the year and the share could be sold at Rs.54 at the end of the year. Calculate the Expected Return.

Q6. Explain types and features of the Debt market.

Q7. Write short notes on: -
· Equity Shares
· Blue chip shares
· Growth shares
· Value stocks
 
Thanks

Total Pageviews