MCA4010- MICROPROCESSOR

Dear students get fully solved assignments
Send your semester & Specialization name to our mail id :
help.mbaassignments@gmail.com
or
call us at : 08263069601



ASSIGNMENT

PROGRAM
MCA(REVISED FALL 2012)
SEMESTER
FOURTH
SUBJECT CODE & NAME
MCA4010- MICROPROCESSOR
CREDITS
4
BK ID
B1778
MAX. MARKS
60


Note: Answer all questions. Kindly note that answers for 10 marks questions should be approximately of 400 words. Each question is followed by evaluation scheme.

Q. 1. Write short notes on:

a) Central Processing Unit

Answer:The central processing unit (CPU) of a computer is a piece of hardware that carries out the instructions of a computer program. It performs the basic arithmetical, logical, and input/output operations of a computer system. The


b) Memory Unit

Answer:In computing, memory refers to the computer hardware devices used to store information for immediate use in a computer; it is synonymous with the term "primary storage". Computer memory operates at a high speed, for example random-access memory (RAM), as a distinction from storage that provides slow-to-access program and data storage but offers higher capacities. If needed, contents of the computer memory can be transferred to secondary storage, through a memory management technique called "virtual


Most semiconductor memory is organized into memory cells or bistable flip-flops, each storing one bit (0 or 1). Flash memory organization includes both one bit per memory cell and multiple bits per cell (called MLC,




Q. 2. Write short notes on:

a) Bus Interface Unit (BIU)

Answer:In computer architecture, a bus (related to the Latin "omnibus", meaning "for all") is a communication system that transfers data between components inside a computer, or between computers. This expression covers all related hardware components (wire, optical fiber, etc.) and software, including

b) Execution Unit (EU)

Answer:In computer engineering, an execution unit (also called a functional unit) is a part of the central processing unit (CPU) that performs the operations and calculations as instructed by the computer program. It may have its own internal control sequence unit, which is not to be confused with the CPU's main control unit, some registers, and other internal units such as a sub–arithmetic logic unit (sub-ALU) or a floating point unit (FPU), or some smaller and more specific components.  It is common for modern




Q. 3. Write short notes on:

a) REP Prefix

Answer:If the direction flag is clear, the CPU increments ESI and EDI after operating upon each string element. For example, if the direction flag is clear, then executing MOVS will move the byte, word, or double word at ESI to EDI and will increment ESI and EDI by one, two, or four. When specifying the REP prefix before this instruction, the CPU increments ESI and EDI for each element in the string. At completion, the ESI and EDI registers will be pointing at the first item beyond the strings.



b) Table Translation

Answer:A translation lookaside buffer (TLB) is a cache that memory management hardware uses to improve virtual address translation speed. The majority of desktop, laptop, and server processors includes one or more TLBs in the memory management hardware, and it is nearly always present in any hardware that utilizes paged or segmented virtual memory.

The TLB is sometimes implemented as content-addressable memory (CAM). The CAM search key is the virtual address and the search





Q. 4. Describe about Key-code Data Formats and FIFO Status Word formats.

Answer:Key Code Qualifier is an error-code returned by a SCSI device.

When a SCSI target device returns a check condition in response to a command, the initiator usually then issues a SCSI Request Sense command. This process is part of a SCSI protocol called Contingent Allegiance Condition. The target will respond to the Request Sense command with a set of SCSI sense data which includes three fields giving increasing levels of detail about the error:

    K - sense key - 4 bits, (byte 2 of Fixed sense


Q. 5. Write a note on

(a) RS 232 standard

Answer:In telecommunications, RS-232 is a standard for serial communication transmission of data. It formally defines the signals connecting between a DTE (data terminal equipment) such as a computer terminal, and a DCE (data circuit-terminating equipment, originally defined as data communication equipment), such as a modem. The RS-232 standard is commonly used in computer serial ports. The standard defines the electrical characteristics and timing of signals, the meaning of signals, and the physical size



(b) IEEE 488 standard

Answer:IEEE-488 is a short-range digital communications 8-bit parallel multi-master interface bus specification. It was created in the late 1960s for use with automated test equipment and is still in use for that purpose. IEEE-488 was created as HP-IB (Hewlett-Packard Interface Bus) and is commonly called GPIB (General Purpose Interface Bus). It has been the subject of several standards.

IEEE-488 specifies a 24-pin Amphenol





Q. 6. Write short note on:

a) Parallel Printer Interface (LPT)

