Predict the output displayed in text fields named jTextField2 and jTextField3 after running the above code. -Technology

1 Answer

Answer :

(i) GREEN WORLD, CLEAN WORLD76 more characters can be entered(ii)length(),toUpperCase()

Related questions

Description : What will be displayed in jTextFieldl and jTextField2 after the following code is executed : -Technology

Last Answer : OutputjTextFieldl will contain value = 12jTextField2 will contain value = 13

Description : Observe the table named “Training” given above carefully and predict the output of the following queries: -Technology

Last Answer : (i) New DelhiFaridabadGurugram(ii) 2(iii) 11000(iv) Ms. Neena

Description : Observe the given table named “Loan” carefully and predict the output of the following queries: -Technology

Last Answer : (i)(ii)(iii)(iv)

Description : Predict the output of the following code: -Technology

Last Answer : The Output is:05

Description : Predict the output of the following code: -Technology

Last Answer : Output:05

Description : How can text be displayed in place of image for users whose browser do not support images? -Technology

Last Answer : The alt attribute of the tag is used to display the text in place of the image for the users whose browser do not support images.

Description : The text specified in the alt attribute is displayed as tooltip in (a) Internet Explorer -Technology

Last Answer : (a) The text specified in alt attribute is displayed as the tooltip in Internet Explorer only.

Description : The alternate text of an image can be displayed by using attribute of the tag. (a) src (b) alt -Technology

Last Answer : (b) alt attribute of the tag is used to display the alternate text of an image.

Description : The align attribute of the tag is used to specify the text that is to be displayed -Technology

Last Answer : False alt attribute is used to specify the text that is to be displayed in case the browser which does not support graphics.

Description : In Excel chart, text displayed at data points to indicate the specific category is called …………….. -Technology

Last Answer : (c) Text displayed at data points to indicate the specific category is called data label.

Description : Comments are displayed in the output. -Technology

Last Answer : False Comments are not displayed in the output.

Description : (i) Ms. Sangeeta wants to add few descriptive lines in the HTML code which should not be displayed on the webpage rather -Technology

Last Answer : (i) She should use comments in HTML.Any text to make comments in HTML, should be preceded by Example:Welcome(ii)HTML is used to display data and to focus on formatting of data, whereas XML ... XML is used to store and transfer the data over different platforms while HTML is used to design webpages.

Description : What values will be displayed in JOptionPane when the following code is executed? -Technology

Last Answer : No value will be displayed in JOptionPane because it will give exception in thread ‘main’ due to null.

Description : In PowerPoint 2007 under the Insert tab, there is a button named Text Box. What is the utility of this button? -Technology

Last Answer : Like a title placeholder, a Text Box is used to hold the text information

Description : Write java statement to make the Net Fee text field named txtNetFee un_editable at run time. -Technology

Last Answer : txtNetFee.setEditable(false);

Description : Write the HTML code to display an inline image named pencil.jpg located at C:\ in the center of your Web page. -Technology

Last Answer :

Description : Why do we insert comments in an HTML document, even though they are not displayed on a Web page? -Technology

Last Answer : So, that user will be able to understand coding effects and meaning.

Description : ……………. is an attribute of the tag which specifies the location or URL of the image to be displayed. -Technology

Last Answer : src is an attribute of the tag which specifies the location or URL of the image to be displayed.

Description : An image to be displayed in a Web page has to cover 25% of the browser window horizontally and 50% vertically. -Technology

Last Answer : An image to be displayed in a Web page has to cover 25% of the browser window horizontally and 50% vertically. The attributes height and width of the tag would be used for achieving this.

Description : Vallesoft Pvt. Ltd has designed and developed a Website that will be displayed differently in each of the continents. -Technology

Last Answer : (i) None of the given code fragments are well-formed.(ii) The correct code is: STAR TV 9.00PM Family Drama (iii) The XML tree is

Description : When a field name has a space in its title, such as Last Name, how is the merge field displayed in the mail merge document? -Technology

Last Answer : (c) When a field name has a space in its title, such as Last Name, Last_Name is the merge field displayed in the mail merge document.

Description : Find the output of the following Java code snippet after execution of each java statement labelled -Technology

Last Answer : The output is:IN5inin5

Description : Write the HTML code to set the bgcolor as pink, heading level 2, text -Technology

Last Answer :

Description : Write the HTML code to create a paragraph whose text color is blue. -Technology

Last Answer : or

Description : Write the CSS code to: (i) Apply 50px indentation to all text paragraphs marked with . -Technology

