-
Pavatharni . S wrote a new item 2 years, 6 months ago
it supports the feature of both low-level and high-level languages.
-
Pavatharni . S wrote a new item 2 years, 6 months ago
Simple and Efficient. The basic syntax style of implementing C language is very simple and easy to learn. … Fast. … Portability. … Extensibility. … Function-Rich Libraries. … Dynamic Memory […]
-
Pavatharni . S started the topic How you can connect with cloud service on word 2013? … in the forum Microsoft Word 2 years, 6 months ago
Tap File > Open > Add a Place.
Tap a service from the list that appears. -
Pavatharni . S started the topic How you can connect with cloud service on word 2013? … in the forum Microsoft Word 2 years, 6 months ago
Tap File > Open > Add a Place.
Tap a service from the list that appears. -
Pavatharni . S started the topic How to edit PDF document in 2013? … in the forum Microsoft Word 2 years, 6 months ago
Select the File tab. …
Backstage view will appear. …
Locate and open the PDF file you want to edit. …
A dialog box will appear confirming whether you want to convert the PDF file into a Word document. …
If the PDF file has content that Word is unable to convert, another dialog box may appear. -
Pavatharni . S wrote a new item 2 years, 6 months ago
audience members can see a presentation on their devices and read live subtitles in their preferred language while you speak
-
Pavatharni . S wrote a new item 2 years, 6 months ago
Transitions provide a dynamic way to move from one slide to the next during a slide show.
-
Pavatharni . S wrote a new item 2 years, 6 months ago
a person or thing that occupies the position or place of another person or thing.
-
Pavatharni . S started the topic What is the shortcut keys for creating hyperlink in the forum Microsoft Word 2 years, 6 months ago
Press Ctrl+K to open the Insert Hyperlink dialog box.
-
Pavatharni . S started the topic How to add foot-node & end note in word? in the forum Microsoft Word 2 years, 6 months ago
Click where you want to add the footnote. Click Insert > Insert Footnote. Word inserts a reference mark in the text and adds the footnote mark at the bottom of the page. Type the footnote text.
-
Pavatharni . S started the topic How you can insert video in Microsoft Word? … in the forum Microsoft Word 2 years, 6 months ago
Click Insert > Online Video. In the Insert Video window, you can search for videos on YouTube or insert a video’s embed code. (You get the embed code from the page where the video lives.) When you find the video you want, just click Insert.
-
Pavatharni . S started the topic What's the value of the expression 5["abxdef"]? … in the forum C Programming 2 years, 6 months ago
What’s the value of the expression 5[“abxdef”]? The correct answer is ‘f’. Explanation: The string “abxdef” refers to an array, and the expression equals “abxdef”[5].
-
Pavatharni . S started the topic What is a built-in function in C? . in the forum C Programming 2 years, 6 months ago
Built-in functions are ones for which the compiler generates inline code at compile time. Every call to a built-in function eliminates a runtime call to the function having the same name in the dynamic library.
-
Pavatharni . S started the topic What is a token? in the forum C Programming 2 years, 6 months ago
One can define tokens in C as the smallest individual elements in a program that is meaningful to the functioning of a compiler. A token is the smallest unit used in a C program. Each and every punctuation and word that you come across in a C program is token.
-
Pavatharni . S started the topic What is the use of printf() and scanf() functions? in the forum C Programming 2 years, 6 months ago
The printf() and scanf() functions are used for input and output in C language. Both functions are inbuilt library functions, defined in stdio. h (header file).
-
Pavatharni . S wrote a new item 2 years, 6 months ago
int(input(“Number of Elements to take average of: “)) l=[] for i in range(1,n+1): element = int(input(“Enter the element: “)) l.append(element) average = sum(l)/n print(“Average of the elements in […]
-
Pavatharni . S wrote a new item 2 years, 6 months ago
global_var = 0 def modify_global_var(): global global_var # Setting global_var as a global variable global_var = 10 def printing_global_var(): print(global_var) # There is no need to decla […]
-
Pavatharni . S wrote a new item 2 years, 6 months ago
import numpy #method 1 array_1 = numpy.array([]) print(array_1) #method 2 array_2 = numpy.empty(shape=(3,3)) print(array_2)
-
Pavatharni . S wrote a new item 2 years, 6 months ago
public class PrintFibonacci { public static void printFibonacciSequence(int count) { int a = 0; int b = 1; int c = 1; for (int i = 1; i
-
Pavatharni . S wrote a new item 2 years, 6 months ago
import java.util.Scanner; class Prime { public static void main(String[] args) { Scanner sc= new Scanner(System.in); System.out.println(“Enter a number to check if it is truly prime number or not: “); int […]
- Load More