Answer:Short for Line Printer Terminal, LPT is used by IBM compatible computers as an identification for the parallel port such as LPT1, LPT2, or LPT3. This is commonly required when installing a printer on an IBM compatible computer. The majority of all computers utilize LPT1 and do not have an option for another LPT port unless additional ports are added to the computer.





b) Universal Serial Bus (USB)

Answer:USB, short for Universal Serial Bus, is an industry standard developed in the mid-1990s that defines the cables, connectors and communications protocols used in a bus for connection, communication, and power supply between computers and electronic devices. It is currently developed by the USB Implementers Forum.


Dear students get fully solved assignments
Send your semester & Specialization name to our mail id :
help.mbaassignments@gmail.com
or
call us at : 08263069601


MCA4040- ANALYSIS AND DESIGN OF ALGORITHM

Dear students get fully solved assignments
Send your semester & Specialization name to our mail id :
help.mbaassignments@gmail.com
or
call us at : 08263069601


[ SUMMER 2015 ] ASSIGNMENT

PROGRAM
MCA(REVISED FALL 2012)
SEMESTER
4
SUBJECT CODE & NAME
MCA4040- ANALYSIS AND DESIGN OF ALGORITHM
CREDIT
4
BK ID
B1480
MARKS
60


Answer all questions
Q. 1. Write the steps involved in analyzing the efficiency of non-recursive algorithms.

Answer:The study of algorithms is called algorithmics. It is more than a branch of computer science. It is the core of computer science and is said to be relevant to most of science, business and technology. An algorithm is a sequence of unambiguous instructions for solving a problem, i.e., for obtaining a required output for any legitimate input in finite amount of time.

The three algorithms used to find the gcd of two numbers are

·         Euclid’s algorithm
·         Consecutive integer




Q. 2. Define selection sort and explain how to implement the selection sort?

Answer:In computer science, selection sort is a sorting algorithm, specifically an in-place comparison sort. It has O(n2) time complexity, making it inefficient on large lists, and generally performs worse than the similar insertion sort. Selection sort is noted for its simplicity, and it has performance advantages over more complicated algorithms in certain situations, particularly where auxiliary memory is limited.

The algorithm divides the input list into two parts: the sublist of items already sorted, which is built up from left to right at the front (left) of the list, and







Q. 3. Define Topological sort. And explain with example.

Answer:In computer science, a topological sort (sometimes abbreviated topsort or toposort) or topological ordering of a directed graph is a linear ordering of its vertices such that for every directed edge uv from vertex u to vertex v, u comes before v in the ordering. For instance, the vertices of the graph may represent tasks to be performed, and the edges may represent constraints that one task must be performed before another; in this application, a topological ordering is just a valid sequence for the tasks. A topological ordering is possible if and only if the graph has no directed cycles, that is, if it is a directed acyclic




Q. 4. Explain good-suffix and bad-character shift in Boyer-Moore algorithm.

Answer:In computer science, the Boyer–Moore string search algorithm is an efficient string searching algorithm that is the standard benchmark for practical string search literature. It was developed by Robert S. Boyer and J Strother Moore in 1977. The algorithm preprocesses the string being searched for (the pattern), but not the string being searched in (the text). It is thus well-suited for applications in which the pattern is much shorter than the text or where it persists across multiple searches. The Boyer-Moore algorithm uses information gathered during the preprocess step to skip sections of the text, resulting in a lower constant factor than many other string algorithms. In general, the algorithm runs faster




Q. 5. Solve the Knapsack problem using memory functions.
Item 1 2 3 4
Weight 2 6 4 8
Value (in Rs.) 12 16 30 40
Knapsack capacity is given as W=12. Analyze the Knapsack problem using memory functions with the help of the values given above.

