hi friends.any one tell me pattern for mt exam for steel
plant..plz plz plz..
79
Pull the best out of people
Put other people above yourself
Challenge ideas from another viewpoint
Passionate about people
Dedication to serving others
Pushing people past their limits
Never give up
Generous of sharing
Make other people feel important
Thinking outside the box
Alternative thinking
Complete honesty
Wealth of information
Easily accessible
Work long hours
Finding the right answers
Working with all ages
Dealing with tough situations
Making the rounds with other people
Compassionate for what people need
Diverse in decision
Step outside self
.We want to compare the performance of a single threaded
disk server with a multithreaded 1.
Suppose the server takes 25 ms to receive a request for
work from client, dispatch the request for processing and
actual data request processing when reqd.
Data is in main memory.
If the reqd. Data is not in the main memory a real disk
operation is needed and an additional 75 ms are reqd. On the
average.
On the average 25% of the clients requests access the disk.
During the disk I/O period the thread waits. Assume that
there is no other process in system when the server is
running.
How many requests can the server handle per second if its
a)single threaded b)multithreaded
99
I would like to do my MS in US but i have a second class in
B.tech with 56% where in i have good acedemics in 10th and
inter .Is it posiible to get a US visa if i get good scores
in GRE and toefl.I have work experience in an Internation
call center for 1 year will they consider me for US visa as
i have a gap of 2 yaers after my B.tech will the visa be
succesful.What would be the answer if they ask me why you
worked in callcenter after your B.tech and why opting for
MS now when you didnt show interest in your B.tech
background....
215
What is grouting
167
is Motorola GSM Duplexer active or passive device?
I am stuck up with a question on appending of two arrays
I am writing the code for the same, I am appending two
strings this way
int main()
{
string s1 = "Welcome to C++";
string s2 = "C++ improves the logic ability";
string s3 = s1 + s2;
cout<<s3<<endl;
}
But if I go ahead with the integer datatype , it doesnt work
int main()
{
int arr[4] = {2,3,4,5};
int arr1[4] = {6,7,8,9};
int arr3[9] ;
arr3 = arr + arr1;//displays error
arr3 = arr ++ arr1; // works properly
}
Can anyone please clear my doubt in this question ?