1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Brums [2.3K]
3 years ago
15

Why does it still say I am ambitious whenever I have the 5 brainliest and almost 700 points?

Computers and Technology
2 answers:
Galina-37 [17]3 years ago
8 0
Check below your score it should say something out of 5 you need to get more to get 5/5
PSYCHO15rus [73]3 years ago
6 0
Because brainliest answers expire after 30days so you can lose your rank 
You might be interested in
Design a kernel module that iterates through all task in the system using the for_each_process() macro. In particular, output th
aleksley [76]

Answer:

#include <linux/kernel.h>

#include <linux/module.h>

#include <linux/init.h>

#include <linux/sched/signal.h>

#include <linux/sched.h>

 

 

struct task_struct *task;        /*    Structure defined in sched.h for tasks/processes    */

struct task_struct *task_child;        /*    Structure needed to iterate through task children    */

struct list_head *list;            /*    Structure needed to iterate through the list in each task->children struct    */

 

int iterate_init(void)                    /*    Init Module    */

{

   printk(KERN_INFO "%s","LOADING MODULE\n");    /*    good practice to log when loading/removing modules    */

     

   for_each_process( task ){            /*    for_each_process() MACRO for iterating through each task in the os located in linux\sched\signal.h    */

       printk(KERN_INFO "\nPARENT PID: %d PROCESS: %s STATE: %ld",task->pid, task->comm, task->state);/*    log parent id/executable name/state    */

       list_for_each(list, &task->children){                        /*    list_for_each MACRO to iterate through task->children    */

 

           task_child = list_entry( list, struct task_struct, sibling );    /*    using list_entry to declare all vars in task_child struct    */

     

           printk(KERN_INFO "\nCHILD OF %s[%d] PID: %d PROCESS: %s STATE: %ld",task->comm, task->pid, /*    log child of and child pid/name/state    */

               task_child->pid, task_child->comm, task_child->state);

       }

       printk("-----------------------------------------------------");    /*for aesthetics*/

   }    

     

 

   return 0;

 

}                /*    End of Init Module    */

     

void cleanup_exit(void)        /*    Exit Module    */

{

 

 

   printk(KERN_INFO "%s","REMOVING MODULE\n");

 

}                /*    End of Exit Module    */

 

module_init(iterate_init);    /*    Load Module MACRO    */

module_exit(cleanup_exit);    /*    Remove Module MACRO    */

 

MODULE_LICENSE("GPL");

