

InterviewSolution
Saved Bookmarks
This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your Class 11 knowledge and support exam preparation. Choose a topic below to get started.
651. |
Program to display function add,sub,mul |
Answer» | |
652. |
Output unit |
Answer» | |
653. |
What is a bit? |
Answer» | |
654. |
What is a bit |
Answer» A bit (short for binary digit) is the smallest unit of data in a computer. A bit has a single binary value, either 0 or 1. Although computers usually provide instructions that can test and manipulate bits, they generally are designed to store data and execute instructions in bit multiples called bytes. | |
655. |
What is float constant |
Answer» | |
656. |
What is alternative for void main and int main |
Answer» | |
657. |
WAP To read a no n and print n2,n3 and n4,. By dynamic methodPlz answer this question fast... |
Answer» | |
658. |
Explain the functional components of a computer |
Answer» 1.Input Unit2.Output Unit3.Storage Unit4.Central Processing Unit (CPU)5.Arithmetic and Logic Unit (ALU)6.Control Unit | |
659. |
What is operarators |
Answer» | |
660. |
What is operating systems |
Answer» | |
661. |
How to start programming |
Answer» | |
662. |
What is the difference between ++a and a++ ? |
Answer» | |
663. |
Why is this not validres!>20||!x>20 |
Answer» | |
664. |
want h proper notes chapter wise |
Answer» | |
665. |
A c++ program to print Armstrong Numbers form 1 to 1000. |
Answer» | |
666. |
How many strings are there in str (type)"_1/\'splaceu" |
Answer» | |
667. |
How to write a program in c++ using exit loop |
Answer» | |
668. |
Who founded c++ |
Answer» Bjarne stroustrup<br>CHECK<br>IM NOT MUCH SURE AND CONFIRM IN MY ANSWER CHECK IN INTERNET<hr />\xa0<br>BJARNE STROUSTRUP .IM SURE<br>Dennis Ritchie | |
669. |
What is the difference between while loop and do-while loop? |
Answer» While loop is an entry control loop ..while ...do while is an exit control loop<br>Ans.\xa0The\xa0difference\xa0is in when the condition gets evaluated.In a\xa0do-while loop, the condition is not evaluated\xa0until\xa0the end of each\xa0loop. That means that a\xa0do- while loop\xa0will always run at least once.In a\xa0while loop, the condition is evaluated at the start. So while loop will run only when condition is true. | |
670. |
How to make a module for loan in a banking software project? |
Answer» | |
671. |
WRITE A PROGRAM TO PRINT TRIANGLE BY FOR LOOP\xa0\xa0 |
Answer» | |
672. |
Write a program in C++ to get factorial of a no using do while loop. |
Answer» #include<iostream.h>void main(){ int a, fact=1;cout<<"enter a number";cin>>a;while(a>0){f=f*a;a--;}cout<<"factorial of "<<a<<" is"<<f;}}\xa0 | |
673. |
what function of operating system plays to manage memory ?\xa0\xa0 |
Answer» | |
674. |
what is diffrence between i++ and ++i ? |
Answer» i++ is known as postfix. add 1 to i, returns the old value.++i\xa0is known as prefix. add 1 to i, returns the new value. | |
675. |
C++ program to input an array and print the largest even and largest odd in the array. |
Answer» | |
676. |
what is echo printing |
Answer» | |
677. |
What is petty typing\xa0 |
Answer» | |
678. |
What is supercomputer? |
Answer» A\xa0supercomputer\xa0is a computer that handles very large databases or does a great amount of computation, which is generally needed for scientific and engineering applications.<br>A supercomputer is a computer that performs at or near the currently highest operational rate for computers. Traditionally, supercomputers have been used for scientific and engineering applications that must handle very large databases or do a great amount of computation (or both).\xa0Although advances like\xa0multi-core processors and GPGPUs (general-purpose graphics processing units)\xa0have enabled powerful machines\xa0for personal use (see: desktop supercomputer, GPU supercomputer),\xa0by definition, a supercomputer is exceptional in terms of performance. | |
679. |
what is the difference in if and ? in c++ |
Answer» | |
680. |
What are the method use in swing for getting and setting a text |
Answer» | |
681. |
Give difference between compiler and interpreter |
Answer» \tS.No.CompilerInterpreter1.Compiler scans the whole program in one go.Translates program one statement at a time.2.As it scans the code in one go, the errors (if any) are shown at the end together.Considering it scans code one line at a time, errors are shown line by line.3.Main advantage of compilers is it’s execution time.Due to interpreters being slow in executing the object code, it is preferred less.4.It converts the source code into object code.It does not convert source code into object code instead it scans it line by line5It does not require source code for later execution.It requires source code for later execution.Eg.C, C++, C# etc.Python, Ruby, Perl, SNOBOL, MATLAB, etc.\t | |
682. |
Define GIGO? |
Answer» | |
683. |
Explain some domain specific software. |
Answer» A Domain-Specific Software Architecture (DSSA) has been defined as:• "an assemblage of software components, specialized for a particular type of task (domain), generalized for effective use across that domain, composed in a standardized structure (topology) effective for building successful applications" [Hay94] | |
684. |
Why getch()is used |
Answer» | |
685. |
Different between RAM and ROM |
Answer» | |
686. |
Write a program to represent a graphical rainbow |
Answer» | |
687. |
What is paging and segmentation |
Answer» Paging\xa0is used to get a large linear address space without having to buy more physical memory.\xa0Segmentation\xa0allows programs and data to be broken up into logically independent address spaces and to aid sharing and protection. | |
688. |
Write a program to check a input no is prime or not |
Answer» | |
689. |
What is syntax of nested if |
Answer» | |
690. |
Can u please give me computer solitions |
Answer» | |
691. |
what main integer types are offered by c++ |
Answer» Char, short, int, long. | |
692. |
What is the shortcut of ctrl +B |
Answer» | |
693. |
What do you mean by data types C++ |
Answer» | |
694. |
Find the series of 1/1+1/2+1/3+..1/n |
Answer» | |
695. |
1/1+1/2+1/3+...+1/n |
Answer» | |
696. |
Full from of ALGOL and COBOL |
Answer» | |
697. |
A program to check whether a no is a palindrome or not |
Answer» | |
698. |
What do you mean by integral constant |
Answer» Integral constants are those which include only integer values and not included decimal values.. | |
699. |
Last year question papers.fo half yearly |
Answer» | |
700. |
Write a short program to find whether the given character is digit or letter . |
Answer» Gi | |