Explore topic-wise InterviewSolutions in .

This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.

6651.

Write a program in python to display the grade of student as per instructions given below: Marks Grade 85 to 100 A 61 to 84 B+ 41 to 60 B 30 to 40 C Below 30 Fail Note- if marks entered Greater than 100 will be treated as Wrong input

Answer»

d ANSWER:-Question:Write a program in Python to display the grade of a student as per the given instructions. Solution:Here comes the program. n=float(input("Enter your marks:  "))if n < 0 or n > 100: print("Invalid Marks.")else: g="" if n>=85:  g="A" elif n>=61:  g="B+" elif n>=41:  g="B" elif n>=30:  g="C" else:  g="Fail" print("Your grade:  ",g)ALGORITHM:STARTAccept the marks. Check if the marks is valid or not. Calculate and display the grade as per the given condition. STOP.Refer to the attachment for OUTPUT ☑.

6652.

Write a program in python to check whether two numbers are greater or equal to each other

Answer»

hiExplanation:#PROGRAM in python to CHECK whether two numbers are greater or equal to each othera=int(INPUT("enter the number")) b=int(input("enter the number")) if a==b:    print("they are equal") ELIF a>b:    print(a,"is greater than",b) elif a

6653.

Write a program in python to find the numbers that are divisible by 6 from 31 to 60

Answer»

d Answer:-Question:Write a PROGRAM in Python to find the numbers that are divisible by 6 from 31 to 60.Solution:Here comes the códe. print("Numbers divisible by 6 from 31 to 60 are: ")for i in range(31,60+1): if i%6==0:  print(i,END=" ")Algorithm:STARTIterate through the numbers in range 31 to 60.Check if any NUMBER is divisible by 6 or not. If true, display the number.STOPRefer to the attachment for output☑.

6654.

Write a program in python to print a square of alternate numbers between the range of 1 to 10

Answer»

e:PythonNOTE: I'm PRINTING SQUARE of every 2ND NUMBER (alternating numbers) only. Program: for i in range(1,11,2): print (i * * 2)Output:19254981Explanation:range (1, 11, 2) will run a loop from 1 to 10 with a gap of 2. i * * 2 will RETURN the sqauare of numbers.

6655.

85points PLEASE HELP

Answer» TION:B THANKS.........MARKS me
6656.

What are macro-nutrients and why are they called macro-nutrients ???? science std 9 ncert , cbse plz answer​

Answer»

tion:Macro-nutrients are those nutrients which are required in large quantities for GROWTH and development of plants. SINCE they are required in large quantities, they are known as macro-nutrient. The six macro-nutrients required by plants are nitrogen, phosphorus, potassium, CALCIUM, MAGNESIUM, and SULPHUR.

6657.

7. This poster alongside highlights the need for *Peace! It says, "Peace is a never-endingprocess....It cannot ignore our differences oroverlook our common interests." Write inyour own words what you think the abovesentences are trying to convey? How does itrelate to the need for religious tolerance?​

Answer»

sir , or WHOEVER U are PLEASE study text BOOK or cw . u should not copy in testExplanation:

6658.

2.What are layers in Flash? What arethey used for?​

Answer» HOPE this answer helps you!Explanation:In Flash, working in layers is very important. They make animation easier, they allow you to keep the elements of your animation separate, and they allow you to create scenes with the APPEARANCE of depth. Think of layers as sheets of transparent paper ARRANGED in a stack.Layers help you deal with more complex Flash projects. Working with layers has several ADVANTAGES: You can draw and edit objects in one layer without affecting objects in another layer. You can lock layers (to protect their EMBEDDED objects from unwanted editing)
6659.

A web page is made up of several_________.​

Answer» PLEASE MARK me as the BRAINLIEST
6660.

8 m = how centemeter​

Answer» 8X 100 =800 CM EXPLANATION: hope you MARK me as a brainlist
6661.

_____ keys are used to undo an action​

Answer»

To UNDO an action press Ctrl+Z. If you prefer your mouse, CLICK Undo on the Quick ACCESS TOOLBAR.

6662.

Write the steps to apply a theme to all slides of a presentation​

Answer»

