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.

What is the meaning of embankment?​

Answer»

ong>Answer:

A WALL of STONE or earth that is builtto STOP a RIVER from FLOODING or to carrya road or railway.

6652.

In operator_precedence parsing disjoint precedence we use relations. A. oneB. twoC. threeD.O four​

Answer»

ong>Answer: Mark it has Brainliest

Role of Operator Precedence Parser

Difficulty Level : Hard

Last Updated : 09 MAR, 2021

In this, we will cover the overview of Operator Precedence Parser and mainly focus on the role of Operator Precedence Parser. And will also cover the algorithm for the construction of the Precedence function and finally will discuss error recovery in operator precedence parsing. Let’s discuss it one by one.

Introduction :

Operator Precedence Parser constructed for operator precedence GRAMMAR.  Operator precedence grammar is a grammar that doesn’t contain epsilon productions and does not contain two adjacent non-terminals on R.H.S. of any production. Operator precedence grammar is provided with precedence rules. Operator Precedence grammar could be either ambiguous or unambiguous.

Operator Precedence Parser Algorithm :

1. If the front of input $ and top of stack both have $, it's done

 else

2. compare front of input b with ⋗

     if b! = '⋗'

        then push b

     scan the next input symbol

3. if b == '⋗'

      then pop till ⋖ and store it in a string S

      pop ⋖ also

      reduce the poped string

      if (top of stack) ⋖ (front of input)

           then push ⋖ S

      if (top of stack) ⋗ (front of input)

           then push S and goto 3  

Components Operator DIAGRAM :

Components Operator

Example –

Let’s take an example to understand the role of operator precedence as follows.

E-> E+T/T

T-> T*V/V

V->a/b/c/d

stri

6653.

Is used for drawing picture​

Answer»

????????????????????

6654.

3 reasons to consider when using the three structures ( sequence, selection, and loop)​

Answer» ONG>ANSWER:

SEQUENCE...

HOPE it HELPS you. Mark me as brainliest.

6655.

V) in paint brush we can draw line aslo. true or false​

Answer» ONG>ANSWER:

trueeeeeeeeeeeeeeeeeeeeeeeeee

6656.

Network medias used in the creation of a lan network ​

Answer»

ong>Answer:

CABLES are commonly used to CARRY COMMUNICATION signals within LAN. There are THREE common TYPES of cable media that can be used to connect devices to a network and they are coaxial cable, twisted-pair cable, and fiber-optic cable.

6657.

Click on _______ to see a sub-menu that contains all programs in windows.​

Answer» ONG>Answer:

CLICK on START to SEE a sub-menu....

6658.

Iv) We can select text by using mouse. true or false​

Answer» ONG>Answer:

TRUE mark me BRAIN LIST

Explanation:

true

6659.

The small arrow on the screen is called _________ .​

Answer»

ong>ANSWER:

CURSOR

Explanation:

on COMPUTER SCREEN

6660.

Close command is used to save a program.its true or false​

Answer»

ong>ANSWER:

FALSE, the SAVE command is used to save a PROGRAM.

6661.

Which was the first calculating device ? when and by whom was it developed​

Answer»

ong>Answer:

The first mechanical CALCULATING machine was invented in 1642 by Blaise Pascal, a 19-year-old Frenchman. Pascal's machine USED GEARS and could add and subtract. Pascal's gear system was widely used in mechanical calculators built during the next few hundred YEARS.

6662.

I) Excel is a word processor. true or false​

Answer»

ong>Answer:

YES its ABSOLUTELY TRUE

6663.

) Excel is a word processor​

Answer»

ong>Answer:

Microsoft Word is a word processing PROGRAM used for writing letters, MEMOS, reports and PAPER presentations. Microsoft Excel is a spreadsheet program used for calculations, making charts and recording data about all sorts of BUSINESS processes.

6664.

______ operating system is the most popular GUI​

Answer»

ong>EXPLANATION:

Windows operating SYSTEM is the most POPULAR one

6665.

5. You can send characters maximum as a message at twitter.(a) 100(b) 140(c) 120(d) 160​

Answer» ONG>Answer:

B 140

thus was ACTUALLY earlier. but now it should be 280.

hope it helps

pl mark Brainliest