Answer:The classical Knapsack Problem (KP) can be described as follows. We are given a set N={1,…,n} of items, each of them with positive profit pj and positive weight wj, and a knapsack capacity c. The problem asks for a subset of items whose total weight does not exceed the knapsack capacity, and whose profit is a maximum. It can be formulated as the following Integer Linear Program (ILP):
(KP)max∑jNpjxj(1)




Q. 6. Describe Variable Length Encoding and Huffman Encoding.

Answer:Variable Length Encoding:In coding theory a variable-length code is a code which maps source symbols to a variable number of bits.Variable-length codes can allow sources to be compressed and decompressed with zero error (lossless data compression) and still be read back symbol by symbol. With the right coding strategy an independent and identically-distributed source may be compressed almost arbitrarily close to its entropy. This is in contrast to fixed length coding methods, for which data compression is only possible for large blocks of data, and any compression beyond the logarithm of the total number of possibilities comes with a finite (though perhaps arbitrarily small) probability of failure.

Dear students get fully solved assignments
Send your semester & Specialization name to our mail id :
help.mbaassignments@gmail.com
or
call us at : 08263069601


MCA 4030 - PROGRAMMING IN JAVA



Dear students get fully solved assignments
Send your semester & Specialization name to our mail id :
  help.mbaassignments@gmail.com
or
call us at : 08263069601




FALL 2016, ASSIGNMENT

PROGRAM
MCA(REVISED FALL 2012)
SEMESTER
1
SUBJECT CODE & NAME
MCA 4030 - PROGRAMMING IN JAVA
CREDIT
4
BK ID
B1477
MAX.MARKS
60

Note: Answer all questions. Kindly note that answers for 10 marks questions should be approximately of 400 words. Each question is followed by evaluation scheme.



1 Describe the following:

a) Multi-threading.
Answer : Multithreading in java is a process of executing multiple threads simultaneously.

Thread is basically a lightweight sub-process, a smallest unit of processing. Multiprocessing and multithreading, both are used to achieve multitasking.

But we use multithreading than multiprocessing because threads share a common memory area. They don't allocate


b) Significance of Java Bytecode

Answer : Java is build on WODA (Write Once Deploy Anywhere) principle. This means you don't have to tweak a Java source code if you want to deploy it in another OS. But at the end of the day, java programs need a JVM to run on and JVM being machine language specific cannot be platform-neutral. So, we


2 Differentiate Break and Continue statements in Java with example program.

Answer : A break statement when applied to a loop ends the statement. A continue statement ends the iteration of the current loop and returns the control to the loop statement. If the break keyword is followed by an identifier that is the label of a random enclosing statement, execution transfers out of that enclosing statement. If the continue keyword is followed by an identifier that is the label of an enclosing loop, execution skips to the end of that loop instead.

break: breaks the current loop and moves the cursor to next line after the loop

e.g.



3 Differentiate between packages and Interfaces.

Answer : Packages
Definition:  A package is a grouping of related types providing access protection and name space management. Note that types refers to classes, interfaces, enumerations, and annotation types. Enumerations and annotation types are special kinds of classes and interfaces, respectively, so types are often referred to in this lesson simply as classes and interfaces.

Creating a Package:



4 What are Applets? What are the restrictions of Applets? Describe about applet class.

Answer : What is an Applet in Java ?
An Applet is a small java program that runs in a Java enabled web browser. Java Applet is a small piece of java code that is embedded into HTML page, which gets executed when the HTML page loads into the browser.Applets provide powerful client-side functionality. As applets are loaded from remote machines and executed on client-side, there are various security restrictions on applets. –

Applets Restrictions
Applets have many restrictions over the



5 Compare JDBC and ODBC

