NRI deposits are popularly known as (a) Soft money (b) Hot money (c) Call money (d) Dear money
1 11332Which one of the following dynasties was ruling over North India at the time of Alexander?s invasion? (a) Nanda (b) Maurya (c) Sunga (d) Kanva
3 15204The term ?Punter? is associated with the game of: (a) Golf (b) Polo (c) Bridge (d) Horse Racing
2 16656Duncan passage lies between: (a) South Andaman and Little Andaman (b) South and Middle Andaman Islands (c) North and Middle Andaman Islands (d) North and South Andaman Islands
7 51804How many such pairs of letters are there in the word STAINLESS each of which has as many letters between them in the word as they have in the English alphabet, in the same sequence? (a) Two (b) Three (c) Four (d) Five (e) None of these
29 141383The difference between a number and its three-fifth is 50. What is the number? (a) 75 (b) 100 (c) 125 (d) 80 (e) None of these
7 42974How often the Finance Commission is constituted in India? (a) Only once (b) Once every year (c) After every 5 years (d) After every 10 years
6 21835In the election of the President of India (a) The total number of votes to be cast by all the elected members of both Houses of parliament will be equal to the total number of votes cast by all the members of all State Assemblies (b) The total number of votes cast by the Members of both Houses of Parliament is less than the total number of votes cast by all the members of the State Assemblies (c) The total number of votes cast by both the Houses of Parliament is double than that of the number of votes cast by the State Assemblies (d) None of these is correct
1 6845The largest source of revenue in India is (1) Sales tax (2) Excise duty (3) Income tax (4) Corporate tax
22 1111691) int i=5; j=i++ + i++ + i++; printf("%d",j);This code gives the answer 15.But if we replace the value of the j then anser is different?why? 2)int i=5; printf("%d",i++ + i++ + i++); this givs 18.
8 66605Please suggest me how to prepare for the Bank Probationary Officers examination. I cant go to any coaching classes, so im preparing at home..so plese tell me any tips regarding how to prepare for the exams.. thank you
15 40149Post New IBPS Interview Questions
What does ng transclude do?
The following program reads data (details of students) from a file named students.txt and converts it into e-mail addresses. The results are written to a file named studentemail.txt. students.txt consists of a number of lines, each containing the data of a student in colon delimited format: Last Name:First Name:Student Number Each input record is converted to an e-mail address and written to studentemail.txt in the following format: the first character of the last name + the first character of the first name + the last four digits of the student number + “@myunisa.ac.za” import java.io.*; public class EmailConverter { public static void main(String[] args) throws IOException { BufferedReader input = new BufferedReader(new FileReader ("students.txt")); PrintWriter output = new PrintWriter(new FileWriter ("studentemail.txt")); String line = input.readLine(); while (line != null) { // Extract the information for each student String[] items = line.split(":"); // Generate the email address String email = "" + items[0].charAt(0) + items[1].charAt(0) + items[2].substring(4,8) + "@myunisa.ac.za"; email = email.toLowerCase(); // Output output.println(email); line = input.readLine(); } input.close(); output.close(); } } Rewrite the class so that it handles possible errors that may occur. In particular, it should do the following: • It should catch at least three appropriate exceptions that might occur, and display suitable messages. • At this stage, the program will not run correctly if there is an empty line in the input file. Change the program so that if an empty line is encountered, an exception is thrown and the empty line is ignored. This exception should be handled with the display of a suitable error message. • Before the e-mail address is added to the output file, check if the student number has 8 digits. If not, throw an InvalidFormatException (which the program should not handle itself)
What is the zooplankton?
i want to know rdbms certification details and syallabus and for whom i contact for rdbms certification in bangalore i need answer very urgent please mail to aniltelkar50@gmail.com please as soon as possible
List the various user types.
Can we insert data if clustered index is disabled?
Can you have multiple body tags in html?
Why is python so slow?
How do you configure a git repository to run code sanity checking tools right before making commits, and preventing them if the test fails?
What are the tips for getting keyword expansion working?
Define dhcp?
Provide examples of industries where fairness in AI is particularly critical.
Which unit gives non-linearity to a neural network?
I want to know the material required per Square foot in rcc roof i.e.Steel ,Cement,
Why you need indexing? Where that is stored and what you mean by schema object? For what purpose we are using view?