6666.

What is first programmar ?​

Answer»

ong>ANSWER:

Lady ADA LOVELACE was the FIRST programmer

6667.

State whether true and false.i) We can draw anything in paint brush​

Answer»

ong>Answer:

False

Paint BRUSH is USED to colour the OBJECTS not to DRAW.

6668.

What is the control panel used for​

Answer»

ong>Answer:

The Control Panel is a component of Microsoft Windows that provides the ability to VIEW and change system settings. It consists of a SET of APPLETS that include adding or removing hardware and software, controlling user accounts, changing accessibility options, and ACCESSING networking settings

6669.

1) Create a Word Document and write all the steps to done with following instructions. a) Write any 5 sentences in 5 lines. b) Set the Page orientation Landscape – Page Style. c) Write a sentence and done some formatting (bold, verdana, 14 pt. size, underline) select this sentence and create a new style from a selection with name “hello”.​

Answer»

ong>Answer:

(i) Click on Indent Option of Paragraph group of Layout TAB. (ii) Set LEFT to 1.5 CM and Right to 1 cm by drop down list. B) (i) Click on Orientation option of Page Setup group of Layout Tab.

6670.

State True or False 13.A Web browser is a program used to locate and display web pages.14.The undo button can be found on the quick access toolbar.15.The vertical ruler is located at the top of the document window16.You can send an electronic message from one computer to another, which can include text, pictures, sounds etc.17.To create a new document click the File tab.18.You should give away your important personal information on the Internet without your parent’s permission.​

Answer» ONG>Answer:

13) TRUE

14)true

15)

16 true

6671.

Formats of writing variables ​

Answer»

ong>ANSWER:

The central idea is the main point or thought that you are trying to express. It may be one statement like a thesis statement or it may be a paragraph or two exploring an idea or theme. Forms The ability to shape and organize IDEAS REQUIRES CHOOSING a form that is APPROPRIATE to.

6672.

Input a string and find the number of space , words , characters​

Answer»

ong>Answer:

Hope this helps

Explanation:

import java.util.Scanner;

public class Exercise38 {

   

public static void MAIN(String[] args) {

 String test = "AA kiu, I swd skieo 236587. GH kiu: sieo?? 25.33";

 count(test);

}

public static void count(String X){

 char[] ch = x.toCharArray();

 INT letter = 0;

 int space = 0;

 int num = 0;

 int other = 0;

 for(int i = 0; i < x.length(); i++){

  if(Character.isLetter(ch[i])){

   letter ++ ;

  }

  else if(Character.isDigit(ch[i])){

   num ++ ;

  }

  else if(Character.isSpaceChar(ch[i])){

   space ++ ;

  }

  else{

   other ++;

  }

 }

 System.out.println("The string is : Aa kiu, I swd skieo 236587. GH kiu: sieo?? 25.33");

 System.out.println("letter: " + letter);

 System.out.println("space: " + space);

 System.out.println("number: " + num);

 System.out.println("other: " + other);

  }

}

6673.

35) The ability to run many programs at a time is called a) multiprogrammingb) multiprocessingc) multi-userd) multitasking​

Answer» ONG>ANSWER:

a is the CORRECT answer multiprograming

6674.

Fast memory of computer​

Answer»

In the late 1940S the first stored-program computers USED ULTRASONIC waves in tubes of MERCURY or CHARGES in special electron tubes as main memory. The latter were the first random-access memory (RAM).

6675.

Total number of participants 'P', 100

Answer» ONG>ANSWER:

answer is PART is

Explanation:

GROUP D

6676.

Language of the CPU ____ *AssemblyMachineLow level​

Answer» ONG>Answer:

SANSKRIT

Explanation:

They are is to EXPLAIN for cpu

6677.

Answer any six of the following questions : 1) Describe the term digital footprint? Explain?2) What is software piracy? Write any two measures to prevent it?3) Describe e-commerce?4) What are the advantages and disadvantages of e -learning?5) What is the difference between relational and assignment operator?6) Describe unary operators?7) What is variable? What are the rules followed for naming a variable?8) What is python ? explain?

Answer» ANSWER is in above ATTACHMENT it is SHOWING INCORRECT answer , so I SCREENSHOT this..
6678.

