Mr. Suman, a programmer in New Era Programming World has designed a registration page for a hobby club as shown below: -Technology

1 Answer

Answer :

(i) int x=c1.getSelectedIndex();int fee=0;if(x==0)fee=1000;else if(x==1)fee=1500;else if(x==2)fee=2000;else if(x==3)fee=2500;t2.setText(''+fee);(ii) double disc=0;int fee=Integer.parseInt(t2.getText());if(r2.isSelected())disc=fee*10/100;t3.setText(''+disc);(iii) double disc=Double.parseDouble(t3.getText());int fee=Integer.parseInt(t2.getText());double net=fee-disc;t4.setText(''+net);(iv) System.exit(0);(v) c1.addItem('Reading');

Related questions

Description : Ms. Neelam works as a programmer in “Kidz Entertainment Zone”. She has designed a Registration Page to calculate -Technology

Last Answer : (i)int age=Integer.parseInt(jTextField2.getText());if(age>=3 && age1000)disc=fee*20/100;jTextField4.setText(''+(disc));(iv)int fee=Integer.parseInt(jTextField3.getText());int disc=Integer.parseInt(jTextField4.getText());jTextField5.setText(''+(fee-disc));

Description : Mr. Pawan works as a programmer in “ABC Marketing Company” where he has designed a Salary -Technology

Last Answer : (i) We need to double click at the Commission button (jButtonl) and type the following code :int Commission :if (jRadioButtonl. isSelected ( ) = True )Commission = 500 ;elseif ( ... and type the following code :int Net_Sal ;Net_Sal = Gross_Sal-Fac_Charges ;jTextField6. setText (Net_Sal) ;

Description : Suman is working as marketing manager in an advertising company. She has prepared a presentation on her latest product. -Technology

Last Answer : 1. Press the Slide Sorter view button in work space area to view all the slides together.2. In the Slide Transition page, set the timing in Advance slide sections Automatically after position where the ... the layouts of tasks pane, select a chart type slide or use Insert -> Chart menu option.

Description : Machine language sometimes referred to as (a) programming language that is used widely by the programmer. (b) machine code or object code -Technology

Last Answer : (b) Machine language sometimes referred to as machine code or object code because it is the language which is only understood by the computer as a computer itself is just a machine or an electronic device.

Description : Ms. Priya works as a programmer in “Avon Education” where she has designed a software -Technology

Last Answer : Here,Name is stored in jTextField1Fee Per Quarter is stored in jTextField2Concession Amount is stored in jTextField3Fee to be Paid is stored in jTextField4(i) We need to double click at the Calculate Charges' ... at the Exit' button (jButton3) and type the following code:System., exit (0) ;

Description : Write the HTML code to generate the following table on a Web page with the contents and alignment exactly as shown below: -Technology

Last Answer : The HTML code is

Description : What’s a new skill or hobby you’ve acquired during this COVID era?

Last Answer : Olympic level handwashing

Description : While working in Netbeans, Ms. Sonia has designed a login page where she wants to display -Technology

Last Answer : If statement is more appropriate for this situation because here is given only two conditions which will be executed by if statement while switch statement is used where multiple branch selection statements are given.

Description : Out of the following, whom do you think is the most probable user of a Light Pen? (a) Computer Programmer (b) Graphic Designer (c) Journalist -Technology

Last Answer : (b) Light pen is useful for graphic designer as it is useful for identifying a particular location on the screen.

Description : Pronita is a programmer in an institution and is asked to handle the records containing personal information -Technology

Last Answer : Suggested five fields are as follows:1. TCode -> To store the code of the teachers.TName -> To store the name of the teachers.TSubject -> To store the name of subjects for which the teacher is placed ... TCode is most likely to be the key field because it has a unique value for each of the records.

Description : Damini is a programmer in an institute and is asked to handle the records -Technology

Last Answer : FieldNameDataTypeRollNoNumberNameTextClassTextSectioTextGenderText

Description : Ms. Achla, works as a Programmer in a survey firm named “National Survey Foundation”. In her current project, she is supposed to design -Technology

Last Answer : S. No.Control used to inputControl1TRAINEE’S NAMETextField2TRAINING LOCATIONRadio Button/Combo Box3GRADE THE SESSION(Excellent, Good, Satisfactory, Unsatisfactory)Radio Button/Combo Box4SUGGESTIONSText Area

Description : Deepti works as a programmer in a travel company. She has developed the following code to display -Technology

Last Answer : switch (choice){Case 1 : JTextFieldl. setText ('New Delhi to Goa') ;break ;Case 2 : jTextFieldl.setText ('New Delhi to Paris') ;break ;Case 3 : jTextFieldl.setText ('New Delhi to Bangkok') ;break ;default: jTextFieldl.setText ('P1. choose valid option') ;}

Description : Where can I go to find out about volunteer programming projects as a novice programmer?

Last Answer : I would suggest sourceforge.net: http://sourceforge.net/apps/trac/sourceforge/wiki/What%20is%20SourceForge.net

Description : Which of the following statement is valid? A) Lady Augusta is the first programmer B) Ada is the daughter of Lord Byron, a famous English poet C) ADA is a programming language developed by US Defense D) All of above

