InterviewSolution
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.
| 17701. |
Write the steps to draw the figure in Scratch programming language |
|
Answer» 1)MOVE a 10steps forward 2)take a 90degree rotation towards soith 3)move 10 STEPS forward 4)take a 90degree rotation towards right 5)move a 10 steps forward 6)STOP |
|
| 17702. |
Plz help me -How much is the cost of a good wifi and monthly price of 4mb/s in it.? |
| Answer» | |
| 17704. |
Draw the schematic circuit of an positive edge triggered JK Flip flop and explain its operation with thehelp of the truth table. How is the race around condition eliminated? |
| Answer» DRAW the SCHEMATIC circuit of an positive edge triggered jk flip flop and explain its operation with the help of the TRUTH table how it the RACE around your condition eliminated is yours RIGHT answer | |
| 17705. |
How scripting language is differ from programming language? |
|
Answer» A scripting or script language is a programming language that SUPPORTS scripts: programs written for a special runtime ENVIRONMENT that automate the execution of TASKS that COULD alternatively be executed one-by-one by a human operator. Scripting languages are often interpreted (rather than compiled). |
|
| 17706. |
How many binary trees are possible with n nodes with proof? |
|
Answer» I think total number of binary trees possible for n nodes is equal to Catalan number |
|
| 17707. |
Write a C program to print the given no. (Nested loop)...Will mark the best answer brainliest..I want each step...... |
|
Answer» #include int main() { int i, J, K; for(i=1;i<=5;i++) { for(j=i;j<5;j++) { printf(" "); } for(k=1;k<(i*2);k++) { printf("%d",k); } printf("\N"); } } |
|
| 17708. |
In details describe the ABACUS functions as far as evolution of computer is concerned |
|
Answer» ABACUS is a calculating tool. It was used in EUROPE for calculation. It is still in use in China and many other countries. The main purpose of its use now-a-days is to TEACH mathematical calculations in the simplest way to the children. It is ALSO known as a counting Frame. It is usually made up of a wooden frame having BARS in it. There are beads in these bars. Each bar usually have Ten beads in it. The use of Abacus SPREAD the awareness of Calculations. With the passage of time, the need of quicker and accurate calculation lead to the inventions of CALCULATOR and then the computer. The Abacus continued to evolve. It became a Sliding Rule. The Sliding Rule was the last mechanical calculating device. After that, we got the scientific calculator. The first computer by the Father of Computers Charles Babbage was also based on the concept of calculations. |
|
| 17709. |
Write a C program to print table of number 1 to 20? |
|
Answer» #include |
|
| 17710. |
Create website in notepad Code of create websiteDon't use net |
|
Answer» Answer: hey friend i think U WANT the answer on computer but most of them in brainly USES PHONES. i can't able to answer ur QUESTION |
|
| 17711. |
Create website in notepadCode of creat websiteDon't use net |
| Answer» | |
| 17712. |
Can you write a C program on the LCM of three numbers? |
|
Answer» So here's your c program to FIND LCM of three numbers. |
|
| 17713. |
Write a C program to calculate sum of two numbers? |
|
Answer» This is a SIMPLEST program for CALCULATE the sum of TWO numbers. |
|
| 17714. |
Write a program in Java to find the greatest of three numbers using ternary operator. |
|
Answer» public class JavaExample { public static void main(STRING[] args) { int num1, num2, num3, RESULT, temp; Scanner scanner = new Scanner(System.in); System.out.println("ENTER First NUMBER:"); num1 = scanner.nextInt(); System.out.println("Enter Second Number:"); num2 = scanner.nextInt(); System.out.println("Enter Third Number:"); num3 = scanner.nextInt(); scanner.close();
temp = num1>num2 ? num1:num2; result = num3>temp ? num3:temp; System.out.println("LARGEST Number is:"+result); } } |
|
| 17715. |
Explain the term word processor |
|
Answer» A WORD processor is a TYPE of software application used for composing, editing, formatting and PRINTING documents. Word processors have a variety of uses and APPLICATIONS WITHIN the business environment, at home and in educational contexts. |
|
| 17716. |
Write a program to find fibonacci series of n is lessthan or equal to 1000 numbers |
|
Answer» INCLUDE |
|
| 17717. |
Difference between desktop support engineer and network engineer |
|
Answer» Both TECHNICAL support specialists andnetwork engineers work with INDIVIDUALS or companies to troubleshoot problems and fix computer issues. However, technical supportspecialists work with both NETWORK and GENERAL computer USER issues, while network engineers specialize in the concept and creation of data networks |
|
| 17718. |
Write a c program to find the smallest element in the array of integers |
|
Answer» Hey mate your answer is |
|
| 17719. |
Describe time division multiple access and code division |
| Answer» TIME DIVISION mtiple ACCESS and | |
| 17720. |
Describe optical principle and its communication syatem |
|
Answer» An OPTICAL communication systemuses a transmitter, which encodes a message into an optical SIGNAL, a channel, which CARRIES the signal to ITSDESTINATION, and a receiver, which REPRODUCES the message from thereceived optical signal. |
|
| 17721. |
What are conditional statements and why are they used in a program? |
|
Answer» Conditional Statements : if, else, SWITCH. Conditional statements helps you to make decision BASED on certain CONDITIONS. These conditions arespecified by a set of conditional statements having booleanexpressions which are evaluated to aboolean value TRUE or false |
|
| 17722. |
Explain Switch statement by yourself |
|
Answer» [tex]The SWITCH STATEMENT is used when there is requirement to check multiple conditions in a program. It provides an easy way to branch to different parts of the code in a program based on the value of expression. It is a SUBSTITUTE of large series of if else if statements. This control structure has a switch statement, which stores an expression. The value of the switch statement is compared to the labels of all the cases. If the expression MATCHES, the statements associated with that cases GET excuted. |
|
| 17723. |
What do u mean the switch statement in Java |
|
Answer» Switch statement in java. Advertisements. A switch statementallows a VARIABLE to be tested for equality against a list of values. Each value is CALLED a CASE, and the variable being SWITCHED on is checked for each case. |
|
| 17724. |
Advantages of intrusion detection system in cryptography |
|
Answer» Intrusion detection SYSTEMS for computers provide comprehensive defense against identity theft, information mining, and network hacking. Big businesses and government agencies employ such software to keep information and accounts SAFE as well as monitor the network activities of employees to ensure on-site facilities are not being misused. But for all the ADVANTAGES, intrusion detection systems are hampered by an inability to tell malicious activity from accidental or LAWFUL activity and may lock down a network causing loss of WORK and revenue. |
|
| 17725. |
What is nested 'if' statement? |
|
Answer» The BLOCK of CODE FOLLOWING the elsestatement is executed as the CONDITION present in the if statement is false.NESTED-if. A nested if is an if statement that is the target of anotherif statement. Nested if statementsmeans an if statement inside anotherif statement. |
|
| 17726. |
Write the syntax of do loop? |
|
Answer» Notice that the conditional EXPRESSION appears at the END of the loop, so thestatement(s) in the loop executes once before the condition is TESTED. If the condition is true, the FLOW of control jumps back up to do, and thestatement(s) in the loop executes again. |
|
| 17727. |
What do you mean by spamming |
| Answer» SPAMMING is the use of electronic messaging systems like e-mails and other digital delivery systems and broadcast MEDIA to SEND UNWANTED bulk messages indiscriminately. The term spamming is also applied to other media like in internet forums, instant messaging, and mobile text messaging, SOCIAL networking spam, junk fax transmissions, television advertising and sharing network spam. | |
| 17728. |
What is memory? explain very long answers. |
|
Answer» HEY, here is your answer Memory is the faculty by which the mind stores and remembers INFORMATION, something remembered from the PAST. It can be your CHILDHOOD or for something such as wining a medal, going to foreign etc. It can be a person's memory also who is not there in the world, who loves you, such as your grandparents etc. Hope it HELPS you |
|
| 17729. |
Pivot table kya hota hai ????????? |
|
Answer» A pivot table is a program that allows you to recognise and SUMMARISE selected columns of ROWS of data in spreadsheet or in database table to OBTAIN or desire report a pivot table doesn't ACTUALLY change the spreadsheet or database itself. |
|
| 17730. |
What is www?its working |
|
Answer» WORLD wide web .. it is a site which help to CONNECT .. the world webs . |
|
| 17731. |
What are the difference between Laptop and Computer ? |
|
Answer» Laptop is a personal computer that can be easily moved and used in a variety of locations. Most laptops are designed to have all of the functionality of a desktop computer, which means they can generally run the same software and open the same types of files. However, laptops also tend to be more expensive than comparable desktop computers. |
|
| 17733. |
In a client-server application on the web using sockets, which must come up first? |
| Answer» SERVER comes FIRST in a client-server APPLICATION on the WEB using sockets | |
| 17734. |
What is Linux firewall? |
|
Answer» A firewall is a network security program that controls the incoming and outgoing connections BASED on the RULES that are set. LINUX has a DEFAULT firewall I.e iptables. Using iptables an administrator can set the rules of the firewall. |
|
| 17735. |
What is metasploit in Kali Linux? |
| Answer» METASPLOIT is one of the most widely USED PENETRATION testing framework used from corporate to law ENFORCEMENT agencies. Metasploit comprises of over 1500+ modules that deliver functionalities covering EVERY phase of a penetration test, making the life of a penetration tester comparatively easier. | |
| 17736. |
Write difference between object oriented programming and procedural programming |
|
Answer» Both are PROGRAMMING processes whereas OOP stands for “Object Oriented Programming” and POP stands for “Procedure Oriented Programming”. Both are programming languages that use high-level programming to solve a problem but using different APPROACHES. These approaches in technical terms are known as programming paradigms. A programmer can take different approaches to write a program because there’s no direct approach to solve a particular problem. This is where programming languages come to the picture. A program makes it EASY to resolve the problem using just the right approach or you can say ‘paradigm’. Object-oriented programming and procedure-oriented programming are TWO such paradigms. |
|
| 17737. |
Plz help me get the right answer to these ASAPWhich of the statements indicates that Chris is displaying unethical behavior?1)Chris always reaches office before time. 2)One morning while on her way to the meeting room, she overheard her supervisor complaining about her colleague to the concerned senior manager. 3)She waited outside the meeting room to hear the entire conversation. 4)During lunch, she discussed the same with her other colleagues. |
|
Answer» She WAITED OUTSIDE the MEETING ROOM to hear the entire conversation |
|
| 17738. |
Generate Hamming code for a 4-bit Excess-3 message to detect and correct single bit errors. |
| Answer» | |
| 17739. |
Design full adder using two half adders |
|
Answer» Half Adder and Full Adder Circuit. Anadder is a digital circuit that performs addition of NUMBERS. The half adderadds TWO BINARY digits called as augend and addend and produces twooutputs as sum and CARRY; XOR is applied to both inputs to produce sum and AND GATE is applied to both inputs to produce carry. |
|
| 17740. |
Draw the circuit diagram of J-K flip flop with NAND gates with positive edge triggering and explain its operation with the help of truth table. How race around condition is eliminated. |
|
Answer» Let a body of mass ‘m’ is moving with a velocity ‘v’.A force ‘F’ is applied on it to stop its motion for which the retardation ‘h’ is produce in the body and the body covers a DISTANCE ‘s’ before coming rest. |
|
| 17741. |
Design a full-adder with two half-adders and basic gates. |
| Answer» ADDERS are CLASSIFIED into two types:half adder and full adder. The half adder circuit has two inputs: A and B, which add two input DIGITS and GENERATE a carry and sum. The full adder circuit has three inputs: A and C, which add the three input numbers and generate a carry and sum. | |
| 17742. |
Brief about Finite State Machine |
|
Answer» A finite-state machine (FSM) or finite-state automaton (FSA, PLURAL: automata), finite automaton, or SIMPLY a state machine, is a mathematical model of computation. It is an abstract machine that can be in exactly one of a finite number of states at any given time. The FSM can change from one state to another in response to some external inputs; the change from one state to another is called a transition. An FSM is defined by a list of its states, its initial state, and the conditions for each transition. Finite state machines are of two types – deterministic finite state machines and non-deterministic finite state machines.[1] A deterministic finite-state machine can be constructed equivalent to any non-deterministic one. The behavior of state machines can be observed in many devices in modern society that perform a predetermined sequence of actions depending on a sequence of events with which they are presented. Simple examples are vending machines, which dispense products when the proper combination of coins is deposited, elevators, whose sequence of stops is determined by the floors requested by riders, traffic LIGHTS, which change sequence when cars are waiting, and combination locks, which require the input of combination numbers in the proper order. The finite state machine has less computational power than some other models of computation such as the Turing machine.[2] The computational power distinction means there are computational tasks that a Turing machine can do but a FSM cannot. This is because a FSM's memory is limited by the number of states it has. FSMs are studied in the more general field of automata theory. |
|
| 17743. |
What is Wesley and macleans model of communication |
|
Answer» ✔✔ HELLO mate ✔✔ here's your answer Westley and MacLean's MODEL of Communication. ... Unlike Dance's Helical Model of Communication, the model says that communication does not BEGIN when one person starts SPEAKING, but it does when a person responds to something from his/her surroundings. ¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤ ¤¤¤¤¤¤¤¤¤¤¤¤¤¤¤ Hope it helps you |
|
| 17744. |
The fit(X, y) is used to ________ |
|
Answer» Hey MATE here's your answer....They ALSO COME in the category of chromosomes...And they are commonly used in Maths to solve problems... |
|
| 17745. |
Write short notes on Gaussian random process. |
|
Answer» In probability and statistics, a random VARIABLE, random quantity, ALEATORY variable, or stochastic variable is a variable whose possible VALUES are OUTCOMES of a randomphenomenon. ... In the CASE of the coin, there are only two possible outcomes, namely heads or tails. |
|
| 17746. |
Write in detail about resistive noise source. |
|
Answer» Answer: |
|
| 17747. |
Define effective noise temperature. |
|
Answer» . Noise factor |
|
| 17748. |
Define a discrete random variable and discuss the characteristics of Poisson random variable using its probability density and distribution functions. |
|
Answer» In PROBABILITY and statistics, a RANDOM variable, random quantity, ALEATORY variable, or stochastic variable is a variable WHOSE possible values are outcomes of a randomphenomenon. ... In the case of the COIN, there are only two possible outcomes, namely heads or tails. |
|
| 17749. |
Define probability distribution function and write its properties. |
|
Answer» In PROBABILITY and statistics, a random variable, random quantity, aleatory variable, or stochastic variable is a variable whose possible VALUES are outcomes of a randomphenomenon. ... In the case of the COIN, there are only TWO possible outcomes, namely heads or tails. |
|
| 17750. |
Define moment generating function of a random variable X. |
|
Answer» Both are programming processes whereas OOP stands for “Object Oriented Programming” and POP stands for “Procedure Oriented Programming”. Both are programming languages that use high-level programming to SOLVE a problem but using different approaches. These approaches in technical terms are known as programming PARADIGMS. A programmer can take different approaches to write a program because there’s no direct approach to solve a particular problem. This is where programming languages COME to the picture. A program MAKES it easy to resolve the problem using just the RIGHT approach or you can say ‘paradigm’. Object-oriented programming and procedure-oriented programming are two such paradigms. |
|