To apply a theme: Select the Design tab on the Ribbon, then locate the Themes GROUP. Each   image represents a theme. Click the More drop-down arrow to SEE all available themes. CLICKING the More drop-down arrow. Select the desired theme. Selecting a theme. The theme will be APPLIED to the ENTIRE presentation.

6663.

Which of the following is second generation language ​

Answer»

y LANGUAGE are SECOND GENERATION language

6664.

Explain the different secondary storage device​

Answer» PLEASE MARK me BRAINLIST
6665.

Example of valid variable name in context to C++

Answer»

It is a CODING language.Explanation:#FOLLOWME

6666.

Explain the various Input device​

Answer»

In computing, an input device is a piece of EQUIPMENT USED to provide data and control signals to an information PROCESSING SYSTEM such as a COMPUTER or information appliance.

6667.

Daily computer science notes​

Answer»

very NICE USE fullkeep it up

6668.

Explain the process of convertion of decimal number to binary number​

Answer»

t POPULAR way to convert a DECIMAL number into the BINARY is the double dabble method. In this method, the given decimal number is progressively DIVIDED by 2 and writing the remainder after each division. When all the remainder is READ in reverse order, the binary number is obtained.

6669.

What are Advantages and Disadvantages of apps ?​

Answer»

tion:may be it HELPS you if it PLZ MARK me brainliest

6670.

6. State the value of nm: int n = 5; char m = 'd';n += m;(char)(m+6);Full Marks : 2n= 105, m="jn= 106, m="j"n= 104, m="j"All of above​

Answer» SIR , or whoever U are please study text BOOK or CW . u should not copy in testExplanation:
6671.

5. Give the output of the following: char a = 'E';int b = 3;System.out.println((char)(a+b+2));=72='Η'='J'​

Answer» SIR , or whoever U are please study text book or CW . u should not COPY in testExplanation:
6672.

Which is best online store to shop

Answer»

I think so Flipkart Be HAPPY MAHAKAL khush RAKHE AAPKO

6673.

Explain the logical gates​

Answer»

A logic gate is an idealized model of COMPUTATION or physical electronic device implementing a Boolean FUNCTION, a LOGICAL operation performed on one or more binary INPUTS that PRODUCES a single binary output. ... In modern practice, most gates are made from MOSFETs (metal–oxide–semiconductor field-effect transistors).

6674.

Correct and complete the following flowchart to divide A by B. STARTInputDiv - AZSTOPA meer in short​

Answer»

tion:The FIRST symbol in a flowchart is the START symbol.Question 2A flowchart is a pictorial representation of a sequence of instructions that are required to solve a problem.Question 3Flow lines are used to connect different boxes.Question 4The Decision Box is used for making decisions as well as comparisons.Question 5All mathematical operations are put in a Process box.Write the names and the symbols of the boxes for the given statementsStatement NAME of the Box SymbolTo assign a number Process Box Process Box Flowchart Class 8 ICSE Computer StudiesTo display the result Input / Output Box Input Output Box Flowchart Class 8 ICSE Computer StudiesTo start the process Start Box Start Box Flowchart Class 8 ICSE Computer StudiesTo decide whether a number is SMALLER than the other Decision Box Decision Box Flowchart Class 8 ICSE Computer StudiesComplete the FOLLOWING flowchartsQuestion 1A flowchart to check whether a triangle is possible or not.Flowchart to check if triangle is possible. Class 8 ICSE Computer Studies.Question 2A flowchart to display the greater of the two numbers.Flowchart to check greater of two numbers. Class 8 ICSE Computer Studies.Write algorithms for the followingQuestion 1To go for a class picnicAnswerStep 1: StartStep 2: Decide the picnic venue, date and timeStep 3: Decide the picnic activitiesStep 4: Hire a vehicle to reach to the venue and comebackStep 5: Goto to the picnic venue on the decided dateStep 6: Do the activities planned for the picnicStep 7: Come back to school in the hired vehicleStep 8: StopQuestion 2To StudiesWrite algorithms and draw flowcharts for the followingQuestion 1Accept the length of two different line segments and check whether they are equal or unequal. Display the message accordingly.AlgorithmStep 1: StartStep 2: Accept the length of the two line segments as l1 and l2.Step 3: If l1 and l2 are equal, then display 'Line Segments are equal'.Step 4: If l1 and l2 are not equal, then display 'Line Segments are not equal'.Step 5: StopFlowchartFlowchart to find the greater of two line segments. Class 8 ICSE Computer Studies.Question 2Accept the age of a person and check whether he/she is eligible to vote or not. A person is eligible to vote only when he/she is 18 years or more.AlgorithmStep 1: StartStep 2: Accept the age of the person.Step 3: If age is greater than or equal to 18, then display 'You are eligible to vote'.Step 4: If age is less than 18, then display 'You are not eligible to vote'.Step 5: StopFlowchartFlowchart to check if a person is eligible to vote. Class 8 ICSE Flowchart to check if three numbers form Pythagorean TRIPLETS. Class 8 ICSE Computer Studies.Question 2