Last Answer : Answer : D

Description : Which are designed to interpret a specified number of instruction code. a. Programmer b. Processors c. Instruction d. Opcode

Last Answer : b. Processors

Description : Reread pp 152-154 through the quote shown below. List everything you learn about Mr. Chris from this part of the text as a person-his character in other words. One way an author helps you learn about a character is through what others say about him?

Last Answer : This is about Miracles on Maple Hill. The quote: " This man looks like a tree" and "He seemed to stand with his legs planted in the ground.

Description : Carefully study the Web page given below. Identify 10 tags (structural as well as formatting tags) that have been utilized -Technology

Last Answer : 1. to specify the title of the Web page.2. contains all the content that is to be displayed on the Web page and all the various formatting and structural tag.3. used to create an unordered ... anchor tag. Use the href attribute to provide the reference of the Web page that you want to hyperlink.

Description : Carefully study the Web page given below. Identify 10 tags (structural as well as formatting tags) that have been utilized in creating this -Technology

Last Answer : 1. to specify title of the Web page.2. contains all the text content that is to be displayed on Web page and all the various formatting and structural tag.3. defines the most important and biggest ... provide caption to the table.9. used to create a table row.10. used to define data cells.

Description : Write the HTML code to generate the following web page with the given below specifications: -Technology

Last Answer : Income Tax Slabs 2017-18INCOME TAX SLABS 2017-18S.No.Income RangeTax%10-250000NIL2250001-50000010%3500001-100000020%4>100000030%Next Page

Description : In a Bank’s database, there are two tables ‘Customer’ and ‘Transaction’ as shown below. -Technology

Last Answer : (i)Acc_No, Cust_Phone(ii)All the columns having capability to become Primary Key are known as Candidate Keys.(iii)Acc_No(iv)Trans_Id

Description : In a Bank’s database, there are two tables ‘Customer’ and ‘Transaction’ as shown below. Write a query to display customer’s name who has -Technology

Last Answer : (i) Select cust_name from customer c,transaction t where c.Acc_No=t.Acc_No and Transaction_Type= 'Debit';(ii)Select cust_name, t.* from customer c, transaction t where c.Acc_No=t.Acc_No;(iii) ... total amount of all type of transactions, it will only display the total of credit transactions only.

Description : Write a code to plot the speed of a passenger train as shown in the figure given below: -Technology

Last Answer : import matplotlib.pyplot as pltimport numpy as npx = np.arange(1, 5)plt.plot(x, x*1.5, label='Normal')plt.plot(x, x*3.0, label='Fast')plt.plot(x, x/3.0, label='Slow')plt.legend()plt.show()

Description : Identify the topology shown below. Write 2 advantages of this topology. -Technology

Last Answer : Star Topology Two advantages of star topology are as follows :1. Easy to detect faults and remove It.2. Failure to single system will not bring down the entire network.

Description : Write SQL query to create a table “Registration” with the following structure: -Technology

Last Answer : Create table Registration(Reg_Id Integer(2) Primary Key,Name varchar(20),Course varchar(10),Join_Dt date);

Description : A micro-interaction has been designed for a menu' icon. On clicking this icon, it changes into a different icon representing back', depicted by an arrow. On another click it changes back to the menu icon. Shown below are 13 key-frames of ... 4, 13 D. 1, 4, 9, 3, 5, 6, 8, 12, 2, 10, 11, 7, 13

Last Answer : C

Description : It’s an era of online financial transactions. Help Julie in identifying any two challenges which a common man may face for the same. -Technology

Last Answer : (i)A common man should have an electronic gadget like smart phone or computer.(ii) A common man should be oriented for online financial safety measures.

Description : It’s an era of online financial transactions. Help Julie in identifying any two challenges which a common man may face for the same. -Technology

Last Answer : i. A common man should have an electronic gadget like smart phone or computer.ii. A common man should be oriented for online financial safety measures

Description : Mr. X has recently installed a new operating system on his computer 1. Describe the main functions of an operating system. -Technology

Last Answer : 1. Monitors the performance of the system, enables software to communicate with hardware and application softwares to be loaded; gives prompts and error reports to the users.2. Antivirus and compression tool.

Description : If you work with a transgendered programmer on programs meant for kids do you enforce normative gender roles?

Last Answer : answer:I know two transgender kids (both around 10 years old). Allowing for other is the right thing to do. We have moved beyond the male/female thing. It's also doesn't affect anyone's use ... If the vast majority are going to choose male or female, what does it matter that there is this option.

Description : Mr. Ravindra wants to send some money to her wife who is in some other city. -Technology