Last Answer : P{text-indent: 50px;font-style: italic;}

Description : What is the output of the following segment of the HTML code? -Technology

Last Answer : Output• MANGO• APPLE• GRAPES

Description : Write a code to produce the following output. -Technology

Last Answer : ComputerAn electronic machineCPU Brain of computer

Description : Write the HTML code to generate the following output: -Technology

Last Answer : The HTML code isTableABD EG HI

Description : Will the output from the following two code be any different? -Technology

Last Answer : Yes it will be different as in First Code there will be no output while in Second Code the output will be 2 because in while loop condition is false in the beginning so control will not come inside ... once while in do while loop, loop will be executed at least once even if the condition is false.

Description : What will be an output of the following code if value of variable application is 1? switch(application) -Technology

Last Answer : The output is:OS

Description : Write the output of the following code : -Technology

Last Answer : [10 12 16 20]

Description : Consider the following python code and write the output for statement S1 import pandas as pd -Technology

Last Answer : 0.50 8.00.75 11.0

Description : Find the output of the following code -Technology

Last Answer : a bfirst 10 20second 6 32a b1first 10 NaNsecond 6 NaN

Description : Will the output from the following two code be any different? -Technology

Last Answer : Yes it will be different as in First Code there will be no output while in Second Code the output will be 2 because in while loop condition is false in the beginning so control will not come inside ... once while in do while loop, loop will be executed at least once even if the condition is false.

Description : Find output of the following Java code snippet : -Technology

Last Answer : OutputDelhi 110001 10001

Description : (Visual) The sandstone structure is about 23 metres tall, located in Natrona County, Wyoming. Which bribery scandal, considered one of the biggest before Watergate and related to leasing of oil fields near the structure, happened in 1922-23 and is named after the structure?

Last Answer : Teapot Dome scandal OR Teapot Rock scandal.

Description : Can I prevent new text messages on my iPhone from being displayed automatically?

Last Answer : Yeah there is no way to stop that unless someone made a hack I don’t know about. Apple did not put an option for that on the phone.

Description : Why did the rmdir command fail's that a directory bar exists. The command rmdir bar fails with the message that the directory is not empty. On running ls bar no files are displayed?

Last Answer : This could mean that the directory named bar has hidden contents. Use ls -a bar to show all contents of bar.

Description : How are fields, record and a table related to each other? Explain with the help of an example. -Technology

Last Answer : Fields are one type of information. A record contains logically related fields. A table Emp name contains logically related records.Emp NoNameSalary1.Shridhar200002.Raghav40000Here EmpNo, Name, and Salary are three different fields. 1, Shridhar, 20000 represents one complete record.

Description : A ……… is a group of related fields. -Technology

Last Answer : A databaseis a group of related fields.

Description : A database that contains tables linked by common fields is called a (a) Centralized database (b) Flat file database -Technology

Last Answer : (c) Relational database stores data in the form of tables which are linked by common fields.

Description : Which of the following fields will not make a suitable primary key? (a) A customer’s account number -Technology

Last Answer : (b) From the given options, the data field can not be set as a primary key because it can’t be fixed for an object.

Description : How NUMBER and DATE/TIME type fields are different in Access? Give any one difference. -Technology

Last Answer : NUMBER data type contains numeric values, while DATE/TIME type field contains date and time values.

Description : What are the views in which fields can be deleted in MS_Access? -Technology

Last Answer : Datasheet View and Design View.

Description : Anjali writes the following commands with respect to a table employee having fields, empno, name, department, commission. -Technology

Last Answer : This is because the column commission contains a NULL value and the aggregate functions do not take into account NULL values. Thus Command1 returns the total number of records in the table whereas Command2 returns the total number of non NULL values in the column commission.

Description : In analog computer A) Input is first converted to digital form B) Input is never converted to digital form C) Output is displayed in digital form D) All of the above

Last Answer : Answer : B

Description : In analog computer a. Input is first converted to digital form b. Input is never converted to digital form c. Output is displayed in digital form d. All of above

Last Answer : All of above

Description : The operating system determines the manner in which all of the following occurs except a) user creation of a document b) user interaction with the processor c) printer output d) data displayed on the monitor e) None of these

Last Answer : b) user interaction with the processor

Description : In analog computer a. Input is first converted to digital form b. Input is never converted to digital form c. Output is displayed in digital form d. All of above

Last Answer : b. Input is never converted to digital form

Description : In analog computer a. Input is first converted to digital form b. Input is never converted to digital form c. Output is displayed in digital form d. All of above

Last Answer : b. Input is never converted to digital form