what- leona keeps the stones she finds in a triangular display case. what are the values of x and y?

1 Answer

Answer :

x

Related questions

Description : what- Max has two triangular bookends on his bookshelf. He measures their sides and finds that each has one side 3 inches long, one side 4 inches long, and one side 5 inches long. He concludes that the two bookends are congruent triangles?

Last Answer : Which reason justifies his conclusion?

Description : Write a C++ program to declare a class addition with data members as x and y. Initialize values of x and y with constructor. Calculate addition and display it using function ‘display’.

Last Answer : #include<iostream.h> #include<conio.h> class addition { int x,y; public: addition(int,int); void display(); }; addition::addition (int x1,int y1) { x=x1; y=y1; } void addition: ... y); } void main() { addition a(3,4); a.display(); getch(); }

Description : Does Google display all the result it finds on the internet?

Last Answer : answer:There are a few limitations/requirements for websites to show up in Google. Google gathers information through a web crawler. Basically, a computer visits a webpage, reads everything on that ... also invisible because it can only be found using certain queries, which Google does not know.

Description : Does leona lewis lip sing?

Last Answer : It is actually lip sync.

Description : What age did Leona McCauley die?

Last Answer : She died around age 91.

Description : Did Leona Helmsley own a hotel in Manhattan?

Last Answer : Leona Helmsley and her husband owned a hotel empire.They did own several properties in Manhattan.

Description : Who is Leona Lewis's sister?

Last Answer : She doesn't have a sister.

Description : Who is Leona Lewis's mother?

Last Answer : Leona Lewis' mum name is Maria Lewis. Other variety of ways of saying her name are Mary, Mariah, Mikah. Maria is a very popular name in Spanish culture.

Description : Who is Leona Lewis's father?

Last Answer : Aural Josiah Lewis

Description : Does Leona Lewis have pets?

Last Answer : Yes, Leona Lewis has 1 pet she has a rottweiler named Rome.

Description : Why does my Kubuntu keeps resetting display properties when I reboot?

Last Answer : What graphics card is in that system? I have one with an Nvidia card that does similar - I had to put a script in ~/.kde/Autorun to run something like: nvidia-settings -config=~/.nvidia-settings-rc -load- ... helpful, please mark it as a Great Answer - I am trying for a couple of the awards ;-) )

Description : Is Carol going to be angry at Daryl once she finds out what happened to Glenn and Abraham?

Last Answer : answer:She deserves to be. But since Daryl ran away with the daughter of the mailman, Carol will have one hell of a time finding him, if she ever does. I think it's a lost cause. Glenn and Abraham, well, ... did she do it over and over? The way I see it, Carol and Daryl are not long for the world .

Description : Is it illegal for an ex-wife to access my facebook messages or email messages if she finds my passwords?

Last Answer : Yes. Change everything. If she manages to do it again, get proof and take her to court.

Description : Do you know of anyone who should be retired by now yet he/she finds himself well over the age of 65 in a position where he/she should continue doing something for a living?

Last Answer : I know a medical transcriptionist who is 84 and still working at the county hospital . She types like a bandit and knows all the medical terms so the doctors love it when she does their work. She works 2–3 days per week because she wants to – and they pay her.

Description : A Robber is robbing a bank. He steals all the customer's money when he sees a safe. He threatens the clerk to tell him the code for the safe. She says ' Sorry I can't. The code is changing every day.' But the robber finds out the code. How did he find it out? -Riddles

Last Answer : The code is CHANGING everyday.

Description : A swimming-pool worker wants the pool's pH to be 7.2. She comes by to test the water and finds that the pH is 8.2. What should she do to correct this situation?

Last Answer : If the pH is higher than she wants it to be, she gotta add acid. If it too low, add base. :p Apex

Description : A woman rows to a place 24km distant and come back in 7 hrs. She finds that she can row 2km with the stream in the same time as 1.5km against the stream. The rate of the stream is, A) 2 B) 4 C) 1 D) 3