MODULE_DESCRIPTION("ITERAT

5 0
3 years ago
Write a class named Add that has the following data members, constructor, and methods:
taurus [48]

Answer:

A class is like a blueprint of object.

Explanation:

A class defines the kinds of data and the functionality their objects will have.

A class enables you to create your own custom types by grouping together variables of other types, methods and events.

In C#, we can create a class  using the class keyword.

Here's a sample program:

using System;

namespace ConsoleApplication

{

   public class Test

   {

       public static void Main()

       {

           Add a1 = new Add(70, 50);

           a1.AddNumbers();                    

           Console.ReadLine();

       }      

   }

     class Add

   {

       private int row;

       private int column;

       public Add(int r, int c)

       {

           row = r;

           column = c;

       }

       public void AddNumbers()

       {

           Console.WriteLine(row+column);

       }

   }

}

output: 120

Explanation of the program:

I have created a class named Add. Within a class, row and column are two fields and AddNumbers() is a method. We also have constructor to initialize row and column.

In main method, If I need to invoke members of the class, I must create  an instance of the class. We can create any number of instances using the single class.IN our program, a1 is the reference variable using which we can invoke members of the class. I invoked function in the class and passed arguments to the constructor while creating an instance.

Those values are assigned to method variables and it operated the addition. Thus the output is 120.

7 0
3 years ago
To easily add an organizational chart to a document, users should select .
stepladder [879]

The answer is SmartArt.  One can easily add an organizational Chart to a document by using Smart Art.  It is a graphical tool to easily make an easy visual representation, to make organizational types of artwork such as Organizational Chart,  SmartArt is a tool to turn ordinary text into something more visually appealing, drawing attention to important information or making information easier to interpret and understand.

3 0
3 years ago
make 2 dimensional arryas, ask for the rows and columns, then enter the values and then multiply both arrays.
Gemiola [76]

Answer:

The program of this question can be given as:

Program:

#include <iostream>      //header file.

using namespace std;

int main()         //define main method.

{

   int First_matrix[10][10], Second_matrix[10][10], multiplication[10][10], rows, columns, i, j, k;  //define variable.

   cout<<"Enter the rows of matrix:";        

   cin>>rows;              //insert rows.

   cout<<"Enter the columns of matrix:";  

   cin>>columns;                        //insert columns

   cout<<"Enter elements of first matrix:"<< endl;     //inserting elements of second matrix

   for(i = 0; i < rows; i++)

   {

       for(j = 0; j < columns; j++)

       {

           cin >> First_matrix[i][j];

       }

   }

   cout<< "Enter elements of second matrix:"<< endl;          //inserting elements of second matrix

   for(i = 0; i < rows; i++)

   {

       for(j = 0; j < columns; j++)

       {

           cin >> Second_matrix[i][j];

       }

   }

   // multiplication of matrix.

   for(i = 0; i < rows; i++)

   {

       for(j = 0; j < columns; j++)

       {

           multiplication[i][j]=0;

           for(k = 0; k < columns; k++)

           {

               multiplication[i][j] =multiplication[i][j] +First_matrix[i][k] * Second_matrix[k][j];

           }

       }

   }

   // Displaying matrix.

   cout<< "First Matrix: " << endl;

   for(i = 0; i < rows; i++)

   {

   for(j = 0; j < columns; j++)

   {

       cout<<" "<<First_matrix[i][j];

   }

   cout<<endl;

   }

   cout<< "Second Matrix: "<<endl;

   for(i = 0; i < rows; i++)

   {

   for(j = 0; j < columns; j++)

   {

       cout<<" "<<Second_matrix[i][j];

   }

   cout<<endl;

   }

   //Displaying multiplication of matrix.

   cout << endl << "multiplication of Matrix: " << endl;

   for(i = 0; i < rows; i++)

   {

   for(j = 0; j < columns; j++)

   {

       cout<<" "<<multiplication[i][j];

   }

   cout<<endl;

   }

   return 0;

}

Output:

Enter the rows of matrix: 2

Enter the columns of matrix:2  

Enter elements of first matrix: 1

2

4

3

Enter elements of  second matrix:5

4

3

1

First Matrix:

1  2

4  3

Second Matrix:

5  4

3  1

multiplication of Matrix:

11  6

29  19

Explanation:

In the above matrix (2-dimensional array) program firstly we insert the rows and columns for creating a user-defined matrix. Then we insert the first matrix by using a loop. In this loop, we used row and column that is inserted by the user. Similarly, we insert the second matrix. then we multiply the matrix. In the multiplication, we define 3 loop that is (i,j,k). first loop(i) work on the rows and the second and third loop(j,k) work on the columns. In the last first we print matrix (first, second). Then we print there multiplication.

6 0
3 years ago
What are must have softwares/apps/ in your :-<br>1)PC<br>2)Phone<br>3)Websites
Alexxx [7]
Phone is the answer dude
3 0
4 years ago
Read 2 more answers
Other questions:
  • You are building a predictive solution based on web server log data. The data is collected in a comma-separated values (CSV) for
    7·1 answer
  • Implement function translate() that provides a rudimentary translation service. The function input is a dictionary mapping words
    9·1 answer
  • Task:create a struct that looks like:typedef struct person{ int age; double height;} Person;Create an array of Persons. Read dat
    13·1 answer
  • Which kind of file would be hurt most by lossy compression algorithm
    8·2 answers
  • What is the easiest way to beat all of the fnaf games without getting killed and beating all of the nights?
    8·2 answers
  • a) Write out an abstract class to represent a ball. Include data fields to store the weight of the ball as a double value and th
    6·2 answers
  • Which of these terms is a design principle?
    7·1 answer
  • Select the correct answer.
    10·1 answer
  • output device is any peripheral to provide data and control signal to ab information processing system​
    7·1 answer
  • Ok I'm sorry to all those who are trying to messasge me on brainly my brainly inbox is not working and hasn't work since the beg
    12·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!