Answer : Typically, software applications are written in a specific programming language (such as Java, C#, etc.), while databases accept queries in some other database specific language (such as SQL). Therefore, when a software application needs to access data in a database, an interface that can translate languages to each other (application and database) is required. Otherwise, application programmers need to learn and



6 Describe about Java Beans and BeanBox.

Answer : A Java Bean is a reusable software component that can be manipulated visually in an application builder tool.  The idea is that one can start with a collection of such components, and quickly wire them together to form complex programs without actually writing any new code.
Software components must, in general, adopt standard techniques for interacting with the rest of the world.  For example, all GUI components inherit the java.awt.Component class, which means that one can rely on them to have certain standard methods like paint(), setSize(), etc.  Java Beans are not actually required to inherit a

Dear students get fully solved assignments
Send your semester & Specialization name to our mail id :
  help.mbaassignments@gmail.com
or
call us at : 08263069601


MK0013-Marketing Research

Dear students get fully solved assignments
Send your semester & Specialization name to our mail id :
help.mbaassignments@gmail.com
or
call us at : 08263069601


ASSIGNMENT

DRIVE
SUMMER  2016
PROGRAM
MBADS (SEM 3/SEM 5),MBAFLEX/ MBA (SEM 3)
SUBJECT CODE & NAME
MK0013-Marketing Research
BK ID
B 1711
CREDIT & MARKS
4 Credits, 60 marks


Note: Answer all questions. Kindly note that answers for 10 marks questions should be approximately of 400 words. Each question is followed by evaluation scheme.


Question.1. What do you mean by research? State some of its characteristics.

Answer:Research comprises "creative work undertaken on a systematic basis in order to increase the stock of knowledge, including knowledge of humans, culture and society, and the use of this stock of knowledge to devise new applications." It is used to establish or confirm facts, reaffirm the results of previous work, solve new or existing problems, support theorems, or develop new theories. A research project may also be an expansion on past work in the field. To test the validity of instruments, procedures, or experiments, research may




Question. 2.Why you must plan before you start researching on a topic?

Answer:A dissertation is a particular kind of academic task. You will usually be asked to generate a topic for yourself; to plan and execute a project investigating that topic; and to write-up what you did and what your findings were. Important stages in the dissertation process include:

·         Choosing a topic;
·         Developing a research question;
·         Effective planning of the research;
·       Being organised and methodical while conducting
·        
·        
·        


Question. 3.Write short notes on:

a) Exploratory research design

Answer:Exploratory research is research conducted for a problem that has not been clearly defined. It often occurs before we know enough to make conceptual distinctions or posit an explanatory relationship. Exploratory research helps determine the best research design, data collection method and selection of subjects. It should draw definitive conclusions only with extreme caution. Given its fundamental nature, exploratory research often concludes that a perceived problem does not actually exist.




b) Conclusive research design

Answer:Conclusive research design, as the name implies, is applied to generate findings that are practically useful in reaching conclusions or decision-making. Conclusive research design usually involves the application of quantitative methods of data collection and data analysis. Moreover, conclusive studies tend to be deductive in nature and research objectives in these types of studies are achieved via testing hypotheses.



Question.4.Define the term 'sampling' and explain the importance of sampling in marketing research.

Answer:Brooke is a psychologist who is interested in studying how much stress college students face during finals. She works at a university, so she is planning to send out a survey around finals time and ask some students to rank on a scale of 1 to 5 how stressed out they are.

But which students should she survey? All of the students at the university?Only the students in the psychology department?Only freshmen? There are a




Question.5. Analyse the steps involved in hypothesis testing.


Answer:A hypothesis test is a statistical test that is used to determine whether there is enough evidence in a sample of data to infer that a certain condition is true for the entire population.

A hypothesis test examines two opposing hypotheses about a population: the null hypothesis and the alternative hypothesis. The null hypothesis is the




Question.6.What are the characteristics of a report?

Answer:When you write a business report, focus on the subject at hand. Information included in the document should be accurate, relevant and informative to its readers. When reading a report to gain a deeper understanding of an issue, a businessperson shouldn’t have to sift through paragraphs of filler content. A good report speaks to the reader in terms she can understand.