Last Answer : ANSWER: C  Explanation:  Suppose she move 2km downstream in x hrs  Then, speed of downstream = (2/x) km/hr  Speed of upstream = (1.5/x) km/hr  Therefore 24/(2/x) + 24/(1.5/x) = 7  12x + 16x = 7 ... of downstream = 8km/hr and upstream = 6km/hr  Rate of the stream = ½ (8 - 6 )km/hr  = 1 km/hr

Description : The area of the triangular region, in the following figure, bounded by the lines 2x-y=1 and x+2y=13 and Y-axis is (a) 11.25 sq.units (b) 9.75 sq.units (c) 16.25 sq,units (d) 18.75 sq.units

Last Answer : (a) 11.25 sq.units

Description : Bakeries use yeast in bread-making because it – (1) makes the bread hard (2) makes the bread soft and spongy (3) enhances the food values (4) keeps the bread fresh

Last Answer : (2) makes the bread soft and spongy Explanation: Bread is usually made from wheat-flour dough that is cultured with yeast, allowed to rise, and finally baked in an oven. The fermentation due to yeast makes the bread soft and spongy.

Description : Bakeries use yeast in breadmaking because it (1) makes the bread hard (2) makes the bread soft and spongy (3) enhances the food values (4) keeps the bread fresh 

Last Answer : makes the bread soft and spongy

Description : A person finds certain goods belonging to some other persons. In such a case, the finder (a) Becomes the owner of that good (b) Is under a duty to trace the real owner (c) Can sell that good if true owner is not found (d) Both (b) & (c)

Last Answer : (d) Both (b) & (c)

Description : Where do you get shiny stones in Pokemon x and y?

Last Answer : Feel Free to Answer

Description : Are pain and suffering positive values, to be regarded as opportunities to display virtue and in accordance to the nature of humanity, and is the avoidance of pain and the pursuit of pleasure a vice?

Last Answer : I think - in my two months' study of Buddhism - that pain and suffering just are. They don't have intrinsic value but are part of the human condition that we have to accept. On the other hand, ... knowing that and accepting doesn't mean that there's anything wrong in avoiding some of it if you can.

Description : The …………………... command can set or display the configuration values for a network interface. A. ping B. traceroute C. ifconfig D. finger

Last Answer : C. ifconfig

Description : Write a program to Print values of variables and their addresses. Note : 1) Variables can be of any data type. 2)Use of & or pointer to display address shall be considered. 

Last Answer : #include #include void main() { int a,b; clrscr(); a=5; b=10; printf("\n Value of a=%d",a); printf("\n Address of a=%u",&a); printf("\n Value of b=%d",b); printf("\n Address of b=%u",&b); getch(); }

Description : Design a programme in C to read the n numbers of values in an array and display it in reverse order.

Last Answer : #include #include #define max 50 void main() { int a[max],i,n; clrscr(); printf("\n Enter number of elements:"); scanf("%d",&n); printf("\n Enter array element:"); for(i=0;i=0;i--) printf("\t%d",a[i]); getch(); }

Description : Define a class circle having data members pi and radius. Initialize and display values of data members also calculate area of circle and display it.

