what is throws keyword
Answer / m.shanmuga sundaram(rjnsoftwar
When you don't want/need to catch an exception explicitly
using the try...catch block,use throws keyword.
void ReadMyFile()throws IOException
{
}
| Is This Answer Correct ? | 0 Yes | 1 No |
in a company 30% are supervisors and 40% employees are male if 60% of supervisors are male. what is the probability that a randomly choosen employee is a male or female?need steps to solve this?
How does the type system works when there is interoperability between a COM and .Net, i mean what exactly happens there
code for connection from windows forms to sql server
In loading programs into memory, what is the difference between load-time dynamic linking and run-time dynamic linking?
THERE ARE 4 SOURCE FILES WHICH CONTAINS SAME METADATA CREATE A TARGET THAT SHOULD DISPLAY THE FILE NAME ALONG WITH THE RECORD PLEASE SEND THE ANSWERFOR THIS QUESTION WITH MAPPING
what is software
Which language they use during interview?
0 Answers State Bank Of India SBI,
Write code to read the records from a file and load any array of size 99?make sure that you take care of all the error conditions?
Write a program to find duplicate number from array in minimum time complexity.
There is a table which contains all the employee details, unfortunately there is mistake occured while entering the data. ex: ------------------------------- empid empname gender address ------------------------------- 1 abcd f address1 2 defg m address2 3 ghth m address3 4 jkil f address4 write a update query that will change gender 'm' to 'f' and 'f' to 'm'
Question:Why is mapping required? Computer 'Paging' & 'Segmentation'. Question:Give the disadvantages of Havander's Strategies. Question: What do you mean by Belady's Anomaly. - Describe with example. Question: Discuss the various function of OS. Question: Give a brief discussion on schedulers & Dispatchers with respect to process management.
SAS question: I have 50 fils a1,a2,...,a50. the primary key is upc. then if i want to merge all 50 files, the code is as follows, data test; merge a1 ... a50; by upc; run; we know that writing all 50 files name is time consuming, is there any standard format of this code?