Do we have multiple test plans for every version of software release?
Why do we need software requirement for developing a software?
What are mutants and explain mutation testing?
Mutation testing is like testing the tester... Under Mutation testing technique we need to check the working of the test suite. Basically we introduce some kind of change in the program source code i...
Mutation testing is an one in which we first assume a certain fact and also a mutated fact which opposes the fact is also defined.Our testing succeed only if the mutated fact fails.
Hows do electrons travel through a lightning bolt?
Generally, lightning is negatively charged. During thunderstorms. The Earths is recharged and its surface becomes good conductor of electricity. The Earth is charged negatively and the atmosphere i...
How to delete a entire linked list?
You delete a linked list by iterating through the list and deleting the nodes one by one. Begin at the head Get address of first node Get address of next node Delete first node Do not to access next ...
Define rom image and explain each section of a rom image in an exemplary system?
A ROM image captures the data from a read-only memory chip, such as hardware firmware, video and arcade game boards, etc. It is often used for emulation.
How to calculate response time in client-server technology?
This can be done by measureing the time taken by the first byte to reach the client (TTFB) and the time taken by the last byte of the response to reach the client (TTLB) by using various network bandwidths between the client and the server.
Improve hard disk transfer rate
How to increase transfer rate of an hard disk?
See if any among these helps to increase Hard disk transfer rate... - Try using RAID setup - In Device Manager under ATA/ATAPI Controllers verify if the hard disk is running in UDMA mode. - Update m...
Vertical and horizontal cluster
What are the advantages & disadvantages of vertical cluster & horizontal cluster? Which is the best? Why?
In horizontally clustered environment, cluster-enabled application is deployed on multiple physical machines. Each machine is available for requests. Horizontal clusters offers protection over hardwar...
nothing but type 2 dimension
In-accurate data is often termed as dirty data and has been characterized as missing data, wrong data and compound data with different representations.
Ex. :- customer dimension in which the same person can appear multiple times probably not with exactly the same spellings or other attributes.
Cdrom access is random or semirandom or sequential
CDROM access is sequential.. Magnetic sequential access memory is typically used for secondary storage in general-purpose computers due to their higher density at lower cost compared to RAM, as well a...
CDROM is random access device..
What are the roles and responsibilities of sharepoint developer, sharepoint consultant, sharepoint architect, sharepoint administrator, sharepoint specialist, sharepoint business analyst, sharepoint designer, sharepoint project manager, sharepoint system administrator?
How can we print "hello world" in C without using semicolon/
main()
{
clrscr();
if(printf("Hello Tarun Goyal"))
{}
getch();
}
we can print message by using ternary operator or write the code in if statement
Any application web based or window based can have a client server architect???Please explain and how a window based application have client server architect???
Write an o(log2(n)) algorithm to find x^n
represent N=b(k)b(k-1)....b(1)b(0) as bit representationthen N=summation i=o to k b(i)*2^iso x can be represented as x(N)=x(b0)*x(2b1)*x(4b2)...*x(2(k)bk)bois nothing but Nmod 2long power(...
Here is the algorithm that works well and takes O(log n) time.Algorithm Exponientiate(x,n)//computes x^n for an integer n>=0{ m:= n; power:=1; ...
What is the difference between process and thread with real time examples?
1.Threads share the address space of the process that created it; processes have their own address. 2.Threads have direct access to the data segment of its process; processes have their own copy of th...
Using GET method form data is appended to URL while using POST method it is transferred in the message body.GET method is intended for information retrieval. It should be used to retrieve ...
How do I put a background on a website using CSS coding?
If you want to put background color you can use background-color property of CSS in body tag
If you want to put background image you can use background-image property of CSS in body tag
Sample code to use application adapter
Can you give some sample code to use in application adapter[ccf]?