Last Answer : class abc {  float pi,radius; abc(float p, float r) { pi=p; radius=r; } void area() { float ar=pi*radius*radius; System.out.println("Area="+ar); } void display() { System.out.println("Pi="+pi ... void main(String args[]) { abc a=new abc(3.14f,5.0f); a.display(); a.area(); } }

Description : Write a program to declare class having data member as hrs, mins, secs. Write constructor to assign values and destructor to destroy values. Accept & display data for one object.

Last Answer : #include<iostream.h> #include<conio.h> class time { private: int hrs, mins,sec; public: time(int h,int m,int s) { hrs=h; mins=m; sec=s; } ~time() { cout<< hours ... } }; void main() { time t(2,43,56); t.display(); getch(); }

Description : Write a program in C++ to declare a class measure having data members as add 1, add 2, add 3. Initialize the values of two data members using constructor and display their addition using function.

Last Answer : #include<iostream.h> #include<conio.h> class measure { public: int add1,add2,add3; measure(int a,int b) { add1=a; add2=b; } void cal() { add3=add1+add2; } void display() ... ;>a>>b; measure m1(a, b); m1.cal(); m1.display(); getch(); }

Description : Write a shell script to accept length and breadth of rectangle from user. Calculate and display area, perimeter, of entered values using choice entered by user.

Last Answer : #!/bin/bash # GNU bash, version 4.3.46 echo "Enter Length of Rectangle: " read length echo "Enter Breadth of Rectangle: " read breadth echo "Which operation you want to perform? 1: area 2: perimeter" read ... ) res=` echo 2 \* $length \* $breadth | bc` ;; esac echo "Result is $res" exit 0

Description : My dog keeps scratching her back legs and she has formed a rash. Could it be itching from a bug?

Last Answer : It could be many things- from parasites to allergies. Time for a trip to the vet.

Description : Some guys trying to get with my girlfriend what do I do to make sure she keeps her eyes on me? :(

Last Answer : Does he have more money than you? If he does, you should probably prepare yourself to find love with another girl.

Description : Did you know Queen Elizabeth II keeps track of when she wore each outfit? -Do You Know?

Last Answer : NEED ANSWER

Description : She/he keeps machines, maeerials, tools, etc., ready for operations by different workers. Whose work is described by this sentence under functionsl fo

Last Answer : She/he keeps machines, maeerials, tools, etc., ready for operations by different workers. Whose work is ... . Repaid boss C. Gang boss D. Route clerk

Description : "Susan traveled 114 miles in 2 hours. If she keeps going at the same rate, how long will it take her to go the remaining 285 miles of her trip"?

Last Answer : 4 hour

Description : he receptionist at a doctor's office throws away certain product circulars mailed by pharmaceutical companies and keeps the ones on products she believes are useful. The receptionist is performing which role in the buying centre? A)user B)influencer C)buyer D)decider E)gatekeeper

Last Answer : E)gatekeeper

Description : ‘She/he keeps machines, materials, tools, etc., ready for operations by concerned workers.’ Whose work is described by this sentence under functional foremanship? a. Instructions Card Clerk b. Repair Boss c. Gang Boss d. Route Clerk

Last Answer : c. Gang Boss

Description : A triangular section having base b, height h, is placed with its base horizontal. If the shear stress at a depth y from top is q, the maximum shear stress is (A) 3S/bh (B) 4S/bh (C) 4b/Sh (D) 3b/bS

Last Answer : (A) 3S/bh

Description : The total energy of each particle at various places in the case of perfect incompressible fluid flowing in continuous stream (A) Keeps on increasing (B) Keeps on decreasing (C) Remain constant (D) May increase/decrease

Last Answer : Answer: Option C

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 : 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 : During the testing of a module tester X' finds a bug and assigned it to developer. But developer rejects the same, saying that it's not a bug. What X' should do? A. Report ... same bug to another developer D. Send to the detailed information of the bug encountered and check the reproducibility

Last Answer : D. Send to the detailed information of the bug encountered and check the reproducibility

Description : During the testing of a module tester X' finds a bug and assigned it to developer. But developer rejects the same, saying that it's not a bug. What X' should do? A. Report ... same bug to another developer D. Send to the detailed information of the bug encountered and check the reproducibility

Last Answer : D. Send to the detailed information of the bug encountered and check the reproducibility

Description : To display (X+Y)2, correct HTML code is (a) (X+Y)2 -Technology

Last Answer : (c) (X+Y) 2 code is correct because superscript have to be placed in between and tags.

Description : How many minimum numbers of zeros are there in ‘3 x 3’ triangular matrix? a.4 b.3 c.5 d.6

Last Answer : b.3

Description : what- Point X is the centroid of the triangular plate.Which measure cannot be calculated from the information given?

Last Answer : XP

Description : Where can I buy a display case for video game consoles?

Last Answer : I’d say some sort of spice cabinet or china cabinet with glass doors.

Description : How do you build a baseball bat display case?

Last Answer : Here’s a bat display company that has several different types of bat holders. You may be able to get an idea of what you should do from this site; the pictures are clear.

Description : What This defenders rifle is in a display case inside the shrine?

Last Answer : david crockett