Name and explain any two numeric functions in exel​

Answer»

help you GET started, here are 5 important Excel functions you should learn today.

  • The SUM Function. The sum function is the most used function when it comes to COMPUTING data on Excel. ...
  • The TEXT Function. ...
  • The VLOOKUP Function. ...
  • The AVERAGE Function. ...
  • The CONCATENATE Function

6679.

Which is not the type of control structure is programming​

Answer» ONG>Answer:

ANS: Syntactical is not the type of CONTROL STRUCTURE

6680.

#include using namespace std;8329806618329802661832980 2int chArr[] = {91, 93, 95};cout

Answer» ONG>Answer:

4 bybytvutvutvutbugbugb

6681.

What is operator overloading? state the three steps involved in the process of overloading​

Answer»

ong>Answer:

In COMPUTER PROGRAMMING, operator overloading, sometimes termed operator ad HOC polymorphism, is a SPECIFIC case of polymorphism, where different OPERATORS have different implementations depending on their arguments. Operator overloading is generally defined by a programming language, a programmer, or both.

6682.

Write the algorithm and flow chart whether user input is palindrome or not?

Answer»

ong>Answer:

I have PINNED the flow chart image

Explanation:

HOPE it will HELP you PLS MARK me as brainliest

6683.

List the options available for text alignment *2 mark*​

Answer»

oalapsodkdospssossp

6684.

Page printer is also known as a page printer b thermal printer c line printer d injeket printer​

Answer»

ong>ANSWER:

d. Inkjet printer

Explanation:

DUE to the help of this printer we can print MANY pages at a TIME

6685.

1. The contents of element must be simple text and should not contain specialcommands such as hyperlinks.A. body B. head C. title D. html​

Answer»

ong>Explanation:

\huge\boxed{\fcolorbox{lime}{yellow}{⭐Answer☆☺⤵࿐}}

Leaving out the SOMEWHAT ridiculous and sometimes shameful religious slant towards this question, you would think that the purpose of humans is to find WAYS to work cooperatively to maintain the earth and its resources so that all of us have clean water and AIR, comfortable housing and clothing, adequate healthcare, and equal opportunities for work and education, and amenities such as transportation, communication, ENTERTAINMENT, and recreation. We should be able to do all this without polluting or spoiling the earth, which is, of COURSE, the mother of all of us.

6686.

22) Key can be used in combination with other keys to perform (a) alt (b) Control(c) Tab (d) Enter ​

Answer» ONG>ANSWER:

(a)

Hope this HELPS u ✨♡

6687.

J.On the basis of your reading of the passage answer any ten of the following questions:a) Mention two maior problemsthat the custom of school education is facing.​

Answer»

ong>Answer:

ijslnln. bsnsjajakka. .a.ajam anamm

Explanation:

nnw. s .s. a a.ananw W w ANA .w.w..

6688.

Write a program to print the Fibonacci series. ( Fibonacci series:- 0,1,1,2,3,5,8,13,21…….)plz answer me​

Answer»

Answer:

The given co‎de is written in Java.

import java.util.*;

public class Main   {

   public static VOID main(String args[])  {

       Scanner sc=new Scanner(System.in);

       INT a=1,b=0,c=0,n,i;

       System.out.print("ENTER limit: ");

       n=sc.nextInt();

       for(i=1;i<=n;i++)   {

           System.out.print(c+" ");

           c=a+b;

           a=b;

           b=c;

       }

       sc.close();

   }

}

Interesting facts about this series:

  • The FIBONACCI series is a series of numbers where each term in the sequence is equal to sum of previous two terms.
  • The first terms are 0 and 1. So, the next term will be 1.
  • Every 3rd term in this sequence is a multiple of 2.
  • Every 4th term is a multiple of 3.
  • Every 5th term is a multiple of 5 and so on.

Refer to the attachment for output.

•••♪

6689.

Be easy line tool to draw curved line.true or false​

Answer»

ong>Answer:

TRUE

Explanation:

this is true on according question

6690.