Clearly Defined Purpose: The purpose of a report should be clear to the reader from the beginning. The purpose should be stated in the title of the report if possible and included in the introduction. Identify whether the intent is to persuade the reader to do

Dear students get fully solved assignments
Send your semester & Specialization name to our mail id :
help.mbaassignments@gmail.com
or
call us at : 08263069601


MK0012 –Retail Marketing

Dear students get fully solved assignments
Send your semester & Specialization name to our mail id :
help.mbaassignments@gmail.com
or
call us at : 08263069601




ASSIGNMENT


DRIVE
SPRING 2016
PROGRAM
Master of Business Administration- MBA
SEMESTER
Semester 3
SUBJECT CODE & NAME
MK0012 –Retail Marketing
BK ID
B1723
CREDIT & MARKS
4 Credits, 60 marks


Note: Answer all questions. Kindly note that answers for 10 marks questions should be approximately of 400 words. Each question is followed by evaluation scheme.



Question. 1. How Retail formats can be classified? Elucidate your answer with example.

Answer:Retailers are the last link in the distribution channel and they perform various important functions, which are as follows:

(a)  Uninterrupted Supply - A retailer ensures continuous supply of products to consumers. He purchase goods in large quantity, breaks the bulk and sell in small segments to final users.
(b)  Large Variety - Retailers buy merchandise from different sources and provide a wide variety to consumers.
(c)  Financing - Some retailers provide credit facility to consumers.
(d)  Transportation - Retailers carry goods from





Question. 2. Define target marketing & what can be different types of target markets for retailers?

Answer:A target market is a group of customers a business has decided to aim its marketing efforts and ultimately its merchandise towards. A well-defined target market is the first element of a marketing strategy. Product, price, promotion, and place are the four elements of a marketing mix strategy that determine the success of a product or





Question. 3. Briefly discuss different types of retail store locations? What are their advantages & disadvantages?

Answer:A multiple shop system is a network of branch shops, situated at different localities in the city or in different parts of the country, under a centralised management and dealing in similar lines of goods. Such multiple shops are very common and popular in the West and are known as CHAIN STORES. According to J.L. Fri, “Chain stores are a group of stores handling similar lines of merchandise with single ownership and centralised location.”

The Federal Trade Commission defines a chain store as “an organisation owing a controlling interest in two or more establishments which sell



Question. 4. Explain the concept of merchandise management?

Answer: In the fierce competition of retail, it is very crucial to attract new customers and to keep the existing customers happy by offering them excellent service. Merchandising helps in achieving far more than just sales can achieve.

Merchandising is critical for a retail business. The retail managers must employ their skills and tools to streamline the merchandising process as smooth as possible.

What is Merchandising?




Question. 5. Describe Integrated Marketing Communication (IMC).Discuss the reasons for implementing IMC.

Answer:Integrated Marketing Communications (IMC) is an expansion of modern and traditional marketing strategies, to optimise the communication of a consistent message conveying the company's brands to stakeholders. Coupling various methods together is added value in creating successful communication as it harnesses the individual benefits of each channel, which when combined together builds a clearer and vaster impact than if used individually. Achieving synergy and clarity amongst the elements is then able to




Question. 6. Write short notes on:

a) Market entry method

Answer:A market entry strategy is the planned method of delivering goods or services to a new target market and distributing them there. When importing or exporting services, it refers to establishing and managing contracts in a foreign country.

Many companies successfully operate



b) E-tailing

Answer:E-tailing began to work for some major corporations and smaller entrepreneurs as early as 1997 when Dell Computer reported multimillion dollar orders taken at its Web site. The success of Amazon.com hastened the arrival of Barnes and Noble's e-tail site. Concerns about secure order-taking receded. 1997 was also the year in which Auto-by-Tel reported that they had sold their millionth car over the Web, and CommerceNet/Nielsen Media reported that 10 million people had made purchases on the Web. Jupiter research predicted that e-tailing would grow to $37 billion by 2002.

Dear students get fully solved assignments
Send your semester & Specialization name to our mail id :
help.mbaassignments@gmail.com
or
call us at : 08263069601