6675.

Explain the application of computer​

Answer»

An APPLICATION, or application program, is a software program that runs on your computer. Web browsers, e-mail programs, word processors, games, and utilities are all APPLICATIONS. ... These programs include assemblers, compilers, file management tools, and the OPERATING system itself.

6676.

It is printed copy machine output in readable form such as reports listings documents or summaries​

Answer»

tion:A photocopier (also known as a copier or copy machine, and formerly a Xerox Machine) is a machine that makes copies of documents and other visual images onto paper or plastic film quickly and cheaply. Most modern photocopiers use a technology called xerography, a dry process that uses electrostatic charges on a light-sensitive photoreceptor to first attract and then transfer toner particles (a powder) onto paper in the form of an image. The toner is then fused onto the paper using heat, pressure, or a combination of both. COPIERS can also use other technologies, such as ink jet, but xerography is standard for office copying.A Xerox photocopier in 2010Commercial xerographic office photocopying was introduced by Xerox in 1959, and it gradually replaced copies made by Verifax, Photostat, carbon paper, mimeograph machines, and other duplicating machines.Photocopying is widely used in the business, education, and government sectors. While there have been predictions that photocopiers will eventually BECOME obsolete as information workers increase their use of digital document creation, storage and distribution, and rely less on distributing actual pieces of paper, as of 2015, photocopiers continue to be widely used. During the 1980s, a convergence began in some high-end machines towards what came to be called a multi-function printer: a device that combined the roles of a photocopier, a fax machine, a scanner, and a computer network-connected printer. Low-end machines that can copy and PRINT in color have INCREASINGLY dominated the home-office market as their prices fell steadily during the 1990s. High-end color photocopiers capable of handling heavy DUTY cycles and large-format printing remain a costly option

6677.

It is soft and easily bent magnetic disk used for storing programs and data​

Answer»

y disk Because they had them BACK then to USE them for STORING data and they were FLEXIBLE.

6678.

3. Stand Alone in Java means -To stand alone in the class-Applications that require a class.-Applications that require a browser​

Answer»

hajBjanajabajahhhahajanjakansnsnnAnHaBajjaja

6679.

Which is the correct syntax for the input() statement​

Answer»

The INPUT statement has two syntaxes. The FIRST syntax displays a prompt and assigns the input to variable. The SECOND syntax specifies the location of the input field on the screen and lets you DISPLAY the current value of variable. Both the current value and the displayed input can be formatted.

6680.

Describe the various generations of computer​

Answer» NOWADAYS, generation includes both HARDWARE and software, which together make up an entire COMPUTER system. There are five computer generations known till date. Each generation has been discussed in detail along with their time period and characteristics. ... The period of third generation: 1965-1971.Explanation:please Marks me brinliest ANSWER
6681.

It is a surface on which information is displayed​

Answer»

In a computer display , the screen is the PHYSICAL surface on which VISUAL information is presented. This surface is USUALLY made of GLASS.

6682.

Define feature texture??short answer plz​

Answer»

tion:Texture is a feature used to PARTITION images into regions of interest and to classify those regions. • Texture provides INFORMATION in the SPATIAL ARRANGEMENT of colours or intensities in an image. • Texture is characterized by the spatial distribution of intensity levels in a neighborhood.

6683.

It sorts and organizes data .. ​