2. समाक्ष तार एव प्रकाशित तन्तु तार सआ अथवाAND संकारक क्या है?3. माइक्रो तथा मिनी कम्प्यूटर्स के बारे में आप क्या जानते हैंअथवाप्लॉटर्स के बारे में आप क्या जानते हैं? समझाइए।4. प्रोग्रामिंग भाषा के बारे में आप क्या जानते हैं?अथवालैत तथा वैन को समझाइए।​

Answer» ONG>Answer:

1

Explanation:

Be HAPPY for this MOMENT. This moment is your LIFE.

6691.

AND संकारक क्या है?​

Answer»

ong>Answer:

computer programming, operators are constructs defined WITHIN programming languages which behave generally like functions, but which differ syntactically or semantically. Common simple examples include ARITHMETIC, COMPARISON, and LOGICAL operation

6692.

Saves a lot of time and cost is a) Programming b) Automation c) Repetition. d) Accuracy​

Answer»

ong>ANSWER:

a) PROGRAMMING

EXPLANATION:

HOPE this answer helps you out thike

6693.

Question 4. [15]private Cab service company provides service within the city at the following rates:AC CARUPTO 5 KM150/-BEYOND SKM10/-PER KMDesign a class CabService with the following description:Member variables data membersNON AC CAR120 -08/- PER KMString car_typedouble kmTo store the type of car (AC or NON AC)To store the kilometer travelleddouble bill- To calculate and store the bill amountMember methodsCabService()- Default constructor to initialize data members.String data members to "" and double datamembers to 0.0.void acceptTo accept car_type and km (using Scanner classonly).void calculate ()To calculate the bill as per the rules given above.void displayTo display the bill as per the following formatCAR TYPE:KILOMETER TRAVELLED:TOTAL BILL:Create an object of the class in the main method and invoke the member methods.​

Answer» ONG>ANSWER:

do t KNOW if know I COULD answer

6694.

None A device that connects multiple networks networks using similar or different protocol is called *NICBridgeRouterAll​

Answer» ONG>ANSWER:

Gateway. Gateway is a network device used to CONNECT two or more dissimilar networks. In networking parlance, networks that use DIFFERENT protocols are dissimilar networks. A gateway usually is a computer with multiple NICs connected to different networks.

Explanation:

6695.

. Q3. In a certain population, which ishalf male and half female, thefraction that have graduate fromhigh school are 0.8 and 0.9, the fractions that are working are 0.6 and 0.5 ,and the fractions thatvoted in the last election are 0.4and 0.3 for the males and femalesrespectivity. Estimate the probabilitythat a person who is working, votedin last election, and not gradentefrom hight school is a male.Listany assumptions:​

Answer» ONG>Answer:

sorry but I don't UNDERSTAND UR question

Explanation:

I hope this answer will HELP you

6696.

In PowerDirector PC In motion tracking, the images to motion track are getting blurred(Not the main video), what is solution?

Answer» ONG>Explanation:

on tracking is an invaluable TOOL. Once upon a time, it was only useable by professional editors, but with the help of powerful software even casual users can simply and effectively increase the production quality of their VIDEOS. For those unsure on what exactly motion tracking is, it allows you to add effects to moving objects. This allows you to add specific effects to any object in your video; you could add blur effects to make objects more mysterious, cartoonish effects for a funny or SURREAL TOUCH and a whole range of other effects that allow you to completely transform your video.

6697.

Scanner resolution measured in *InchesResolutiondpiNone​

Answer»

ong>Answer:

plz share this VIDEO and plz make it 1k VIEWS. click THEABOVE image to VIEW the full image.plz friends

6698.

How does using a scale benefit a designer in his work drawings​

Answer» ONG>EXPLANATION:

ANSWER:

\huge{\textbf{\textsf{{\color{navy}{an}{\purple{sw}}{\pink{er}}{\color{pink}:)}}}}}

Explanation:

chhod NA

6699.

Give me the answer of those questions​

Answer» ONG>ANSWER:

I don't know‍♀

NH h dweep la BCHA i Y

6700.

Write a query to display student ID and number of course registered by students. Display student ID only if student has registered for a course. Give alias name for the count as NOOFCOURSES. Sort the result based on count in descendingand student ID ascending.​

Answer»

ong>Answer:

this should GIVE you the OUTPUT

EXPLANATION:

PLEASE MARK AS BRAINLIEST AND FOLLOW FOR MORE