Saved Bookmarks
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.
| 351. |
Computer chapters 3 answers the following questions show me the answer |
| Answer» | |
| 352. |
Write a python program to perform linear search using list |
| Answer» | |
| 353. |
Write a python script to display the message python is interesting |
| Answer» | |
| 354. |
Convert 145 decimal number to binary |
|
Answer» 10010001 10010001 |
|
| 355. |
Short notes on pyhton |
| Answer» Python is a high-level, interpreted, interactive and object-oriented scripting language. Python is designed to be highly readable. It uses English keywords frequently where as other languages use punctuation, and it has fewer syntactical constructions than other languages. | |
| 356. |
Draw a flowchart to find the area of the circle |
| Answer» Start. input:radius. calculate area=3.14*radius*radius display =area end | |
| 357. |
How to solve the virus in the computer system |
| Answer» | |
| 358. |
Working of a database |
| Answer» | |
| 359. |
What is variable |
| Answer» Which is not constant .its value always vary | |
| 360. |
Write the data type of following literals.(I)123(II)True |
| Answer» I) int II) boolean | |
| 361. |
List some of the cloud based services that you are using at present |
| Answer» | |
| 362. |
The number 2010 = ?2 |
| Answer» | |
| 363. |
What can be done to overcome the problem of volatility in computer? |
| Answer» | |
| 364. |
What iss binary number |
| Answer» Binary Number System: According to digital electronics and mathematics, a binary number is defined as a number that is expressed in the binary system or base 2 numeral system. It describes numeric values by two separate symbols; 1 (one) and 0 (zero). The base-2 system is the positional notation with 2 as a radix. | |
| 365. |
Write a program to find the sum of first 10 even numbers? |
Answer» public class MyClass { public static void main(String args[]) { int total = 0, sum = 0, evenNumber = 2, n = 10; while(total != n){ total++; sum += evenNumber; evenNumber += 2; } System.out.println("Sum Of First 10 Even Number : " + sum); }} public class MyClass { public static void main(String args[]) { int total = 0, sum = 0, evenNumber = 2, n = 10; while(total != n){ total++; sum += evenNumber; evenNumber += 2; } System.out.println("Sum Of First 10 Even Number : " + sum); }} |
|
| 366. |
Which of the following is not a binary number ? 1111,101,11E,000 |
|
Answer» 11E 11E |
|
| 367. |
What will be the output of the following Python code:Str=”INDIA”print(Str *3) |
|
Answer» INDIAINDIAINDIA will be the answe INDIA INDIA INDIA Hi |
|
| 368. |
Definition of string |
|
Answer» Yes String is a continues sequence of characters stored in memory. Strings are immutable. |
|
| 369. |
What is the output when following code is executed?>>>str="kendriya">>>str[::-1] |
| Answer» \'ayirdnek\' | |
| 370. |
Whai is a list |
| Answer» List is a comma seprated value | |
| 371. |
What is phython |
|
Answer» Python is a popular programming language . It is used for web development, software development, scientific application. Python is a programming language |
|
| 372. |
Write a python program to,Take two input and swap them. |
| Answer» a=input()b=input()a,b=b,a | |
| 373. |
What is Principle of Duality |
| Answer» Duality, in mathematics, principle whereby one true statement can be obtained from another by merely interchanging two words. It is a property belonging to the branch of algebra known as lattice theory, which is involved with the concepts of order and structure common to different mathematical systems. | |
| 374. |
What is the length of string "inform" |
|
Answer» Thanks? Len(str) Len(string name) |
|
| 375. |
WAP to find no. of vouvles |
| Answer» | |
| 376. |
D/F interpreter and compiler |
| Answer» Interpreter translates just one statement of the program at a time into machine code. Compiler scans the entire program and translates the whole of it into machine code at once. An interpreter takes very less time to analyze the source code. ... A compiler takes a lot of time to analyze the source code. | |
| 377. |
Why are runtime errors called exceptions? Give any two examples of exceptions |
| Answer» Runtime errors\xa0are also\xa0called exceptions\xa0because they usually indicate that something exceptional (and bad) has happened.Ex - Dividing by 0 | |
| 378. |
Please tell me source code for swapping number |
| Answer» int main() { int x, y; printf("Enter Value of x "); scanf("%d", &x); printf("\\nEnter Value of y "); scanf("%d", &y); swap(&x, &y); printf("\\nAfter Swapping: x = %d, y = %d", x, y); return 0; } | |
| 379. |
1 0 1 1 0+1 1 0 1 1 |
|
Answer» 110001 1100011 110001 |
|
| 380. |
What is dictionary?It is mutable or non mutable |
|
Answer» They are mutable Keys are immutable but values are mutable Thank you so much @aditi.bains Dictionary are mutable unordered collection with elements in the form of a key ,value pairs that associated keys to values Mutable |
|
| 381. |
Python project for book store management system |
|
Answer» Here you will get your answer with explanation ? https://itsourcecode.com/free-projects/python-projects/book-store-management-system-python-project-with-source-code/ |
|
| 382. |
Describe phyton fundamentals chaptr |
| Answer» In this chapter u are going to deal with basic components of python programming like what are characters , operators , keyword, and u will also learn to do badic program Please take help from any good book. | |
| 383. |
Python program to find sum of the series:1-x+x^2-x^3+x^4-.......x^n |
| Answer» Use solo learn app for answer | |
| 384. |
Convert 44.125 into its binary equivalent |
| Answer» give me answer | |
| 385. |
Output and input |
| Answer» Input- By using the input function only string input . The value into input function cache into a variable. The input function will take a string argument which is to be displayed in front of the value input by a user\'s. Output- by using input function give output . Output can be in form of message or in a variable .It is also term as print function. | |
| 386. |
What is the difference between (30) and(30,) |
|
Answer» 30 is simple integer valueBut 30, is tuple data type What a wonderful question ⁉️❓ |
|
| 387. |
Hardware is of no use without software and software cannot be used without hardware, explain |
| Answer» | |
| 388. |
What is। Tuple , dictionary, list |
| Answer» List and Tuple objects are sequences. A dictionary is a hash table of key-value pairs. List and tuple is an ordered collection of items.List and dictionary objects are mutable i.e. it is possible to add new item or delete and item from it. Tuple is an immutable object. | |
| 389. |
Write a program to create a user defined string |
| Answer» | |
| 390. |
String as a sequence of characters |
| Answer» | |
| 391. |
Case Study On Any topic in Society law And Ethics.. |
| Answer» | |
| 392. |
Print "16*2" |
|
Answer» 32 The answer will be 16*2 32 The answer will be 16*2 |
|
| 393. |
What is difference between nor gate and not gate |
| Answer» The\xa0NOR gate\xa0is a combination OR gate followed by an inverter. Its output is "true" if both inputs are "false." Otherwise, the output is "false."A logical inverter, sometimes called a NOT gate to differentiate it from other types of electronic inverter devices, has only one input. It reverses the logic state. If the input is 1, then the output is 0. If the input is 0, then the output is 1. | |
| 394. |
What do you mean by Augmented Assignment operators? |
| Answer» Augmented assignment\xa0is the combination, in a single statement, of a binary operation and an\xa0assignment\xa0statement. ...e.g. a += 1\xa0means\xa0a is assigned a+1.\xa0They are\xa0useful because\xa0they\xa0reduce the length of the code and make it look cleaner. | |
| 395. |
Checking if a student is pass or fail (50% passing criteria) python coding |
| Answer» | |
| 396. |
Convert (0.2)10 in a binary form |
|
Answer» (0.0011)2 (repetition starts, so stop)(0.2)10\xa0= (0.0011)2\xa0 |
|
| 397. |
Computer ka portionKitna delte hua hai?? |
| Answer» | |
| 398. |
Write a program to check whether the number is a palindrome or not |
|
Answer» number = int(input("Please Enter any Number: "))reverse = 0temp = numberwhile(temp > 0): Reminder = temp % 10 reverse = (reverse * 10) + Reminder temp = temp //10 print("Reverse of a Given number is = %d" %reverse)if(number == reverse): print("%d is a Palindrome Number" %number)else: print("%d is not a Palindrome Number" %number) a = input("enter your word:")n = len(a)b = (0,a,-1)If a==b: print("your word is palindrome")else: print("your word is not a palindrome ") |
|
| 399. |
Write a program in Python to input the values for a and b by the user . Find and display the a/b |
| Answer» a = int(input("enter a number :"))b = int(input(\'enter a number \':))c = a/bprint(a,"/",b,"=",c) | |
| 400. |
Write a program that reads user (1)an hour between 1 to 12 |
| Answer» | |