Last Answer : E-banking is the easiest way to transfer money through the bank.

Description : Mr. Singh and Mr. Tyagi want to send a song from each other. Both having a mobile phone. -Technology

Last Answer : Bluetooth technology is used for sharing the data like audio, video etc. Using this technology, users of cellular phones, initiate the sending or receiving data. In general, having all mobiles and fixed ... Tyagi can send a song to each other by using a bluetooth technology easily within short time.

Description : While creating a table named “Employee”, Mr. Rishi got confused as which data type he should chose for the column “EName” out of char and varchar. -Technology

Last Answer : Varchar would be the suitable data type for EName column as char data type is a fixed length data type while varchar is a variable length data type.Any employee‟s name will be of variable length so it‟s advisable to choose varchar over char data type.

Description : Mr. Sanjay, a banking professional want to enroll himself in an e_Learning course. Mention him any two challenges of e_Learning. -Technology

Last Answer : (i)The lack of learner‟s motivation.(ii) The busy schedule of the learners.

Description : Mr. Sanjay wants to plot a bar graph for the given set of values of subject on x_axis and number of students who opted for that subject on -Technology

Last Answer : (i) plt.bar(x,y)(ii) plt.show()

Description : Mr. Harry wants to draw a line chart using a list of elements named LIST. -Technology

Last Answer : (i) PLINE.plot(LIST)(ii) PLINE.ylabel(“Sample Numbers”)

Description : Mr. Manav, a database administrator in “Global Educational and Training Institute” has created following table named “Training” -Technology

Last Answer : i. Select count(name) from training where name like ‘Ms.%’;ii. Select * from training where fee is NULL;iii. Select city, fee from training where topic = ‘Cyber Security’;iv. Alter table training add feedback varchar(20);

Description : Assembly language is a low level programming language (a) makes use of mnemonics to interact with computer system -Technology

Last Answer : (a) Assembly language is a low level programming language that use mnemonics to interact with computer system.

Description : HTML is a programming language. -Technology

Last Answer : False Because it is a markup language.

Description : Identify the option, which is not a feature covered under device management? (a) Speed (b) Spooling (c) Sharing (d) Programming -Technology

Last Answer : (d) Among given options, programming is not a feature covered under device management.

Description : Many of the programming brains has shifted their focus from Proprietary software to Free and Open software. -Technology

Last Answer : Any two freedom offered by Free software are:The freedom to run the program for any purpose.The freedom to redistribute copies.It is Freeware as freeware software are freely distributed and used ... but the source code is not available while source will be available with Free software.Openoffice.org

Description : Ruby, a class XI student has just started learning java programming. Help her in the following: (i) Explain her the concept of variable -Technology

Last Answer : (i)Variables are named storage location to store values temporarily which can be changed during program execution.Data type states the way the values of that type are stored, the operations that can be done ... setText( Just Pass );In the above if statement, value of marks is being compared with 40.

Description : Anju, a beginner in java programming has written following code with some mistakes: -Technology

Last Answer : int k=0;String s='Save Earth';int l=s.length();for(int i=0;k

Description : Write down any one benefit of pair programming. -Technology

Last Answer : Improved code quality: As second partner reviews the code simultaneously, it reduces the chances of mistake.

Description : Many of the programming brains has shifted their focus from Proprietary software to Free and Open software. Mention any two freedom -Technology

Last Answer : Any two freedom offered by Free software are:The freedom to run the program for any purpose.The freedom to redistribute copies.It is Freeware as freeware software are freely distributed and used ... but the source code is not available while source will be available with Free software.Openoffice.org

Description : Ruby, a class XI student has just started learning java programming. Help her in the following: -Technology

Last Answer : i. Variables are named storage location to store values temporarily which can be changed during program execution.Data type states the way the values of that type are stored, the operations that can be done ... setText( Just Pass );In the above if statement, value of marks is being compared with 40.

Description : (a) Following is a list of programming languages : BASIC, COBOL, C, JAVA -Technology

Last Answer : (a) JAVA, COBOL(b) jListl. getSelectedValue ( ) ;

Description : Mr. Sebastine, a famous author, recently got his new novel released. To his utter dismay, he found that for the 1974 pages on an average there were 3 mistakes in every page. While, in the first 1024 pages there ... the average number of mistakes per page for the remaining pages. A) 5 B) 2 C) 3 D) 4

Last Answer : D According to the question X is the remaining pages average. 2122+(1974-1024)×x/1974=3 950x=5922-2122=3800 X=3800/950=4

Description : I want to know your views on how the era shown in The Physician (2013 movie) differs from the era we are living in today.

Last Answer : I am not aware of that movie, do you have any links to it??

Description : What is a URL? a) A computer software program b) A type of programming object c) The address of a document or page on the World Wide Web d) An acronym for Unlimited resources for Learning e) None of these

Last Answer : c) The address of a document or page on the World Wide Web