In this assignment you are asked to write a multithreaded
program to find the duplicates in an array of 10 million
integers. The integers are between -5000,000 to 5000,000 and
are generated randomly. Use 10 threads, each thread works on
1000,000 integers. Compare the time needed to accomplish the
task with single thread of execution program. Do not include
the time to fill the array with integers in the execution
time.


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

To what value are pointers initialized? 1) NULL 2) Newly allocated memory 3) No action is taken by the compiler to initialize pointers.

4 Answers   Aricent,


what is the function of .h in #include<stdio.h> in c ?

23 Answers   HCL, IBM, Wipro,


What is bubble sort technique in c?

0 Answers  


the format specified for hexa decimal is a.%d b.%o c.%x d.%u

7 Answers   TCS,


Write a C/C++ program that connects to a MySQL server and displays the global TIMEZONE.

0 Answers  






Write a programm such that if user enter 11.25 it roundup to 11 but if user enter 11.51 upto 11.99 it will round up to 12 i.e.;convert the floting point value into integer format as explain above..

2 Answers  


Write a C program to print 1 2 3 ... 100 without using loops?

15 Answers   Hindalco,


Write a program which has the following seven functions. The functions should be: • main() this calls the other 6 functions • fget_long() a function which returns a long data type from a file • fget_short() a function which returns a short integer variable from a file • fget_float() a function which returns a floating point variable from a file • fprt_long() a function which prints its single, long argument into a file • fprt_short() a function which prints its single, short argument into a file • fprt_float() a function which prints its single, floating point argument into a file. You should use fscanf() to get the values of the variables from the input (the file) and fprintf() to print the values to the other file. Pay attention to using the correct format for each of the data types.

0 Answers  


Write a code to generate a series where the next element is the sum of last k terms.

0 Answers   Aspiring Minds,


How to establish connection with oracle database software from c language?

0 Answers  


Given a single Linked list with lakhs of nodes and length unknown how do you optimally delete the nth element from the list?

1 Answers   Oracle,


Convert the following expression to postfix and prefix X $ Y Z - M + N + P / Q / (R + S)

2 Answers  


Categories