Answer» ORGANIZER toolExplanation:PLS MARK as BRAINLIEST ☺❤☺
6684.

Which attribute of the tag gives a color to the background of the web page?​

Answer» SEE belowExplanation:will GIVE RED COLOUR TEXT
6685.

It is an input device used to programs and data into the computer storage​

Answer»

In computing, an INPUT DEVICE is a peripheral (piece of computer hardware equipment) used to provide data and control signals to an INFORMATION processing system such as a computer or other information appliance. Examples of input DEVICES include KEYBOARDS, mice, scanners, digital cameras and joysticks.

6686.

Plz ans plz plz plz plz ​

Answer» PROTOCOL + WEB is the ANSWER
6687.

It is an input device used to interpro grams and data into the computer storage​

Answer»

sir , or whoever u are PLEASE study text book or CW . u should not COPY in testExplanation:

6688.

When the Microsoft word 2016 was released?​

Answer» RELEASED on SEPTEMBER 22, 2015
6689.

it is a device or system capable of performing operations on data such as the central processing unit (CPU)​

Answer» CENTRAL processing UNIT. It CONSISTS of two parts: the arithmetic/logic unit or ALU(performs data manipulation) and the CONTROL unit or CU(coordinates the machine's activities). ... general purpose serve as temporary holding places for data being manipulated by the CPU.Explanation: May this help u
6690.

It is introducing data from an external storage medium into a computer internal storage unit​

Answer»

sir , or WHOEVER U are PLEASE study text book or cw . u should not copy in testExplanation:

6691.

1. A 3 m wide path runs outside and around a rectangular park of length 125 m and breadth 65 m. Find the area of the path.111:ont line comenta​

Answer»

hrdjirfjifgkiruooythjkp

6692.

CPU cannot perform all the calculation and operations of the system. 5.Value Based Question.your friend wants to purchase a new laptop. Suggest suitable hardware, input, output and storagedevices required.Group Discussion:There are new devices launched by various companies these days. Discuss in class about someexciting and useful input, output or storage devices that they came across.​

Answer»

I don't understandExplanation:kakjaha snisnsjsianwjwjsnnwjwjw SNS

6693.

A_____ is a separate viewing area on a computer display screen ​

Answer»

Window Explanation:A window is a separate VIEWING area on a computer display SCREEN in a system that allows MULTIPLE viewing AREAS as part of a graphical USER interface (GUI).

6694.

wordexcelpowerpoint​

Answer»

attachment.It will HELP

6695.

Draw the figure of ms team home page in practical file​

Answer»

sir , or whoever U are please study TEXT book or cw . u should not COPY in testExplanation:

6696.

_____ feature allows to fill a series of data automatically ​

Answer»

The Autofill features of excel ALLOWS you to fill a range of cell with series of DATA without TYPING all of it.

6697.

What do you understand by the given figure? Define the term​

Answer»

tion:the above picture tells US about today's HUMAN that how MUCH BURDEN of IDEAS is there on human being in today's world

6698.

VLSI circuit by using second generation computer true false​

Answer» HT ANSWER is FALSE
6699.

The ENIAC was the first general purpose digital computer true false​

Answer»

Electronic Numerical INTEGRATOR and Computer) was the first programmable, electronic, general-purpose DIGITAL computer. It was Turing-complete, and ABLE to solve "a large class of numerical PROBLEMS" through REPROGRAMMING.

6700.

1. Fill in the blanks: 1. Alphanumeric variables always end with a... sign.2.constants include only numbers.3. The maximum length of a variable is4constants are always enclosed in double quotes.5. Variables always begin with6. Comma is not allowed while writingconstants.​

Answer»

v66vhxurxikyx kktxittx7rxitc7tditxxictutx6rc7gszjfszryExplanation: v66vhxurxikyx kktxittx7rxitc7tditxxictutx6rc7gszjfszry v66vhxurxikyx kktxittx7rxitc7tditxxictutx6rc7gszjfszry v66vhxurxikyx kktxittx7rxitc7tditxxictutx6rc7gszjfszry v66vhxurxikyx kktxittx7rxitc7tditxxictutx6rc7gszjfszry v66vhxurxikyx kktxittx7rxitc7tditxxictutx6rc7gszjfszry